ERC-20
Overview
Max Total Supply
17,610,000,000 ApeDaram
Holders
1,226
Market
Price
$0.00 @ 0.000000 APE
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,000,000 ApeDaramValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
FreeMintApeDaramToken
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-10-20 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/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/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/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: gasfee.sol pragma solidity ^0.8.26; enum YieldMode { AUTOMATIC, VOID, DELEGATE } interface ArbInfo { /// @notice Retrieves an account's balance function getBalance(address account) external view returns (uint256); /// @notice Retrieves a contract's deployed code function getCode(address account) external view returns (bytes memory); // fixed, shares, debt function getBalanceValues(address account) external view returns (uint256, uint256, uint256); // flags function getYieldConfiguration(address account) external view returns (uint8); // delegate function getDelegate(address account) external view returns (address); function configureAutomaticYield() external; function configureVoidYield() external; function configureDelegateYield(address account) external; } contract FreeMintApeDaramToken is ERC20, Ownable { ArbInfo arbInfo = ArbInfo(0x0000000000000000000000000000000000000065); uint public constant MAX_SUPPLY = 2100000000000 * 1 ether; uint public constant MINT_AMOUNT = 5000000 * 1 ether; mapping(address => uint256) public numMinted; constructor() ERC20("Free Mint Ape Daram Token", "ApeDaram") Ownable(msg.sender) { arbInfo.configureDelegateYield(msg.sender); } function DELEGATE(address delegate) external onlyOwner { arbInfo.configureDelegateYield(delegate); } receive() external payable { } function mint() external { require(totalSupply() + MINT_AMOUNT <= MAX_SUPPLY, "Total supply exceeded"); require(numMinted[msg.sender] < 10, "Address minted 10"); require(msg.sender == tx.origin, "Contracts are not allowed to mint"); numMinted[msg.sender] += 1; _mint(msg.sender, MINT_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":[{"internalType":"address","name":"delegate","type":"address"}],"name":"DELEGATE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_AMOUNT","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052606560065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015610050575f5ffd5b50336040518060400160405280601981526020017f46726565204d696e742041706520446172616d20546f6b656e000000000000008152506040518060400160405280600881526020017f417065446172616d00000000000000000000000000000000000000000000000081525081600390816100cd91906104ec565b5080600490816100dd91906104ec565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610150575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161014791906105fa565b60405180910390fd5b61015f816101ec60201b60201c565b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633c1b881c336040518263ffffffff1660e01b81526004016101ba91906105fa565b5f604051808303815f87803b1580156101d1575f5ffd5b505af11580156101e3573d5f5f3e3d5ffd5b50505050610613565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061032a57607f821691505b60208210810361033d5761033c6102e6565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261039f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610364565b6103a98683610364565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6103ed6103e86103e3846103c1565b6103ca565b6103c1565b9050919050565b5f819050919050565b610406836103d3565b61041a610412826103f4565b848454610370565b825550505050565b5f5f905090565b610431610422565b61043c8184846103fd565b505050565b5b8181101561045f576104545f82610429565b600181019050610442565b5050565b601f8211156104a45761047581610343565b61047e84610355565b8101602085101561048d578190505b6104a161049985610355565b830182610441565b50505b505050565b5f82821c905092915050565b5f6104c45f19846008026104a9565b1980831691505092915050565b5f6104dc83836104b5565b9150826002028217905092915050565b6104f5826102af565b67ffffffffffffffff81111561050e5761050d6102b9565b5b6105188254610313565b610523828285610463565b5f60209050601f831160018114610554575f8415610542578287015190505b61054c85826104d1565b8655506105b3565b601f19841661056286610343565b5f5b8281101561058957848901518255600182019150602085019450602081019050610564565b868310156105a657848901516105a2601f8916826104b5565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105e4826105bb565b9050919050565b6105f4816105da565b82525050565b5f60208201905061060d5f8301846105eb565b92915050565b61166d806106205f395ff3fe608060405260043610610101575f3560e01c806332cb6b0c116100945780638da5cb5b116100635780638da5cb5b1461032257806395d89b411461034c578063a9059cbb14610376578063dd62ed3e146103b2578063f2fde38b146103ee57610108565b806332cb6b0c1461027c5780635427789c146102a657806370a08231146102d0578063715018a61461030c57610108565b806320fc7eb2116100d057806320fc7eb2146101b257806323b872dd146101ee578063313ce5671461022a5780633277d76d1461025457610108565b806306fdde031461010c578063095ea7b3146101365780631249c58b1461017257806318160ddd1461018857610108565b3661010857005b5f5ffd5b348015610117575f5ffd5b50610120610416565b60405161012d9190611188565b60405180910390f35b348015610141575f5ffd5b5061015c60048036038101906101579190611239565b6104a6565b6040516101699190611291565b60405180910390f35b34801561017d575f5ffd5b506101866104c8565b005b348015610193575f5ffd5b5061019c61068e565b6040516101a991906112b9565b60405180910390f35b3480156101bd575f5ffd5b506101d860048036038101906101d391906112d2565b610697565b6040516101e591906112b9565b60405180910390f35b3480156101f9575f5ffd5b50610214600480360381019061020f91906112fd565b6106ac565b6040516102219190611291565b60405180910390f35b348015610235575f5ffd5b5061023e6106da565b60405161024b9190611368565b60405180910390f35b34801561025f575f5ffd5b5061027a600480360381019061027591906112d2565b6106e2565b005b348015610287575f5ffd5b50610290610774565b60405161029d91906112b9565b60405180910390f35b3480156102b1575f5ffd5b506102ba610785565b6040516102c791906112b9565b60405180910390f35b3480156102db575f5ffd5b506102f660048036038101906102f191906112d2565b610794565b60405161030391906112b9565b60405180910390f35b348015610317575f5ffd5b506103206107d9565b005b34801561032d575f5ffd5b506103366107ec565b6040516103439190611390565b60405180910390f35b348015610357575f5ffd5b50610360610814565b60405161036d9190611188565b60405180910390f35b348015610381575f5ffd5b5061039c60048036038101906103979190611239565b6108a4565b6040516103a99190611291565b60405180910390f35b3480156103bd575f5ffd5b506103d860048036038101906103d391906113a9565b6108c6565b6040516103e591906112b9565b60405180910390f35b3480156103f9575f5ffd5b50610414600480360381019061040f91906112d2565b610948565b005b60606003805461042590611414565b80601f016020809104026020016040519081016040528092919081815260200182805461045190611414565b801561049c5780601f106104735761010080835404028352916020019161049c565b820191905f5260205f20905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b5f5f6104b06109cc565b90506104bd8185856109d3565b600191505092915050565b6c1a8177494efa5bf39f200000006a0422ca8b0a00a4250000006104ea61068e565b6104f49190611471565b1115610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c906114ee565b60405180910390fd5b600a60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054106105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac90611556565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061a906115e4565b60405180910390fd5b600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106709190611471565b9250508190555061068c336a0422ca8b0a00a4250000006109e5565b565b5f600254905090565b6007602052805f5260405f205f915090505481565b5f5f6106b66109cc565b90506106c3858285610a64565b6106ce858585610af6565b60019150509392505050565b5f6012905090565b6106ea610be6565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633c1b881c826040518263ffffffff1660e01b81526004016107449190611390565b5f604051808303815f87803b15801561075b575f5ffd5b505af115801561076d573d5f5f3e3d5ffd5b5050505050565b6c1a8177494efa5bf39f2000000081565b6a0422ca8b0a00a42500000081565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107e1610be6565b6107ea5f610c6d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461082390611414565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90611414565b801561089a5780601f106108715761010080835404028352916020019161089a565b820191905f5260205f20905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b5f5f6108ae6109cc565b90506108bb818585610af6565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610950610be6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c0575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109b79190611390565b60405180910390fd5b6109c981610c6d565b50565b5f33905090565b6109e08383836001610d30565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a55575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a4c9190611390565b60405180910390fd5b610a605f8383610eff565b5050565b5f610a6f84846108c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af05781811015610ae1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ad893929190611602565b60405180910390fd5b610aef84848484035f610d30565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b66575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b5d9190611390565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bcd9190611390565b60405180910390fd5b610be1838383610eff565b505050565b610bee6109cc565b73ffffffffffffffffffffffffffffffffffffffff16610c0c6107ec565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b57610c2f6109cc565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c629190611390565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610da0575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d979190611390565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e10575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e079190611390565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ef9578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ef091906112b9565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f4f578060025f828254610f439190611471565b9250508190555061101d565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fd8578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610fcf93929190611602565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611064578060025f82825403925050819055506110ae565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161110b91906112b9565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61115a82611118565b6111648185611122565b9350611174818560208601611132565b61117d81611140565b840191505092915050565b5f6020820190508181035f8301526111a08184611150565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111d5826111ac565b9050919050565b6111e5816111cb565b81146111ef575f5ffd5b50565b5f81359050611200816111dc565b92915050565b5f819050919050565b61121881611206565b8114611222575f5ffd5b50565b5f813590506112338161120f565b92915050565b5f5f6040838503121561124f5761124e6111a8565b5b5f61125c858286016111f2565b925050602061126d85828601611225565b9150509250929050565b5f8115159050919050565b61128b81611277565b82525050565b5f6020820190506112a45f830184611282565b92915050565b6112b381611206565b82525050565b5f6020820190506112cc5f8301846112aa565b92915050565b5f602082840312156112e7576112e66111a8565b5b5f6112f4848285016111f2565b91505092915050565b5f5f5f60608486031215611314576113136111a8565b5b5f611321868287016111f2565b9350506020611332868287016111f2565b925050604061134386828701611225565b9150509250925092565b5f60ff82169050919050565b6113628161134d565b82525050565b5f60208201905061137b5f830184611359565b92915050565b61138a816111cb565b82525050565b5f6020820190506113a35f830184611381565b92915050565b5f5f604083850312156113bf576113be6111a8565b5b5f6113cc858286016111f2565b92505060206113dd858286016111f2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061142b57607f821691505b60208210810361143e5761143d6113e7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61147b82611206565b915061148683611206565b925082820190508082111561149e5761149d611444565b5b92915050565b7f546f74616c20737570706c7920657863656564656400000000000000000000005f82015250565b5f6114d8601583611122565b91506114e3826114a4565b602082019050919050565b5f6020820190508181035f830152611505816114cc565b9050919050565b7f41646472657373206d696e7465642031300000000000000000000000000000005f82015250565b5f611540601183611122565b915061154b8261150c565b602082019050919050565b5f6020820190508181035f83015261156d81611534565b9050919050565b7f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e5f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115ce602183611122565b91506115d982611574565b604082019050919050565b5f6020820190508181035f8301526115fb816115c2565b9050919050565b5f6060820190506116155f830186611381565b61162260208301856112aa565b61162f60408301846112aa565b94935050505056fea2646970667358221220a75cdeebcdceaf218e08f13d330396d5a6fda9fc24523980fe6c5abe724357c364736f6c634300081b0033
Deployed Bytecode
0x608060405260043610610101575f3560e01c806332cb6b0c116100945780638da5cb5b116100635780638da5cb5b1461032257806395d89b411461034c578063a9059cbb14610376578063dd62ed3e146103b2578063f2fde38b146103ee57610108565b806332cb6b0c1461027c5780635427789c146102a657806370a08231146102d0578063715018a61461030c57610108565b806320fc7eb2116100d057806320fc7eb2146101b257806323b872dd146101ee578063313ce5671461022a5780633277d76d1461025457610108565b806306fdde031461010c578063095ea7b3146101365780631249c58b1461017257806318160ddd1461018857610108565b3661010857005b5f5ffd5b348015610117575f5ffd5b50610120610416565b60405161012d9190611188565b60405180910390f35b348015610141575f5ffd5b5061015c60048036038101906101579190611239565b6104a6565b6040516101699190611291565b60405180910390f35b34801561017d575f5ffd5b506101866104c8565b005b348015610193575f5ffd5b5061019c61068e565b6040516101a991906112b9565b60405180910390f35b3480156101bd575f5ffd5b506101d860048036038101906101d391906112d2565b610697565b6040516101e591906112b9565b60405180910390f35b3480156101f9575f5ffd5b50610214600480360381019061020f91906112fd565b6106ac565b6040516102219190611291565b60405180910390f35b348015610235575f5ffd5b5061023e6106da565b60405161024b9190611368565b60405180910390f35b34801561025f575f5ffd5b5061027a600480360381019061027591906112d2565b6106e2565b005b348015610287575f5ffd5b50610290610774565b60405161029d91906112b9565b60405180910390f35b3480156102b1575f5ffd5b506102ba610785565b6040516102c791906112b9565b60405180910390f35b3480156102db575f5ffd5b506102f660048036038101906102f191906112d2565b610794565b60405161030391906112b9565b60405180910390f35b348015610317575f5ffd5b506103206107d9565b005b34801561032d575f5ffd5b506103366107ec565b6040516103439190611390565b60405180910390f35b348015610357575f5ffd5b50610360610814565b60405161036d9190611188565b60405180910390f35b348015610381575f5ffd5b5061039c60048036038101906103979190611239565b6108a4565b6040516103a99190611291565b60405180910390f35b3480156103bd575f5ffd5b506103d860048036038101906103d391906113a9565b6108c6565b6040516103e591906112b9565b60405180910390f35b3480156103f9575f5ffd5b50610414600480360381019061040f91906112d2565b610948565b005b60606003805461042590611414565b80601f016020809104026020016040519081016040528092919081815260200182805461045190611414565b801561049c5780601f106104735761010080835404028352916020019161049c565b820191905f5260205f20905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b5f5f6104b06109cc565b90506104bd8185856109d3565b600191505092915050565b6c1a8177494efa5bf39f200000006a0422ca8b0a00a4250000006104ea61068e565b6104f49190611471565b1115610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c906114ee565b60405180910390fd5b600a60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054106105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac90611556565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061a906115e4565b60405180910390fd5b600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106709190611471565b9250508190555061068c336a0422ca8b0a00a4250000006109e5565b565b5f600254905090565b6007602052805f5260405f205f915090505481565b5f5f6106b66109cc565b90506106c3858285610a64565b6106ce858585610af6565b60019150509392505050565b5f6012905090565b6106ea610be6565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633c1b881c826040518263ffffffff1660e01b81526004016107449190611390565b5f604051808303815f87803b15801561075b575f5ffd5b505af115801561076d573d5f5f3e3d5ffd5b5050505050565b6c1a8177494efa5bf39f2000000081565b6a0422ca8b0a00a42500000081565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107e1610be6565b6107ea5f610c6d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461082390611414565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90611414565b801561089a5780601f106108715761010080835404028352916020019161089a565b820191905f5260205f20905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b5f5f6108ae6109cc565b90506108bb818585610af6565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610950610be6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c0575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109b79190611390565b60405180910390fd5b6109c981610c6d565b50565b5f33905090565b6109e08383836001610d30565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a55575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a4c9190611390565b60405180910390fd5b610a605f8383610eff565b5050565b5f610a6f84846108c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af05781811015610ae1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ad893929190611602565b60405180910390fd5b610aef84848484035f610d30565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b66575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b5d9190611390565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bcd9190611390565b60405180910390fd5b610be1838383610eff565b505050565b610bee6109cc565b73ffffffffffffffffffffffffffffffffffffffff16610c0c6107ec565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b57610c2f6109cc565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c629190611390565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610da0575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d979190611390565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e10575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e079190611390565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ef9578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ef091906112b9565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f4f578060025f828254610f439190611471565b9250508190555061101d565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fd8578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610fcf93929190611602565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611064578060025f82825403925050819055506110ae565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161110b91906112b9565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61115a82611118565b6111648185611122565b9350611174818560208601611132565b61117d81611140565b840191505092915050565b5f6020820190508181035f8301526111a08184611150565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111d5826111ac565b9050919050565b6111e5816111cb565b81146111ef575f5ffd5b50565b5f81359050611200816111dc565b92915050565b5f819050919050565b61121881611206565b8114611222575f5ffd5b50565b5f813590506112338161120f565b92915050565b5f5f6040838503121561124f5761124e6111a8565b5b5f61125c858286016111f2565b925050602061126d85828601611225565b9150509250929050565b5f8115159050919050565b61128b81611277565b82525050565b5f6020820190506112a45f830184611282565b92915050565b6112b381611206565b82525050565b5f6020820190506112cc5f8301846112aa565b92915050565b5f602082840312156112e7576112e66111a8565b5b5f6112f4848285016111f2565b91505092915050565b5f5f5f60608486031215611314576113136111a8565b5b5f611321868287016111f2565b9350506020611332868287016111f2565b925050604061134386828701611225565b9150509250925092565b5f60ff82169050919050565b6113628161134d565b82525050565b5f60208201905061137b5f830184611359565b92915050565b61138a816111cb565b82525050565b5f6020820190506113a35f830184611381565b92915050565b5f5f604083850312156113bf576113be6111a8565b5b5f6113cc858286016111f2565b92505060206113dd858286016111f2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061142b57607f821691505b60208210810361143e5761143d6113e7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61147b82611206565b915061148683611206565b925082820190508082111561149e5761149d611444565b5b92915050565b7f546f74616c20737570706c7920657863656564656400000000000000000000005f82015250565b5f6114d8601583611122565b91506114e3826114a4565b602082019050919050565b5f6020820190508181035f830152611505816114cc565b9050919050565b7f41646472657373206d696e7465642031300000000000000000000000000000005f82015250565b5f611540601183611122565b915061154b8261150c565b602082019050919050565b5f6020820190508181035f83015261156d81611534565b9050919050565b7f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e5f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115ce602183611122565b91506115d982611574565b604082019050919050565b5f6020820190508181035f8301526115fb816115c2565b9050919050565b5f6060820190506116155f830186611381565b61162260208301856112aa565b61162f60408301846112aa565b94935050505056fea2646970667358221220a75cdeebcdceaf218e08f13d330396d5a6fda9fc24523980fe6c5abe724357c364736f6c634300081b0033
Deployed Bytecode Sourcemap
26352:993:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12903:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15196:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26992:348;;;;;;;;;;;;;:::i;:::-;;14005:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26618:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15996:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13856:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26828:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26492:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26556:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14167:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24626:103;;;;;;;;;;;;;:::i;:::-;;23951:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13113:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14490:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14735:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24884:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12903:91;12948:13;12981:5;12974:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12903:91;:::o;15196:190::-;15269:4;15286:13;15302:12;:10;:12::i;:::-;15286:28;;15325:31;15334:5;15341:7;15350:5;15325:8;:31::i;:::-;15374:4;15367:11;;;15196:190;;;;:::o;26992:348::-;26526:23;26591:17;27036:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;27028:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27146:2;27122:9;:21;27132:10;27122:21;;;;;;;;;;;;;;;;:26;27114:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27203:9;27189:23;;:10;:23;;;27181:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27286:1;27261:9;:21;27271:10;27261:21;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;27302:30;27308:10;26591:17;27302:5;:30::i;:::-;26992:348::o;14005:99::-;14057:7;14084:12;;14077:19;;14005:99;:::o;26618:44::-;;;;;;;;;;;;;;;;;:::o;15996:249::-;16083:4;16100:15;16118:12;:10;:12::i;:::-;16100:30;;16141:37;16157:4;16163:7;16172:5;16141:15;:37::i;:::-;16189:26;16199:4;16205:2;16209:5;16189:9;:26::i;:::-;16233:4;16226:11;;;15996:249;;;;;:::o;13856:84::-;13905:5;13930:2;13923:9;;13856:84;:::o;26828:114::-;23837:13;:11;:13::i;:::-;26894:7:::1;;;;;;;;;;;:30;;;26925:8;26894:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26828:114:::0;:::o;26492:57::-;26526:23;26492:57;:::o;26556:52::-;26591:17;26556:52;:::o;14167:118::-;14232:7;14259:9;:18;14269:7;14259:18;;;;;;;;;;;;;;;;14252:25;;14167:118;;;:::o;24626:103::-;23837:13;:11;:13::i;:::-;24691:30:::1;24718:1;24691:18;:30::i;:::-;24626:103::o:0;23951:87::-;23997:7;24024:6;;;;;;;;;;;24017:13;;23951:87;:::o;13113:95::-;13160:13;13193:7;13186:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13113:95;:::o;14490:182::-;14559:4;14576:13;14592:12;:10;:12::i;:::-;14576:28;;14615:27;14625:5;14632:2;14636:5;14615:9;:27::i;:::-;14660:4;14653:11;;;14490:182;;;;:::o;14735:142::-;14815:7;14842:11;:18;14854:5;14842:18;;;;;;;;;;;;;;;:27;14861:7;14842:27;;;;;;;;;;;;;;;;14835:34;;14735:142;;;;:::o;24884:220::-;23837:13;:11;:13::i;:::-;24989:1:::1;24969:22;;:8;:22;;::::0;24965:93:::1;;25043:1;25015:31;;;;;;;;;;;:::i;:::-;;;;;;;;24965:93;25068:28;25087:8;25068:18;:28::i;:::-;24884:220:::0;:::o;4202:98::-;4255:7;4282:10;4275:17;;4202:98;:::o;20055:130::-;20140:37;20149:5;20156:7;20165:5;20172:4;20140:8;:37::i;:::-;20055:130;;;:::o;18750:213::-;18840:1;18821:21;;:7;:21;;;18817:93;;18895:1;18866:32;;;;;;;;;;;:::i;:::-;;;;;;;;18817:93;18920:35;18936:1;18940:7;18949:5;18920:7;:35::i;:::-;18750:213;;:::o;21787:487::-;21887:24;21914:25;21924:5;21931:7;21914:9;:25::i;:::-;21887:52;;21974:17;21954:16;:37;21950:317;;22031:5;22012:16;:24;22008:132;;;22091:7;22100:16;22118:5;22064:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22008:132;22183:57;22192:5;22199:7;22227:5;22208:16;:24;22234:5;22183:8;:57::i;:::-;21950:317;21876:398;21787:487;;;:::o;16630:308::-;16730:1;16714:18;;:4;:18;;;16710:88;;16783:1;16756:30;;;;;;;;;;;:::i;:::-;;;;;;;;16710:88;16826:1;16812:16;;:2;:16;;;16808:88;;16881:1;16852:32;;;;;;;;;;;:::i;:::-;;;;;;;;16808:88;16906:24;16914:4;16920:2;16924:5;16906:7;:24::i;:::-;16630:308;;;:::o;24116:166::-;24187:12;:10;:12::i;:::-;24176:23;;:7;:5;:7::i;:::-;:23;;;24172:103;;24250:12;:10;:12::i;:::-;24223:40;;;;;;;;;;;:::i;:::-;;;;;;;;24172:103;24116:166::o;25264:191::-;25338:16;25357:6;;;;;;;;;;;25338:25;;25383:8;25374:6;;:17;;;;;;;;;;;;;;;;;;25438:8;25407:40;;25428:8;25407:40;;;;;;;;;;;;25327:128;25264:191;:::o;21052:443::-;21182:1;21165:19;;:5;:19;;;21161:91;;21237:1;21208:32;;;;;;;;;;;:::i;:::-;;;;;;;;21161:91;21285:1;21266:21;;:7;:21;;;21262:92;;21339:1;21311:31;;;;;;;;;;;:::i;:::-;;;;;;;;21262:92;21394:5;21364:11;:18;21376:5;21364:18;;;;;;;;;;;;;;;:27;21383:7;21364:27;;;;;;;;;;;;;;;:35;;;;21414:9;21410:78;;;21461:7;21445:31;;21454:5;21445:31;;;21470:5;21445:31;;;;;;:::i;:::-;;;;;;;;21410:78;21052:443;;;;:::o;17262:1135::-;17368:1;17352:18;;:4;:18;;;17348:552;;17506:5;17490:12;;:21;;;;;;;:::i;:::-;;;;;;;;17348:552;;;17544:19;17566:9;:15;17576:4;17566:15;;;;;;;;;;;;;;;;17544:37;;17614:5;17600:11;:19;17596:117;;;17672:4;17678:11;17691:5;17647:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17596:117;17868:5;17854:11;:19;17836:9;:15;17846:4;17836:15;;;;;;;;;;;;;;;:37;;;;17529:371;17348:552;17930:1;17916:16;;:2;:16;;;17912:435;;18098:5;18082:12;;:21;;;;;;;;;;;17912:435;;;18315:5;18298:9;:13;18308:2;18298:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17912:435;18379:2;18364:25;;18373:4;18364:25;;;18383:5;18364:25;;;;;;:::i;:::-;;;;;;;;17262: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:329::-;3750:6;3799:2;3787:9;3778:7;3774:23;3770:32;3767:119;;;3805:79;;:::i;:::-;3767:119;3925:1;3950:53;3995:7;3986:6;3975:9;3971:22;3950:53;:::i;:::-;3940:63;;3896:117;3691:329;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::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:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:180::-;6473:77;6470:1;6463:88;6570:4;6567:1;6560:15;6594:4;6591:1;6584:15;6611:191;6651:3;6670:20;6688:1;6670:20;:::i;:::-;6665:25;;6704:20;6722:1;6704:20;:::i;:::-;6699:25;;6747:1;6744;6740:9;6733:16;;6768:3;6765:1;6762:10;6759:36;;;6775:18;;:::i;:::-;6759:36;6611:191;;;;:::o;6808:171::-;6948:23;6944:1;6936:6;6932:14;6925:47;6808:171;:::o;6985:366::-;7127:3;7148:67;7212:2;7207:3;7148:67;:::i;:::-;7141:74;;7224:93;7313:3;7224:93;:::i;:::-;7342:2;7337:3;7333:12;7326:19;;6985:366;;;:::o;7357:419::-;7523:4;7561:2;7550:9;7546:18;7538:26;;7610:9;7604:4;7600:20;7596:1;7585:9;7581:17;7574:47;7638:131;7764:4;7638:131;:::i;:::-;7630:139;;7357:419;;;:::o;7782:167::-;7922:19;7918:1;7910:6;7906:14;7899:43;7782:167;:::o;7955:366::-;8097:3;8118:67;8182:2;8177:3;8118:67;:::i;:::-;8111:74;;8194:93;8283:3;8194:93;:::i;:::-;8312:2;8307:3;8303:12;8296:19;;7955:366;;;:::o;8327:419::-;8493:4;8531:2;8520:9;8516:18;8508:26;;8580:9;8574:4;8570:20;8566:1;8555:9;8551:17;8544:47;8608:131;8734:4;8608:131;:::i;:::-;8600:139;;8327:419;;;:::o;8752:220::-;8892:34;8888:1;8880:6;8876:14;8869:58;8961:3;8956:2;8948:6;8944:15;8937:28;8752:220;:::o;8978:366::-;9120:3;9141:67;9205:2;9200:3;9141:67;:::i;:::-;9134:74;;9217:93;9306:3;9217:93;:::i;:::-;9335:2;9330:3;9326:12;9319:19;;8978:366;;;:::o;9350:419::-;9516:4;9554:2;9543:9;9539:18;9531:26;;9603:9;9597:4;9593:20;9589:1;9578:9;9574:17;9567:47;9631:131;9757:4;9631:131;:::i;:::-;9623:139;;9350:419;;;:::o;9775:442::-;9924:4;9962:2;9951:9;9947:18;9939:26;;9975:71;10043:1;10032:9;10028:17;10019:6;9975:71;:::i;:::-;10056:72;10124:2;10113:9;10109:18;10100:6;10056:72;:::i;:::-;10138;10206:2;10195:9;10191:18;10182:6;10138:72;:::i;:::-;9775:442;;;;;;:::o
Swarm Source
ipfs://a75cdeebcdceaf218e08f13d330396d5a6fda9fc24523980fe6c5abe724357c3
[ 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.