Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Sports
Overview
Max Total Supply
1,000,000,000 MOOV
Holders
1,289 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (-8.29%)
Onchain Market Cap
$1,985,130.00
Circulating Supply Market Cap
$1,987,583.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
194,176.828962609974880456 MOOVValue
$385.47 ( ~0.10460714405174 Eth) [0.0194%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Dotmoovs
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-09 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/[email protected]/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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); } } // File: @openzeppelin/[email protected]/utils/Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @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); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.20; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_update}. * * Requirements: * * - the contract must not be paused. */ function _update(address from, address to, uint256 value) internal virtual override whenNotPaused { super._update(from, to, value); } } // File: moov.sol pragma solidity ^0.8.17; contract Dotmoovs is ERC20, ERC20Burnable, Ownable { uint256 public MAX_TOTAL_MINT = 1300000000 * 10 ** decimals(); uint256 public totalMinted; constructor() ERC20("dotmoovs", "MOOV") Ownable(msg.sender) { uint256 initialMint = 1000000000 * 10 ** decimals(); totalMinted = initialMint; _mint(msg.sender, initialMint); } function mint(address to, uint256 amount) public onlyOwner { require(totalMinted + amount <= MAX_TOTAL_MINT, "Mint limit exceeded"); totalMinted += amount; _mint(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"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":[],"name":"MAX_TOTAL_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
608060405261001261019460201b60201c565b600a61001e919061066e565b634d7c6d0061002d91906106b8565b60065534801561003b575f80fd5b50336040518060400160405280600881526020017f646f746d6f6f76730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4f560000000000000000000000000000000000000000000000000000000081525081600390816100b8919061092a565b5080600490816100c8919061092a565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361013b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101329190610a38565b60405180910390fd5b61014a8161019c60201b60201c565b505f61015a61019460201b60201c565b600a610166919061066e565b633b9aca0061017591906106b8565b90508060078190555061018e338261025f60201b60201c565b50610ae1565b5f6012905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102cf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102c69190610a38565b60405180910390fd5b6102e05f83836102e460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610334578060025f8282546103289190610a51565b92505081905550610402565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103bd578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103b493929190610a93565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610449578060025f8282540392505081905550610493565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104f09190610ac8565b60405180910390a3505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561057f5780860481111561055b5761055a6104fd565b5b600185161561056a5780820291505b80810290506105788561052a565b945061053f565b94509492505050565b5f826105975760019050610652565b816105a4575f9050610652565b81600181146105ba57600281146105c4576105f3565b6001915050610652565b60ff8411156105d6576105d56104fd565b5b8360020a9150848211156105ed576105ec6104fd565b5b50610652565b5060208310610133831016604e8410600b84101617156106285782820a905083811115610623576106226104fd565b5b610652565b6106358484846001610536565b9250905081840481111561064c5761064b6104fd565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f61067882610659565b915061068383610662565b92506106b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610588565b905092915050565b5f6106c282610659565b91506106cd83610659565b92508282026106db81610659565b915082820484148315176106f2576106f16104fd565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061077457607f821691505b60208210810361078757610786610730565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107ae565b6107f386836107ae565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61082e61082961082484610659565b61080b565b610659565b9050919050565b5f819050919050565b61084783610814565b61085b61085382610835565b8484546107ba565b825550505050565b5f90565b61086f610863565b61087a81848461083e565b505050565b5b8181101561089d576108925f82610867565b600181019050610880565b5050565b601f8211156108e2576108b38161078d565b6108bc8461079f565b810160208510156108cb578190505b6108df6108d78561079f565b83018261087f565b50505b505050565b5f82821c905092915050565b5f6109025f19846008026108e7565b1980831691505092915050565b5f61091a83836108f3565b9150826002028217905092915050565b610933826106f9565b67ffffffffffffffff81111561094c5761094b610703565b5b610956825461075d565b6109618282856108a1565b5f60209050601f831160018114610992575f8415610980578287015190505b61098a858261090f565b8655506109f1565b601f1984166109a08661078d565b5f5b828110156109c7578489015182556001820191506020850194506020810190506109a2565b868310156109e457848901516109e0601f8916826108f3565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a22826109f9565b9050919050565b610a3281610a18565b82525050565b5f602082019050610a4b5f830184610a29565b92915050565b5f610a5b82610659565b9150610a6683610659565b9250828201905080821115610a7e57610a7d6104fd565b5b92915050565b610a8d81610659565b82525050565b5f606082019050610aa65f830186610a29565b610ab36020830185610a84565b610ac06040830184610a84565b949350505050565b5f602082019050610adb5f830184610a84565b92915050565b61138780610aee5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a2309ff81161006f578063a2309ff814610291578063a9059cbb146102af578063cf9e8e69146102df578063dd62ed3e146102fd578063f2fde38b1461032d57610109565b8063715018a61461022f57806379cc6790146102395780638da5cb5b1461025557806395d89b411461027357610109565b8063313ce567116100dc578063313ce567146101a957806340c10f19146101c757806342966c68146101e357806370a08231146101ff57610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b610115610349565b6040516101229190610f6d565b60405180910390f35b6101456004803603810190610140919061101e565b6103d9565b6040516101529190611076565b60405180910390f35b6101636103fb565b604051610170919061109e565b60405180910390f35b610193600480360381019061018e91906110b7565b610404565b6040516101a09190611076565b60405180910390f35b6101b1610432565b6040516101be9190611122565b60405180910390f35b6101e160048036038101906101dc919061101e565b61043a565b005b6101fd60048036038101906101f8919061113b565b6104ba565b005b61021960048036038101906102149190611166565b6104ce565b604051610226919061109e565b60405180910390f35b610237610513565b005b610253600480360381019061024e919061101e565b610526565b005b61025d610546565b60405161026a91906111a0565b60405180910390f35b61027b61056e565b6040516102889190610f6d565b60405180910390f35b6102996105fe565b6040516102a6919061109e565b60405180910390f35b6102c960048036038101906102c4919061101e565b610604565b6040516102d69190611076565b60405180910390f35b6102e7610626565b6040516102f4919061109e565b60405180910390f35b610317600480360381019061031291906111b9565b61062c565b604051610324919061109e565b60405180910390f35b61034760048036038101906103429190611166565b6106ae565b005b60606003805461035890611224565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611224565b80156103cf5780601f106103a6576101008083540402835291602001916103cf565b820191905f5260205f20905b8154815290600101906020018083116103b257829003601f168201915b5050505050905090565b5f806103e3610732565b90506103f0818585610739565b600191505092915050565b5f600254905090565b5f8061040e610732565b905061041b85828561074b565b6104268585856107dd565b60019150509392505050565b5f6012905090565b6104426108cd565b600654816007546104539190611281565b1115610494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048b906112fe565b60405180910390fd5b8060075f8282546104a59190611281565b925050819055506104b68282610954565b5050565b6104cb6104c5610732565b826109d3565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61051b6108cd565b6105245f610a52565b565b61053882610532610732565b8361074b565b61054282826109d3565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461057d90611224565b80601f01602080910402602001604051908101604052809291908181526020018280546105a990611224565b80156105f45780601f106105cb576101008083540402835291602001916105f4565b820191905f5260205f20905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b60075481565b5f8061060e610732565b905061061b8185856107dd565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106b66108cd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610726575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161071d91906111a0565b60405180910390fd5b61072f81610a52565b50565b5f33905090565b6107468383836001610b15565b505050565b5f610756848461062c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107bf9392919061131c565b60405180910390fd5b6107d684848484035f610b15565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084d575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161084491906111a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108bd575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108b491906111a0565b60405180910390fd5b6108c8838383610ce4565b505050565b6108d5610732565b73ffffffffffffffffffffffffffffffffffffffff166108f3610546565b73ffffffffffffffffffffffffffffffffffffffff161461095257610916610732565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161094991906111a0565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109bb91906111a0565b60405180910390fd5b6109cf5f8383610ce4565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a43575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a3a91906111a0565b60405180910390fd5b610a4e825f83610ce4565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b85575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b7c91906111a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf5575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bec91906111a0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610cde578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cd5919061109e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d34578060025f828254610d289190611281565b92505081905550610e02565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dbd578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610db49392919061131c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e49578060025f8282540392505081905550610e93565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ef0919061109e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f3f82610efd565b610f498185610f07565b9350610f59818560208601610f17565b610f6281610f25565b840191505092915050565b5f6020820190508181035f830152610f858184610f35565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fba82610f91565b9050919050565b610fca81610fb0565b8114610fd4575f80fd5b50565b5f81359050610fe581610fc1565b92915050565b5f819050919050565b610ffd81610feb565b8114611007575f80fd5b50565b5f8135905061101881610ff4565b92915050565b5f806040838503121561103457611033610f8d565b5b5f61104185828601610fd7565b92505060206110528582860161100a565b9150509250929050565b5f8115159050919050565b6110708161105c565b82525050565b5f6020820190506110895f830184611067565b92915050565b61109881610feb565b82525050565b5f6020820190506110b15f83018461108f565b92915050565b5f805f606084860312156110ce576110cd610f8d565b5b5f6110db86828701610fd7565b93505060206110ec86828701610fd7565b92505060406110fd8682870161100a565b9150509250925092565b5f60ff82169050919050565b61111c81611107565b82525050565b5f6020820190506111355f830184611113565b92915050565b5f602082840312156111505761114f610f8d565b5b5f61115d8482850161100a565b91505092915050565b5f6020828403121561117b5761117a610f8d565b5b5f61118884828501610fd7565b91505092915050565b61119a81610fb0565b82525050565b5f6020820190506111b35f830184611191565b92915050565b5f80604083850312156111cf576111ce610f8d565b5b5f6111dc85828601610fd7565b92505060206111ed85828601610fd7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061123b57607f821691505b60208210810361124e5761124d6111f7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61128b82610feb565b915061129683610feb565b92508282019050808211156112ae576112ad611254565b5b92915050565b7f4d696e74206c696d6974206578636565646564000000000000000000000000005f82015250565b5f6112e8601383610f07565b91506112f3826112b4565b602082019050919050565b5f6020820190508181035f830152611315816112dc565b9050919050565b5f60608201905061132f5f830186611191565b61133c602083018561108f565b611349604083018461108f565b94935050505056fea2646970667358221220570958392bb524b89906b1fee142d8931586df011bae495cae041c86358f6b6464736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a2309ff81161006f578063a2309ff814610291578063a9059cbb146102af578063cf9e8e69146102df578063dd62ed3e146102fd578063f2fde38b1461032d57610109565b8063715018a61461022f57806379cc6790146102395780638da5cb5b1461025557806395d89b411461027357610109565b8063313ce567116100dc578063313ce567146101a957806340c10f19146101c757806342966c68146101e357806370a08231146101ff57610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b610115610349565b6040516101229190610f6d565b60405180910390f35b6101456004803603810190610140919061101e565b6103d9565b6040516101529190611076565b60405180910390f35b6101636103fb565b604051610170919061109e565b60405180910390f35b610193600480360381019061018e91906110b7565b610404565b6040516101a09190611076565b60405180910390f35b6101b1610432565b6040516101be9190611122565b60405180910390f35b6101e160048036038101906101dc919061101e565b61043a565b005b6101fd60048036038101906101f8919061113b565b6104ba565b005b61021960048036038101906102149190611166565b6104ce565b604051610226919061109e565b60405180910390f35b610237610513565b005b610253600480360381019061024e919061101e565b610526565b005b61025d610546565b60405161026a91906111a0565b60405180910390f35b61027b61056e565b6040516102889190610f6d565b60405180910390f35b6102996105fe565b6040516102a6919061109e565b60405180910390f35b6102c960048036038101906102c4919061101e565b610604565b6040516102d69190611076565b60405180910390f35b6102e7610626565b6040516102f4919061109e565b60405180910390f35b610317600480360381019061031291906111b9565b61062c565b604051610324919061109e565b60405180910390f35b61034760048036038101906103429190611166565b6106ae565b005b60606003805461035890611224565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611224565b80156103cf5780601f106103a6576101008083540402835291602001916103cf565b820191905f5260205f20905b8154815290600101906020018083116103b257829003601f168201915b5050505050905090565b5f806103e3610732565b90506103f0818585610739565b600191505092915050565b5f600254905090565b5f8061040e610732565b905061041b85828561074b565b6104268585856107dd565b60019150509392505050565b5f6012905090565b6104426108cd565b600654816007546104539190611281565b1115610494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048b906112fe565b60405180910390fd5b8060075f8282546104a59190611281565b925050819055506104b68282610954565b5050565b6104cb6104c5610732565b826109d3565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61051b6108cd565b6105245f610a52565b565b61053882610532610732565b8361074b565b61054282826109d3565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461057d90611224565b80601f01602080910402602001604051908101604052809291908181526020018280546105a990611224565b80156105f45780601f106105cb576101008083540402835291602001916105f4565b820191905f5260205f20905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b60075481565b5f8061060e610732565b905061061b8185856107dd565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106b66108cd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610726575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161071d91906111a0565b60405180910390fd5b61072f81610a52565b50565b5f33905090565b6107468383836001610b15565b505050565b5f610756848461062c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107bf9392919061131c565b60405180910390fd5b6107d684848484035f610b15565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084d575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161084491906111a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108bd575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108b491906111a0565b60405180910390fd5b6108c8838383610ce4565b505050565b6108d5610732565b73ffffffffffffffffffffffffffffffffffffffff166108f3610546565b73ffffffffffffffffffffffffffffffffffffffff161461095257610916610732565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161094991906111a0565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109bb91906111a0565b60405180910390fd5b6109cf5f8383610ce4565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a43575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a3a91906111a0565b60405180910390fd5b610a4e825f83610ce4565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b85575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b7c91906111a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf5575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bec91906111a0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610cde578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cd5919061109e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d34578060025f828254610d289190611281565b92505081905550610e02565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dbd578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610db49392919061131c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e49578060025f8282540392505081905550610e93565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ef0919061109e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f3f82610efd565b610f498185610f07565b9350610f59818560208601610f17565b610f6281610f25565b840191505092915050565b5f6020820190508181035f830152610f858184610f35565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fba82610f91565b9050919050565b610fca81610fb0565b8114610fd4575f80fd5b50565b5f81359050610fe581610fc1565b92915050565b5f819050919050565b610ffd81610feb565b8114611007575f80fd5b50565b5f8135905061101881610ff4565b92915050565b5f806040838503121561103457611033610f8d565b5b5f61104185828601610fd7565b92505060206110528582860161100a565b9150509250929050565b5f8115159050919050565b6110708161105c565b82525050565b5f6020820190506110895f830184611067565b92915050565b61109881610feb565b82525050565b5f6020820190506110b15f83018461108f565b92915050565b5f805f606084860312156110ce576110cd610f8d565b5b5f6110db86828701610fd7565b93505060206110ec86828701610fd7565b92505060406110fd8682870161100a565b9150509250925092565b5f60ff82169050919050565b61111c81611107565b82525050565b5f6020820190506111355f830184611113565b92915050565b5f602082840312156111505761114f610f8d565b5b5f61115d8482850161100a565b91505092915050565b5f6020828403121561117b5761117a610f8d565b5b5f61118884828501610fd7565b91505092915050565b61119a81610fb0565b82525050565b5f6020820190506111b35f830184611191565b92915050565b5f80604083850312156111cf576111ce610f8d565b5b5f6111dc85828601610fd7565b92505060206111ed85828601610fd7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061123b57607f821691505b60208210810361124e5761124d6111f7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61128b82610feb565b915061129683610feb565b92508282019050808211156112ae576112ad611254565b5b92915050565b7f4d696e74206c696d6974206578636565646564000000000000000000000000005f82015250565b5f6112e8601383610f07565b91506112f3826112b4565b602082019050919050565b5f6020820190508181035f830152611315816112dc565b9050919050565b5f60608201905061132f5f830186611191565b61133c602083018561108f565b611349604083018461108f565b94935050505056fea2646970667358221220570958392bb524b89906b1fee142d8931586df011bae495cae041c86358f6b6464736f6c63430008190033
Deployed Bytecode Sourcemap
31308:611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19481:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21774:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20583:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22542:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20434:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31708:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29412:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20745:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10142:103;;;:::i;:::-;;29830:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9467:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19691:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31435:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21068:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31366:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21313:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10400:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19481:91;19526:13;19559:5;19552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19481:91;:::o;21774:190::-;21847:4;21864:13;21880:12;:10;:12::i;:::-;21864:28;;21903:31;21912:5;21919:7;21928:5;21903:8;:31::i;:::-;21952:4;21945:11;;;21774:190;;;;:::o;20583:99::-;20635:7;20662:12;;20655:19;;20583:99;:::o;22542:249::-;22629:4;22646:15;22664:12;:10;:12::i;:::-;22646:30;;22687:37;22703:4;22709:7;22718:5;22687:15;:37::i;:::-;22735:26;22745:4;22751:2;22755:5;22735:9;:26::i;:::-;22779:4;22772:11;;;22542:249;;;;;:::o;20434:84::-;20483:5;20508:2;20501:9;;20434:84;:::o;31708:208::-;9353:13;:11;:13::i;:::-;31810:14:::1;;31800:6;31786:11;;:20;;;;:::i;:::-;:38;;31778:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;31874:6;31859:11;;:21;;;;;;;:::i;:::-;;;;;;;;31891:17;31897:2;31901:6;31891:5;:17::i;:::-;31708:208:::0;;:::o;29412:89::-;29467:26;29473:12;:10;:12::i;:::-;29487:5;29467;:26::i;:::-;29412:89;:::o;20745:118::-;20810:7;20837:9;:18;20847:7;20837:18;;;;;;;;;;;;;;;;20830:25;;20745:118;;;:::o;10142:103::-;9353:13;:11;:13::i;:::-;10207:30:::1;10234:1;10207:18;:30::i;:::-;10142:103::o:0;29830:161::-;29906:45;29922:7;29931:12;:10;:12::i;:::-;29945:5;29906:15;:45::i;:::-;29962:21;29968:7;29977:5;29962;:21::i;:::-;29830:161;;:::o;9467:87::-;9513:7;9540:6;;;;;;;;;;;9533:13;;9467:87;:::o;19691:95::-;19738:13;19771:7;19764:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19691:95;:::o;31435:26::-;;;;:::o;21068:182::-;21137:4;21154:13;21170:12;:10;:12::i;:::-;21154:28;;21193:27;21203:5;21210:2;21214:5;21193:9;:27::i;:::-;21238:4;21231:11;;;21068:182;;;;:::o;31366:61::-;;;;:::o;21313:142::-;21393:7;21420:11;:18;21432:5;21420:18;;;;;;;;;;;;;;;:27;21439:7;21420:27;;;;;;;;;;;;;;;;21413:34;;21313:142;;;;:::o;10400:220::-;9353:13;:11;:13::i;:::-;10505:1:::1;10485:22;;:8;:22;;::::0;10481:93:::1;;10559:1;10531:31;;;;;;;;;;;:::i;:::-;;;;;;;;10481:93;10584:28;10603:8;10584:18;:28::i;:::-;10400:220:::0;:::o;7470:98::-;7523:7;7550:10;7543:17;;7470:98;:::o;26601:130::-;26686:37;26695:5;26702:7;26711:5;26718:4;26686:8;:37::i;:::-;26601:130;;;:::o;28317:487::-;28417:24;28444:25;28454:5;28461:7;28444:9;:25::i;:::-;28417:52;;28504:17;28484:16;:37;28480:317;;28561:5;28542:16;:24;28538:132;;;28621:7;28630:16;28648:5;28594:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;28538:132;28713:57;28722:5;28729:7;28757:5;28738:16;:24;28764:5;28713:8;:57::i;:::-;28480:317;28406:398;28317:487;;;:::o;23176:308::-;23276:1;23260:18;;:4;:18;;;23256:88;;23329:1;23302:30;;;;;;;;;;;:::i;:::-;;;;;;;;23256:88;23372:1;23358:16;;:2;:16;;;23354:88;;23427:1;23398:32;;;;;;;;;;;:::i;:::-;;;;;;;;23354:88;23452:24;23460:4;23466:2;23470:5;23452:7;:24::i;:::-;23176:308;;;:::o;9632:166::-;9703:12;:10;:12::i;:::-;9692:23;;:7;:5;:7::i;:::-;:23;;;9688:103;;9766:12;:10;:12::i;:::-;9739:40;;;;;;;;;;;:::i;:::-;;;;;;;;9688:103;9632:166::o;25296:213::-;25386:1;25367:21;;:7;:21;;;25363:93;;25441:1;25412:32;;;;;;;;;;;:::i;:::-;;;;;;;;25363:93;25466:35;25482:1;25486:7;25495:5;25466:7;:35::i;:::-;25296:213;;:::o;25837:211::-;25927:1;25908:21;;:7;:21;;;25904:91;;25980:1;25953:30;;;;;;;;;;;:::i;:::-;;;;;;;;25904:91;26005:35;26013:7;26030:1;26034:5;26005:7;:35::i;:::-;25837:211;;:::o;10780:191::-;10854:16;10873:6;;;;;;;;;;;10854:25;;10899:8;10890:6;;:17;;;;;;;;;;;;;;;;;;10954:8;10923:40;;10944:8;10923:40;;;;;;;;;;;;10843:128;10780:191;:::o;27582:443::-;27712:1;27695:19;;:5;:19;;;27691:91;;27767:1;27738:32;;;;;;;;;;;:::i;:::-;;;;;;;;27691:91;27815:1;27796:21;;:7;:21;;;27792:92;;27869:1;27841:31;;;;;;;;;;;:::i;:::-;;;;;;;;27792:92;27924:5;27894:11;:18;27906:5;27894:18;;;;;;;;;;;;;;;:27;27913:7;27894:27;;;;;;;;;;;;;;;:35;;;;27944:9;27940:78;;;27991:7;27975:31;;27984:5;27975:31;;;28000:5;27975:31;;;;;;:::i;:::-;;;;;;;;27940:78;27582:443;;;;:::o;23808:1135::-;23914:1;23898:18;;:4;:18;;;23894:552;;24052:5;24036:12;;:21;;;;;;;:::i;:::-;;;;;;;;23894:552;;;24090:19;24112:9;:15;24122:4;24112:15;;;;;;;;;;;;;;;;24090:37;;24160:5;24146:11;:19;24142:117;;;24218:4;24224:11;24237:5;24193:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;24142:117;24414:5;24400:11;:19;24382:9;:15;24392:4;24382:15;;;;;;;;;;;;;;;:37;;;;24075:371;23894:552;24476:1;24462:16;;:2;:16;;;24458:435;;24644:5;24628:12;;:21;;;;;;;;;;;24458:435;;;24861:5;24844:9;:13;24854:2;24844:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;24458:435;24925:2;24910:25;;24919:4;24910:25;;;24929:5;24910:25;;;;;;:::i;:::-;;;;;;;;23808:1135;;;:::o;7:99:1:-;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:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;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:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:191;6986:3;7005:20;7023:1;7005:20;:::i;:::-;7000:25;;7039:20;7057:1;7039:20;:::i;:::-;7034:25;;7082:1;7079;7075:9;7068:16;;7103:3;7100:1;7097:10;7094:36;;;7110:18;;:::i;:::-;7094:36;6946:191;;;;:::o;7143:169::-;7283:21;7279:1;7271:6;7267:14;7260:45;7143:169;:::o;7318:366::-;7460:3;7481:67;7545:2;7540:3;7481:67;:::i;:::-;7474:74;;7557:93;7646:3;7557:93;:::i;:::-;7675:2;7670:3;7666:12;7659:19;;7318:366;;;:::o;7690:419::-;7856:4;7894:2;7883:9;7879:18;7871:26;;7943:9;7937:4;7933:20;7929:1;7918:9;7914:17;7907:47;7971:131;8097:4;7971:131;:::i;:::-;7963:139;;7690:419;;;:::o;8115:442::-;8264:4;8302:2;8291:9;8287:18;8279:26;;8315:71;8383:1;8372:9;8368:17;8359:6;8315:71;:::i;:::-;8396:72;8464:2;8453:9;8449:18;8440:6;8396:72;:::i;:::-;8478;8546:2;8535:9;8531:18;8522:6;8478:72;:::i;:::-;8115:442;;;;;;:::o
Swarm Source
ipfs://570958392bb524b89906b1fee142d8931586df011bae495cae041c86358f6b64
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.