ETH Price: $3,470.78 (+2.26%)
Gas: 11 Gwei

Token

MutantAssGoblins (MAG)
 

Overview

Max Total Supply

6,084 MAG

Holders

220

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
melloyelosmooth.eth
Balance
10 MAG
0xfa76e804f744ab86208fa35ef1bbaf85961b623d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MutantAssGoblins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-07
*/

/**
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}





// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)



/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}





// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)



/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}





// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)



/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}




// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)



/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}





// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}





// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}




// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)



/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File contracts/ERC721A.sol


// Creator: Chiru Labs


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

      currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract MutantAssGoblins is ERC721A, Ownable {

    string public baseURI = "ipfs://";
    string public contractURI = "ipfs://";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 private constant Free_Tx = 20;
    uint256 public constant Max_Per_Tx = 20;
    uint256 private constant FREE_Max_Supply = 6000;
    uint256 public Max_Supply = 9999;
    uint256 public price = 0.0055 ether;

    bool public paused = false;

    constructor() ERC721A("MutantAssGoblins", "MAG") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(Max_Supply >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");

        if(FREE_Max_Supply >= totalSupply()){
            require(Free_Tx >= _amount , "Excess max per free tx");
        }else{
            require(Max_Per_Tx >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }



    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
}

function setMax_Supply(uint256 newSupply) public onlyOwner {
        Max_Supply = newSupply;
}


    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Max_Per_Tx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMax_Supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805560c06040526007608081905266697066733a2f2f60c81b60a09081526200002e91600891906200016b565b5060408051808201909152600780825266697066733a2f2f60c81b60209092019182526200005f916009916200016b565b5061270f600a5566138a388a43c000600b55600c805460ff191690553480156200008857600080fd5b50604080518082018252601081526f4d7574616e74417373476f626c696e7360801b6020808301918252835180850190945260038452624d414760e81b908401528151919291620000dc916001916200016b565b508051620000f29060029060208401906200016b565b5050506200010f620001096200011560201b60201c565b62000119565b6200024e565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001799062000211565b90600052602060002090601f0160209004810192826200019d5760008555620001e8565b82601f10620001b857805160ff1916838001178555620001e8565b82800160010185558215620001e8579182015b82811115620001e8578251825591602001919060010190620001cb565b50620001f6929150620001fa565b5090565b5b80821115620001f65760008155600101620001fb565b600181811c908216806200022657607f821691505b602082108114156200024857634e487b7160e01b600052602260045260246000fd5b50919050565b612361806200025e6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c03261461057f578063e8a3d485146105a7578063e985e9c5146105bc578063f2fde38b14610605578063f4c80f631461062557600080fd5b8063a22cb465146104ee578063b88d4fde1461050e578063c66828621461052e578063c87b56dd1461055f57600080fd5b8063938e3d7b116100dc578063938e3d7b1461049057806395d89b41146104b0578063a035b1fe146104c5578063a0712d68146104db57600080fd5b806370a082311461041d578063715018a61461043d5780638da5cb5b1461045257806391b7f5ed1461047057600080fd5b80633ccfd60b1161019057806355f804b31161015f57806355f804b3146103985780635c975abb146103b85780636352211e146103d25780636737c9c1146103f25780636c0360eb1461040857600080fd5b80633ccfd60b1461032e57806342842e0e146103435780634827044d146103635780634f6ccce71461037857600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f20565b610645565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611f05565b6106b2565b005b34801561026157600080fd5b5061026a6106f8565b60405161022a91906120e8565b34801561028357600080fd5b50610297610292366004611fa3565b61078a565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611edb565b610815565b3480156102db57600080fd5b506000545b60405190815260200161022a565b3480156102fa57600080fd5b50610253610309366004611df9565b61092d565b34801561031a57600080fd5b506102e0610329366004611edb565b610938565b34801561033a57600080fd5b50610253610aa6565b34801561034f57600080fd5b5061025361035e366004611df9565b610b5f565b34801561036f57600080fd5b506102e0601481565b34801561038457600080fd5b506102e0610393366004611fa3565b610b7a565b3480156103a457600080fd5b506102536103b3366004611f5a565b610bdc565b3480156103c457600080fd5b50600c5461021e9060ff1681565b3480156103de57600080fd5b506102976103ed366004611fa3565b610c19565b3480156103fe57600080fd5b506102e0600a5481565b34801561041457600080fd5b5061026a610c2b565b34801561042957600080fd5b506102e0610438366004611da4565b610cb9565b34801561044957600080fd5b50610253610d4a565b34801561045e57600080fd5b506007546001600160a01b0316610297565b34801561047c57600080fd5b5061025361048b366004611fa3565b610d80565b34801561049c57600080fd5b506102536104ab366004611f5a565b610daf565b3480156104bc57600080fd5b5061026a610dec565b3480156104d157600080fd5b506102e0600b5481565b6102536104e9366004611fa3565b610dfb565b3480156104fa57600080fd5b50610253610509366004611eb1565b61101a565b34801561051a57600080fd5b50610253610529366004611e35565b6110df565b34801561053a57600080fd5b5061026a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056b57600080fd5b5061026a61057a366004611fa3565b611118565b34801561058b57600080fd5b5061029773a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105b357600080fd5b5061026a6111e4565b3480156105c857600080fd5b5061021e6105d7366004611dc6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061157600080fd5b50610253610620366004611da4565b6111f1565b34801561063157600080fd5b50610253610640366004611fa3565b61128c565b60006001600160e01b031982166380ac58cd60e01b148061067657506001600160e01b03198216635b5e139f60e01b145b8061069157506001600160e01b0319821663780e9d6360e01b145b806106ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106e55760405162461bcd60e51b81526004016106dc906120fb565b60405180910390fd5b600c805460ff1916911515919091179055565b60606001805461070790612253565b80601f016020809104026020016040519081016040528092919081815260200182805461073390612253565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610797826000541190565b6107f95760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106dc565b506000908152600560205260409020546001600160a01b031690565b600061082082610c19565b9050806001600160a01b0316836001600160a01b0316141561088f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106dc565b336001600160a01b03821614806108ab57506108ab81336105d7565b61091d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106dc565b6109288383836112bb565b505050565b610928838383611317565b600061094383610cb9565b821061099c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106dc565b600080549080805b83811015610a46576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109f757805192505b876001600160a01b0316836001600160a01b03161415610a335786841415610a25575093506106ac92505050565b83610a2f8161228e565b9450505b5080610a3e8161228e565b9150506109a4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106dc565b6007546001600160a01b03163314610ad05760405162461bcd60e51b81526004016106dc906120fb565b6040514790600090339083908381818185875af1925050503d8060008114610b14576040519150601f19603f3d011682016040523d82523d6000602084013e610b19565b606091505b5050905080610b5b5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016106dc565b5050565b610928838383604051806020016040528060008152506110df565b600080548210610bd85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106dc565b5090565b6007546001600160a01b03163314610c065760405162461bcd60e51b81526004016106dc906120fb565b8051610b5b906008906020840190611c72565b6000610c248261165e565b5192915050565b60088054610c3890612253565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6490612253565b8015610cb15780601f10610c8657610100808354040283529160200191610cb1565b820191906000526020600020905b815481529060010190602001808311610c9457829003601f168201915b505050505081565b60006001600160a01b038216610d255760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106dc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d745760405162461bcd60e51b81526004016106dc906120fb565b610d7e600061173e565b565b6007546001600160a01b03163314610daa5760405162461bcd60e51b81526004016106dc906120fb565b600b55565b6007546001600160a01b03163314610dd95760405162461bcd60e51b81526004016106dc906120fb565b8051610b5b906009906020840190611c72565b60606002805461070790612253565b600c54339060ff1615610e395760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106dc565b81610e4360005490565b610e4d91906121ae565b600a541015610e935760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016106dc565b60008211610ed05760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016106dc565b326001600160a01b03821614610f175760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016106dc565b60005461177010610f71578160141015610f6c5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b60448201526064016106dc565b611010565b8160141015610fbb5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016106dc565b34600b5483610fca91906121da565b146110105760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106dc565b610b5b8183611790565b6001600160a01b0382163314156110735760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106dc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ea848484611317565b6110f6848484846117aa565b6111125760405162461bcd60e51b81526004016106dc90612130565b50505050565b6060611125826000541190565b6111695760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106dc565b60006008805461117890612253565b90501161119457604051806020016040528060008152506106ac565b600861119f836118b8565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016111cf93929190612004565b60405160208183030381529060405292915050565b60098054610c3890612253565b6007546001600160a01b0316331461121b5760405162461bcd60e51b81526004016106dc906120fb565b6001600160a01b0381166112805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dc565b6112898161173e565b50565b6007546001600160a01b031633146112b65760405162461bcd60e51b81526004016106dc906120fb565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113228261165e565b80519091506000906001600160a01b0316336001600160a01b0316148061135957503361134e8461078a565b6001600160a01b0316145b8061136b5750815161136b90336105d7565b9050806113d55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106dc565b846001600160a01b031682600001516001600160a01b0316146114495760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106dc565b6001600160a01b0384166114ad5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106dc565b6114bd60008484600001516112bb565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906115829085906121ae565b6000818152600360205260409020549091506001600160a01b0316611614576115ac816000541190565b156116145760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261167d826000541190565b6116dc5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106dc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561172b579392505050565b50806117368161223c565b9150506116de565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b5b8282604051806020016040528060008152506119b6565b60006001600160a01b0384163b156118ac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ee9033908990889088906004016120b5565b602060405180830381600087803b15801561180857600080fd5b505af1925050508015611838575060408051601f3d908101601f1916820190925261183591810190611f3d565b60015b611892573d808015611866576040519150601f19603f3d011682016040523d82523d6000602084013e61186b565b606091505b50805161188a5760405162461bcd60e51b81526004016106dc90612130565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b0565b5060015b949350505050565b6060816118dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190657806118f08161228e565b91506118ff9050600a836121c6565b91506118e0565b60008167ffffffffffffffff811115611921576119216122ff565b6040519080825280601f01601f19166020018201604052801561194b576020820181803683370190505b5090505b84156118b0576119606001836121f9565b915061196d600a866122a9565b6119789060306121ae565b60f81b81838151811061198d5761198d6122e9565b60200101906001600160f81b031916908160001a9053506119af600a866121c6565b945061194f565b6000546001600160a01b038416611a195760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dc565b611a24816000541190565b15611a715760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106dc565b60008311611acd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016106dc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b29908790612183565b6001600160801b03168152602001858360200151611b479190612183565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c2b60008884886117aa565b611c475760405162461bcd60e51b81526004016106dc90612130565b81611c518161228e565b9250508080611c5f9061228e565b915050611bde565b506000819055611656565b828054611c7e90612253565b90600052602060002090601f016020900481019282611ca05760008555611ce6565b82601f10611cb957805160ff1916838001178555611ce6565b82800160010185558215611ce6579182015b82811115611ce6578251825591602001919060010190611ccb565b50610bd89291505b80821115610bd85760008155600101611cee565b600067ffffffffffffffff80841115611d1d57611d1d6122ff565b604051601f8501601f19908116603f01168101908282118183101715611d4557611d456122ff565b81604052809350858152868686011115611d5e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d8f57600080fd5b919050565b80358015158114611d8f57600080fd5b600060208284031215611db657600080fd5b611dbf82611d78565b9392505050565b60008060408385031215611dd957600080fd5b611de283611d78565b9150611df060208401611d78565b90509250929050565b600080600060608486031215611e0e57600080fd5b611e1784611d78565b9250611e2560208501611d78565b9150604084013590509250925092565b60008060008060808587031215611e4b57600080fd5b611e5485611d78565b9350611e6260208601611d78565b925060408501359150606085013567ffffffffffffffff811115611e8557600080fd5b8501601f81018713611e9657600080fd5b611ea587823560208401611d02565b91505092959194509250565b60008060408385031215611ec457600080fd5b611ecd83611d78565b9150611df060208401611d94565b60008060408385031215611eee57600080fd5b611ef783611d78565b946020939093013593505050565b600060208284031215611f1757600080fd5b611dbf82611d94565b600060208284031215611f3257600080fd5b8135611dbf81612315565b600060208284031215611f4f57600080fd5b8151611dbf81612315565b600060208284031215611f6c57600080fd5b813567ffffffffffffffff811115611f8357600080fd5b8201601f81018413611f9457600080fd5b6118b084823560208401611d02565b600060208284031215611fb557600080fd5b5035919050565b60008151808452611fd4816020860160208601612210565b601f01601f19169290920160200192915050565b60008151611ffa818560208601612210565b9290920192915050565b600080855481600182811c91508083168061202057607f831692505b602080841082141561204057634e487b7160e01b86526022600452602486fd5b818015612054576001811461206557612092565b60ff19861689528489019650612092565b60008c81526020902060005b8681101561208a5781548b820152908501908301612071565b505084890196505b5050505050506120ab6120a58287611fe8565b85611fe8565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ab90830184611fbc565b602081526000611dbf6020830184611fbc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121a5576121a56122bd565b01949350505050565b600082198211156121c1576121c16122bd565b500190565b6000826121d5576121d56122d3565b500490565b60008160001904831182151516156121f4576121f46122bd565b500290565b60008282101561220b5761220b6122bd565b500390565b60005b8381101561222b578181015183820152602001612213565b838111156111125750506000910152565b60008161224b5761224b6122bd565b506000190190565b600181811c9082168061226757607f821691505b6020821081141561228857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122a2576122a26122bd565b5060010190565b6000826122b8576122b86122d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461128957600080fdfea2646970667358221220c8b682e9496c61542894460208ce5ddde6dd99c495991f964cb2a1c1debeb74764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c03261461057f578063e8a3d485146105a7578063e985e9c5146105bc578063f2fde38b14610605578063f4c80f631461062557600080fd5b8063a22cb465146104ee578063b88d4fde1461050e578063c66828621461052e578063c87b56dd1461055f57600080fd5b8063938e3d7b116100dc578063938e3d7b1461049057806395d89b41146104b0578063a035b1fe146104c5578063a0712d68146104db57600080fd5b806370a082311461041d578063715018a61461043d5780638da5cb5b1461045257806391b7f5ed1461047057600080fd5b80633ccfd60b1161019057806355f804b31161015f57806355f804b3146103985780635c975abb146103b85780636352211e146103d25780636737c9c1146103f25780636c0360eb1461040857600080fd5b80633ccfd60b1461032e57806342842e0e146103435780634827044d146103635780634f6ccce71461037857600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f20565b610645565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611f05565b6106b2565b005b34801561026157600080fd5b5061026a6106f8565b60405161022a91906120e8565b34801561028357600080fd5b50610297610292366004611fa3565b61078a565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611edb565b610815565b3480156102db57600080fd5b506000545b60405190815260200161022a565b3480156102fa57600080fd5b50610253610309366004611df9565b61092d565b34801561031a57600080fd5b506102e0610329366004611edb565b610938565b34801561033a57600080fd5b50610253610aa6565b34801561034f57600080fd5b5061025361035e366004611df9565b610b5f565b34801561036f57600080fd5b506102e0601481565b34801561038457600080fd5b506102e0610393366004611fa3565b610b7a565b3480156103a457600080fd5b506102536103b3366004611f5a565b610bdc565b3480156103c457600080fd5b50600c5461021e9060ff1681565b3480156103de57600080fd5b506102976103ed366004611fa3565b610c19565b3480156103fe57600080fd5b506102e0600a5481565b34801561041457600080fd5b5061026a610c2b565b34801561042957600080fd5b506102e0610438366004611da4565b610cb9565b34801561044957600080fd5b50610253610d4a565b34801561045e57600080fd5b506007546001600160a01b0316610297565b34801561047c57600080fd5b5061025361048b366004611fa3565b610d80565b34801561049c57600080fd5b506102536104ab366004611f5a565b610daf565b3480156104bc57600080fd5b5061026a610dec565b3480156104d157600080fd5b506102e0600b5481565b6102536104e9366004611fa3565b610dfb565b3480156104fa57600080fd5b50610253610509366004611eb1565b61101a565b34801561051a57600080fd5b50610253610529366004611e35565b6110df565b34801561053a57600080fd5b5061026a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056b57600080fd5b5061026a61057a366004611fa3565b611118565b34801561058b57600080fd5b5061029773a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105b357600080fd5b5061026a6111e4565b3480156105c857600080fd5b5061021e6105d7366004611dc6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061157600080fd5b50610253610620366004611da4565b6111f1565b34801561063157600080fd5b50610253610640366004611fa3565b61128c565b60006001600160e01b031982166380ac58cd60e01b148061067657506001600160e01b03198216635b5e139f60e01b145b8061069157506001600160e01b0319821663780e9d6360e01b145b806106ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106e55760405162461bcd60e51b81526004016106dc906120fb565b60405180910390fd5b600c805460ff1916911515919091179055565b60606001805461070790612253565b80601f016020809104026020016040519081016040528092919081815260200182805461073390612253565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610797826000541190565b6107f95760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106dc565b506000908152600560205260409020546001600160a01b031690565b600061082082610c19565b9050806001600160a01b0316836001600160a01b0316141561088f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106dc565b336001600160a01b03821614806108ab57506108ab81336105d7565b61091d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106dc565b6109288383836112bb565b505050565b610928838383611317565b600061094383610cb9565b821061099c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106dc565b600080549080805b83811015610a46576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109f757805192505b876001600160a01b0316836001600160a01b03161415610a335786841415610a25575093506106ac92505050565b83610a2f8161228e565b9450505b5080610a3e8161228e565b9150506109a4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106dc565b6007546001600160a01b03163314610ad05760405162461bcd60e51b81526004016106dc906120fb565b6040514790600090339083908381818185875af1925050503d8060008114610b14576040519150601f19603f3d011682016040523d82523d6000602084013e610b19565b606091505b5050905080610b5b5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016106dc565b5050565b610928838383604051806020016040528060008152506110df565b600080548210610bd85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106dc565b5090565b6007546001600160a01b03163314610c065760405162461bcd60e51b81526004016106dc906120fb565b8051610b5b906008906020840190611c72565b6000610c248261165e565b5192915050565b60088054610c3890612253565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6490612253565b8015610cb15780601f10610c8657610100808354040283529160200191610cb1565b820191906000526020600020905b815481529060010190602001808311610c9457829003601f168201915b505050505081565b60006001600160a01b038216610d255760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106dc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d745760405162461bcd60e51b81526004016106dc906120fb565b610d7e600061173e565b565b6007546001600160a01b03163314610daa5760405162461bcd60e51b81526004016106dc906120fb565b600b55565b6007546001600160a01b03163314610dd95760405162461bcd60e51b81526004016106dc906120fb565b8051610b5b906009906020840190611c72565b60606002805461070790612253565b600c54339060ff1615610e395760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106dc565b81610e4360005490565b610e4d91906121ae565b600a541015610e935760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016106dc565b60008211610ed05760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016106dc565b326001600160a01b03821614610f175760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016106dc565b60005461177010610f71578160141015610f6c5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b60448201526064016106dc565b611010565b8160141015610fbb5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016106dc565b34600b5483610fca91906121da565b146110105760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106dc565b610b5b8183611790565b6001600160a01b0382163314156110735760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106dc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ea848484611317565b6110f6848484846117aa565b6111125760405162461bcd60e51b81526004016106dc90612130565b50505050565b6060611125826000541190565b6111695760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106dc565b60006008805461117890612253565b90501161119457604051806020016040528060008152506106ac565b600861119f836118b8565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016111cf93929190612004565b60405160208183030381529060405292915050565b60098054610c3890612253565b6007546001600160a01b0316331461121b5760405162461bcd60e51b81526004016106dc906120fb565b6001600160a01b0381166112805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dc565b6112898161173e565b50565b6007546001600160a01b031633146112b65760405162461bcd60e51b81526004016106dc906120fb565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113228261165e565b80519091506000906001600160a01b0316336001600160a01b0316148061135957503361134e8461078a565b6001600160a01b0316145b8061136b5750815161136b90336105d7565b9050806113d55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106dc565b846001600160a01b031682600001516001600160a01b0316146114495760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106dc565b6001600160a01b0384166114ad5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106dc565b6114bd60008484600001516112bb565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906115829085906121ae565b6000818152600360205260409020549091506001600160a01b0316611614576115ac816000541190565b156116145760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261167d826000541190565b6116dc5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106dc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561172b579392505050565b50806117368161223c565b9150506116de565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b5b8282604051806020016040528060008152506119b6565b60006001600160a01b0384163b156118ac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ee9033908990889088906004016120b5565b602060405180830381600087803b15801561180857600080fd5b505af1925050508015611838575060408051601f3d908101601f1916820190925261183591810190611f3d565b60015b611892573d808015611866576040519150601f19603f3d011682016040523d82523d6000602084013e61186b565b606091505b50805161188a5760405162461bcd60e51b81526004016106dc90612130565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b0565b5060015b949350505050565b6060816118dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190657806118f08161228e565b91506118ff9050600a836121c6565b91506118e0565b60008167ffffffffffffffff811115611921576119216122ff565b6040519080825280601f01601f19166020018201604052801561194b576020820181803683370190505b5090505b84156118b0576119606001836121f9565b915061196d600a866122a9565b6119789060306121ae565b60f81b81838151811061198d5761198d6122e9565b60200101906001600160f81b031916908160001a9053506119af600a866121c6565b945061194f565b6000546001600160a01b038416611a195760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dc565b611a24816000541190565b15611a715760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106dc565b60008311611acd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016106dc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b29908790612183565b6001600160801b03168152602001858360200151611b479190612183565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c2b60008884886117aa565b611c475760405162461bcd60e51b81526004016106dc90612130565b81611c518161228e565b9250508080611c5f9061228e565b915050611bde565b506000819055611656565b828054611c7e90612253565b90600052602060002090601f016020900481019282611ca05760008555611ce6565b82601f10611cb957805160ff1916838001178555611ce6565b82800160010185558215611ce6579182015b82811115611ce6578251825591602001919060010190611ccb565b50610bd89291505b80821115610bd85760008155600101611cee565b600067ffffffffffffffff80841115611d1d57611d1d6122ff565b604051601f8501601f19908116603f01168101908282118183101715611d4557611d456122ff565b81604052809350858152868686011115611d5e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d8f57600080fd5b919050565b80358015158114611d8f57600080fd5b600060208284031215611db657600080fd5b611dbf82611d78565b9392505050565b60008060408385031215611dd957600080fd5b611de283611d78565b9150611df060208401611d78565b90509250929050565b600080600060608486031215611e0e57600080fd5b611e1784611d78565b9250611e2560208501611d78565b9150604084013590509250925092565b60008060008060808587031215611e4b57600080fd5b611e5485611d78565b9350611e6260208601611d78565b925060408501359150606085013567ffffffffffffffff811115611e8557600080fd5b8501601f81018713611e9657600080fd5b611ea587823560208401611d02565b91505092959194509250565b60008060408385031215611ec457600080fd5b611ecd83611d78565b9150611df060208401611d94565b60008060408385031215611eee57600080fd5b611ef783611d78565b946020939093013593505050565b600060208284031215611f1757600080fd5b611dbf82611d94565b600060208284031215611f3257600080fd5b8135611dbf81612315565b600060208284031215611f4f57600080fd5b8151611dbf81612315565b600060208284031215611f6c57600080fd5b813567ffffffffffffffff811115611f8357600080fd5b8201601f81018413611f9457600080fd5b6118b084823560208401611d02565b600060208284031215611fb557600080fd5b5035919050565b60008151808452611fd4816020860160208601612210565b601f01601f19169290920160200192915050565b60008151611ffa818560208601612210565b9290920192915050565b600080855481600182811c91508083168061202057607f831692505b602080841082141561204057634e487b7160e01b86526022600452602486fd5b818015612054576001811461206557612092565b60ff19861689528489019650612092565b60008c81526020902060005b8681101561208a5781548b820152908501908301612071565b505084890196505b5050505050506120ab6120a58287611fe8565b85611fe8565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ab90830184611fbc565b602081526000611dbf6020830184611fbc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121a5576121a56122bd565b01949350505050565b600082198211156121c1576121c16122bd565b500190565b6000826121d5576121d56122d3565b500490565b60008160001904831182151516156121f4576121f46122bd565b500290565b60008282101561220b5761220b6122bd565b500390565b60005b8381101561222b578181015183820152602001612213565b838111156111125750506000910152565b60008161224b5761224b6122bd565b506000190190565b600181811c9082168061226757607f821691505b6020821081141561228857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122a2576122a26122bd565b5060010190565b6000826122b8576122b86122d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461128957600080fdfea2646970667358221220c8b682e9496c61542894460208ce5ddde6dd99c495991f964cb2a1c1debeb74764736f6c63430008070033

Deployed Bytecode Sourcemap

38083:2365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26097:372;;;;;;;;;;-1:-1:-1;26097:372:0;;;;;:::i;:::-;;:::i;:::-;;;7082:14:1;;7075:22;7057:41;;7045:2;7030:18;26097:372:0;;;;;;;;39572:81;;;;;;;;;;-1:-1:-1;39572:81:0;;;;;:::i;:::-;;:::i;:::-;;27724:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29285:214::-;;;;;;;;;;-1:-1:-1;29285:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6380:32:1;;;6362:51;;6350:2;6335:18;29285:214:0;6216:203:1;28806:413:0;;;;;;;;;;-1:-1:-1;28806:413:0;;;;;:::i;:::-;;:::i;24538:100::-;;;;;;;;;;-1:-1:-1;24591:7:0;24618:12;24538:100;;;18229:25:1;;;18217:2;18202:18;24538:100:0;18083:177:1;30161:162:0;;;;;;;;;;-1:-1:-1;30161:162:0;;;;;:::i;:::-;;:::i;25202:823::-;;;;;;;;;;-1:-1:-1;25202:823:0;;;;;:::i;:::-;;:::i;39355:209::-;;;;;;;;;;;;;:::i;30394:177::-;;;;;;;;;;-1:-1:-1;30394:177:0;;;;;:::i;:::-;;:::i;38417:39::-;;;;;;;;;;;;38454:2;38417:39;;24715:187;;;;;;;;;;-1:-1:-1;24715:187:0;;;;;:::i;:::-;;:::i;39661:100::-;;;;;;;;;;-1:-1:-1;39661:100:0;;;;;:::i;:::-;;:::i;38600:26::-;;;;;;;;;;-1:-1:-1;38600:26:0;;;;;;;;27533:124;;;;;;;;;;-1:-1:-1;27533:124:0;;;;;:::i;:::-;;:::i;38517:32::-;;;;;;;;;;;;;;;;38138:33;;;;;;;;;;;;;:::i;26533:221::-;;;;;;;;;;-1:-1:-1;26533:221:0;;;;;:::i;:::-;;:::i;2575:103::-;;;;;;;;;;;;;:::i;1924:87::-;;;;;;;;;;-1:-1:-1;1997:6:0;;-1:-1:-1;;;;;1997:6:0;1924:87;;39889:84;;;;;;;;;;-1:-1:-1;39889:84:0;;;;;:::i;:::-;;:::i;39769:116::-;;;;;;;;;;-1:-1:-1;39769:116:0;;;;;:::i;:::-;;:::i;27893:104::-;;;;;;;;;;;;;:::i;38556:35::-;;;;;;;;;;;;;;;;38694:649;;;;;;:::i;:::-;;:::i;29571:288::-;;;;;;;;;;-1:-1:-1;29571:288:0;;;;;:::i;:::-;;:::i;30642:355::-;;;;;;;;;;-1:-1:-1;30642:355:0;;;;;:::i;:::-;;:::i;38222:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38222:46:0;;;;;40083:362;;;;;;;;;;-1:-1:-1;40083:362:0;;;;;:::i;:::-;;:::i;38275:89::-;;;;;;;;;;;;38322:42;38275:89;;38178:37;;;;;;;;;;;;;:::i;29930:164::-;;;;;;;;;;-1:-1:-1;29930:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30051:25:0;;;30027:4;30051:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29930:164;2833:201;;;;;;;;;;-1:-1:-1;2833:201:0;;;;;:::i;:::-;;:::i;39977:96::-;;;;;;;;;;-1:-1:-1;39977:96:0;;;;;:::i;:::-;;:::i;26097:372::-;26199:4;-1:-1:-1;;;;;;26236:40:0;;-1:-1:-1;;;26236:40:0;;:105;;-1:-1:-1;;;;;;;26293:48:0;;-1:-1:-1;;;26293:48:0;26236:105;:172;;;-1:-1:-1;;;;;;;26358:50:0;;-1:-1:-1;;;26358:50:0;26236:172;:225;;;-1:-1:-1;;;;;;;;;;22710:40:0;;;26425:36;26216:245;26097:372;-1:-1:-1;;26097:372:0:o;39572:81::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;;;;;;;;;39630:6:::1;:15:::0;;-1:-1:-1;;39630:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39572:81::o;27724:100::-;27778:13;27811:5;27804:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27724:100;:::o;29285:214::-;29353:7;29381:16;29389:7;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;29381:16;29373:74;;;;-1:-1:-1;;;29373:74:0;;17530:2:1;29373:74:0;;;17512:21:1;17569:2;17549:18;;;17542:30;17608:34;17588:18;;;17581:62;-1:-1:-1;;;17659:18:1;;;17652:43;17712:19;;29373:74:0;17328:409:1;29373:74:0;-1:-1:-1;29467:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29467:24:0;;29285:214::o;28806:413::-;28879:13;28895:24;28911:7;28895:15;:24::i;:::-;28879:40;;28944:5;-1:-1:-1;;;;;28938:11:0;:2;-1:-1:-1;;;;;28938:11:0;;;28930:58;;;;-1:-1:-1;;;28930:58:0;;14369:2:1;28930:58:0;;;14351:21:1;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;-1:-1:-1;;;14498:18:1;;;14491:32;14540:19;;28930:58:0;14167:398:1;28930:58:0;745:10;-1:-1:-1;;;;;29023:21:0;;;;:62;;-1:-1:-1;29048:37:0;29065:5;745:10;29930:164;:::i;29048:37::-;29001:169;;;;-1:-1:-1;;;29001:169:0;;10941:2:1;29001:169:0;;;10923:21:1;10980:2;10960:18;;;10953:30;11019:34;10999:18;;;10992:62;11090:27;11070:18;;;11063:55;11135:19;;29001:169:0;10739:421:1;29001:169:0;29183:28;29192:2;29196:7;29205:5;29183:8;:28::i;:::-;28868:351;28806:413;;:::o;30161:162::-;30287:28;30297:4;30303:2;30307:7;30287:9;:28::i;25202:823::-;25291:7;25327:16;25337:5;25327:9;:16::i;:::-;25319:5;:24;25311:71;;;;-1:-1:-1;;;25311:71:0;;7535:2:1;25311:71:0;;;7517:21:1;7574:2;7554:18;;;7547:30;7613:34;7593:18;;;7586:62;-1:-1:-1;;;7664:18:1;;;7657:32;7706:19;;25311:71:0;7333:398:1;25311:71:0;25393:22;24618:12;;;25393:22;;25525:426;25549:14;25545:1;:18;25525:426;;;25585:31;25619:14;;;:11;:14;;;;;;;;;25585:48;;;;;;;;;-1:-1:-1;;;;;25585:48:0;;;;;-1:-1:-1;;;25585:48:0;;;;;;;;;;;;25652:28;25648:103;;25721:14;;;-1:-1:-1;25648:103:0;25790:5;-1:-1:-1;;;;;25769:26:0;:17;-1:-1:-1;;;;;25769:26:0;;25765:175;;;25835:5;25820:11;:20;25816:77;;;-1:-1:-1;25872:1:0;-1:-1:-1;25865:8:0;;-1:-1:-1;;;25865:8:0;25816:77;25911:13;;;;:::i;:::-;;;;25765:175;-1:-1:-1;25565:3:0;;;;:::i;:::-;;;;25525:426;;;-1:-1:-1;25961:56:0;;-1:-1:-1;;;25961:56:0;;16699:2:1;25961:56:0;;;16681:21:1;16738:2;16718:18;;;16711:30;16777:34;16757:18;;;16750:62;-1:-1:-1;;;16828:18:1;;;16821:44;16882:19;;25961:56:0;16497:410:1;39355:209:0;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39474:37:::1;::::0;39423:21:::1;::::0;39405:15:::1;::::0;745:10;;39423:21;;39405:15;39474:37;39405:15;39474:37;39423:21;745:10;39474:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39455:56;;;39530:7;39522:34;;;::::0;-1:-1:-1;;;39522:34:0;;16356:2:1;39522:34:0::1;::::0;::::1;16338:21:1::0;16395:2;16375:18;;;16368:30;-1:-1:-1;;;16414:18:1;;;16407:44;16468:18;;39522:34:0::1;16154:338:1::0;39522:34:0::1;39394:170;;39355:209::o:0;30394:177::-;30524:39;30541:4;30547:2;30551:7;30524:39;;;;;;;;;;;;:16;:39::i;24715:187::-;24782:7;24618:12;;24810:5;:21;24802:69;;;;-1:-1:-1;;;24802:69:0;;9780:2:1;24802:69:0;;;9762:21:1;9819:2;9799:18;;;9792:30;9858:34;9838:18;;;9831:62;-1:-1:-1;;;9909:18:1;;;9902:33;9952:19;;24802:69:0;9578:399:1;24802:69:0;-1:-1:-1;24889:5:0;24715:187::o;39661:100::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39735:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;27533:124::-:0;27597:7;27624:20;27636:7;27624:11;:20::i;:::-;:25;;27533:124;-1:-1:-1;;27533:124:0:o;38138:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26533:221::-;26597:7;-1:-1:-1;;;;;26625:19:0;;26617:75;;;;-1:-1:-1;;;26617:75:0;;11714:2:1;26617:75:0;;;11696:21:1;11753:2;11733:18;;;11726:30;11792:34;11772:18;;;11765:62;-1:-1:-1;;;11843:18:1;;;11836:41;11894:19;;26617:75:0;11512:407:1;26617:75:0;-1:-1:-1;;;;;;26718:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26718:27:0;;26533:221::o;2575:103::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;2640:30:::1;2667:1;2640:18;:30::i;:::-;2575:103::o:0;39889:84::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39953:5:::1;:16:::0;39889:84::o;39769:116::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39851:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;27893:104::-:0;27949:13;27982:7;27975:14;;;;;:::i;38694:649::-;38803:6;;745:10;;38803:6;;38802:7;38794:26;;;;-1:-1:-1;;;38794:26:0;;7938:2:1;38794:26:0;;;7920:21:1;7977:1;7957:18;;;7950:29;-1:-1:-1;;;7995:18:1;;;7988:36;8041:18;;38794:26:0;7736:329:1;38794:26:0;38869:7;38853:13;24591:7;24618:12;;24538:100;38853:13;:23;;;;:::i;:::-;38839:10;;:37;;38831:68;;;;-1:-1:-1;;;38831:68:0;;11367:2:1;38831:68:0;;;11349:21:1;11406:2;11386:18;;;11379:30;-1:-1:-1;;;11425:18:1;;;11418:48;11483:18;;38831:68:0;11165:342:1;38831:68:0;38928:1;38918:7;:11;38910:34;;;;-1:-1:-1;;;38910:34:0;;9090:2:1;38910:34:0;;;9072:21:1;9129:2;9109:18;;;9102:30;-1:-1:-1;;;9148:18:1;;;9141:40;9198:18;;38910:34:0;8888:334:1;38910:34:0;38963:9;-1:-1:-1;;;;;38963:20:0;;;38955:45;;;;-1:-1:-1;;;38955:45:0;;17944:2:1;38955:45:0;;;17926:21:1;17983:2;17963:18;;;17956:30;-1:-1:-1;;;18002:18:1;;;17995:42;18054:18;;38955:45:0;17742:336:1;38955:45:0;24591:7;24618:12;38506:4;39016:32;39013:283;;39083:7;38408:2;39072:18;;39064:54;;;;-1:-1:-1;;;39064:54:0;;10590:2:1;39064:54:0;;;10572:21:1;10629:2;10609:18;;;10602:30;-1:-1:-1;;;10648:18:1;;;10641:52;10710:18;;39064:54:0;10388:346:1;39064:54:0;39013:283;;;39171:7;38454:2;39157:21;;39149:57;;;;-1:-1:-1;;;39149:57:0;;9429:2:1;39149:57:0;;;9411:21:1;9468:2;9448:18;;;9441:30;-1:-1:-1;;;9487:18:1;;;9480:52;9549:18;;39149:57:0;9227:346:1;39149:57:0;39248:9;39239:5;;39229:7;:15;;;;:::i;:::-;:28;39221:63;;;;-1:-1:-1;;;39221:63:0;;14018:2:1;39221:63:0;;;14000:21:1;14057:2;14037:18;;;14030:30;-1:-1:-1;;;14076:18:1;;;14069:52;14138:18;;39221:63:0;13816:346:1;39221:63:0;39308:27;39318:7;39327;39308:9;:27::i;29571:288::-;-1:-1:-1;;;;;29666:24:0;;745:10;29666:24;;29658:63;;;;-1:-1:-1;;;29658:63:0;;13244:2:1;29658:63:0;;;13226:21:1;13283:2;13263:18;;;13256:30;13322:28;13302:18;;;13295:56;13368:18;;29658:63:0;13042:350:1;29658:63:0;745:10;29734:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29734:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29734:53:0;;;;;;;;;;29803:48;;7057:41:1;;;29734:42:0;;745:10;29803:48;;7030:18:1;29803:48:0;;;;;;;29571:288;;:::o;30642:355::-;30801:28;30811:4;30817:2;30821:7;30801:9;:28::i;:::-;30862:48;30885:4;30891:2;30895:7;30904:5;30862:22;:48::i;:::-;30840:149;;;;-1:-1:-1;;;30840:149:0;;;;;;;:::i;:::-;30642:355;;;;:::o;40083:362::-;40149:13;40183:17;40191:8;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;40183:17;40175:51;;;;-1:-1:-1;;;40175:51:0;;12126:2:1;40175:51:0;;;12108:21:1;12165:2;12145:18;;;12138:30;-1:-1:-1;;;12184:18:1;;;12177:51;12245:18;;40175:51:0;11924:345:1;40175:51:0;40268:1;40250:7;40244:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;40326:7;40350:26;40367:8;40350:16;:26::i;:::-;40393:13;;;;;;;;;;;;;-1:-1:-1;;;40393:13:0;;;40293:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40237:200;40083:362;-1:-1:-1;;40083:362:0:o;38178:37::-;;;;;;;:::i;2833:201::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2922:22:0;::::1;2914:73;;;::::0;-1:-1:-1;;;2914:73:0;;8272:2:1;2914:73:0::1;::::0;::::1;8254:21:1::0;8311:2;8291:18;;;8284:30;8350:34;8330:18;;;8323:62;-1:-1:-1;;;8401:18:1;;;8394:36;8447:19;;2914:73:0::1;8070:402:1::0;2914:73:0::1;2998:28;3017:8;2998:18;:28::i;:::-;2833:201:::0;:::o;39977:96::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;40047:10:::1;:22:::0;39977:96::o;35294:196::-;35409:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35409:29:0;-1:-1:-1;;;;;35409:29:0;;;;;;;;;35454:28;;35409:24;;35454:28;;;;;;;35294:196;;;:::o;33393:1783::-;33508:35;33546:20;33558:7;33546:11;:20::i;:::-;33621:18;;33508:58;;-1:-1:-1;33579:22:0;;-1:-1:-1;;;;;33605:34:0;745:10;-1:-1:-1;;;;;33605:34:0;;:87;;;-1:-1:-1;745:10:0;33656:20;33668:7;33656:11;:20::i;:::-;-1:-1:-1;;;;;33656:36:0;;33605:87;:154;;;-1:-1:-1;33726:18:0;;33709:50;;745:10;29930:164;:::i;33709:50::-;33579:181;;33781:17;33773:80;;;;-1:-1:-1;;;33773:80:0;;13599:2:1;33773:80:0;;;13581:21:1;13638:2;13618:18;;;13611:30;13677:34;13657:18;;;13650:62;-1:-1:-1;;;13728:18:1;;;13721:48;13786:19;;33773:80:0;13397:414:1;33773:80:0;33896:4;-1:-1:-1;;;;;33874:26:0;:13;:18;;;-1:-1:-1;;;;;33874:26:0;;33866:77;;;;-1:-1:-1;;;33866:77:0;;12476:2:1;33866:77:0;;;12458:21:1;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:1;;;12598:36;12651:19;;33866:77:0;12274:402:1;33866:77:0;-1:-1:-1;;;;;33962:16:0;;33954:66;;;;-1:-1:-1;;;33954:66:0;;10184:2:1;33954:66:0;;;10166:21:1;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:1;;;10306:35;10358:19;;33954:66:0;9982:401:1;33954:66:0;34141:49;34158:1;34162:7;34171:13;:18;;;34141:8;:49::i;:::-;-1:-1:-1;;;;;34395:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34395:31:0;;;-1:-1:-1;;;;;34395:31:0;;;-1:-1:-1;;34395:31:0;;;;;;;34441:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34441:29:0;;;;;;;;;;;;;34517:43;;;;;;;;;;34543:15;34517:43;;;;;;;;;;34494:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;34494:66:0;;;;;;;-1:-1:-1;;;34494:66:0;;;;;;;;;;;;34395:18;34822:11;;34494:20;;34822:11;:::i;:::-;34889:1;34848:24;;;:11;:24;;;;;:29;34800:33;;-1:-1:-1;;;;;;34848:29:0;34844:227;;34912:20;34920:11;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;34912:20;34908:152;;;34980:64;;;;;;;;34995:18;;-1:-1:-1;;;;;34980:64:0;;;;;;35015:28;;;;34980:64;;;;;;;;;;-1:-1:-1;34953:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;34953:91:0;-1:-1:-1;;;;;;34953:91:0;;;;;;;;;;;;34908:152;35107:7;35103:2;-1:-1:-1;;;;;35088:27:0;35097:4;-1:-1:-1;;;;;35088:27:0;;;;;;;;;;;35126:42;33497:1679;;;33393:1783;;;:::o;26999:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;27102:16:0;27110:7;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;27102:16;27094:71;;;;-1:-1:-1;;;27094:71:0;;8679:2:1;27094:71:0;;;8661:21:1;8718:2;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;-1:-1:-1;;;8808:18:1;;;8801:40;8858:19;;27094:71:0;8477:406:1;27094:71:0;27198:7;27178:216;27232:31;27266:17;;;:11;:17;;;;;;;;;27232:51;;;;;;;;;-1:-1:-1;;;;;27232:51:0;;;;;-1:-1:-1;;;27232:51:0;;;;;;;;;;;;27302:28;27298:85;;27358:9;26999:472;-1:-1:-1;;;26999:472:0:o;27298:85::-;-1:-1:-1;27209:6:0;;;;:::i;:::-;;;;27178:216;;3194:191;3287:6;;;-1:-1:-1;;;;;3304:17:0;;;-1:-1:-1;;;;;;3304:17:0;;;;;;;3337:40;;3287:6;;;3304:17;3287:6;;3337:40;;3268:16;;3337:40;3257:128;3194:191;:::o;31371:104::-;31440:27;31450:2;31454:8;31440:27;;;;;;;;;;;;:9;:27::i;36055:804::-;36210:4;-1:-1:-1;;;;;36231:13:0;;14816:20;14864:8;36227:625;;36267:72;;-1:-1:-1;;;36267:72:0;;-1:-1:-1;;;;;36267:36:0;;;;;:72;;745:10;;36318:4;;36324:7;;36333:5;;36267:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36267:72:0;;;;;;;;-1:-1:-1;;36267:72:0;;;;;;;;;;;;:::i;:::-;;;36263:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36513:13:0;;36509:273;;36556:61;;-1:-1:-1;;;36556:61:0;;;;;;;:::i;36509:273::-;36732:6;36726:13;36717:6;36713:2;36709:15;36702:38;36263:534;-1:-1:-1;;;;;;36390:55:0;-1:-1:-1;;;36390:55:0;;-1:-1:-1;36383:62:0;;36227:625;-1:-1:-1;36836:4:0;36227:625;36055:804;;;;;;:::o;3742:723::-;3798:13;4019:10;4015:53;;-1:-1:-1;;4046:10:0;;;;;;;;;;;;-1:-1:-1;;;4046:10:0;;;;;3742:723::o;4015:53::-;4093:5;4078:12;4134:78;4141:9;;4134:78;;4167:8;;;;:::i;:::-;;-1:-1:-1;4190:10:0;;-1:-1:-1;4198:2:0;4190:10;;:::i;:::-;;;4134:78;;;4222:19;4254:6;4244:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4244:17:0;;4222:39;;4272:154;4279:10;;4272:154;;4306:11;4316:1;4306:11;;:::i;:::-;;-1:-1:-1;4375:10:0;4383:2;4375:5;:10;:::i;:::-;4362:24;;:2;:24;:::i;:::-;4349:39;;4332:6;4339;4332:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4332:56:0;;;;;;;;-1:-1:-1;4403:11:0;4412:2;4403:11;;:::i;:::-;;;4272:154;;31752:1387;31875:20;31898:12;-1:-1:-1;;;;;31929:16:0;;31921:62;;;;-1:-1:-1;;;31921:62:0;;15954:2:1;31921:62:0;;;15936:21:1;15993:2;15973:18;;;15966:30;16032:34;16012:18;;;16005:62;-1:-1:-1;;;16083:18:1;;;16076:31;16124:19;;31921:62:0;15752:397:1;31921:62:0;32128:21;32136:12;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;32128:21;32127:22;32119:64;;;;-1:-1:-1;;;32119:64:0;;15596:2:1;32119:64:0;;;15578:21:1;15635:2;15615:18;;;15608:30;15674:31;15654:18;;;15647:59;15723:18;;32119:64:0;15394:353:1;32119:64:0;32213:1;32202:8;:12;32194:60;;;;-1:-1:-1;;;32194:60:0;;14772:2:1;32194:60:0;;;14754:21:1;14811:2;14791:18;;;14784:30;14850:34;14830:18;;;14823:62;-1:-1:-1;;;14901:18:1;;;14894:33;14944:19;;32194:60:0;14570:399:1;32194:60:0;-1:-1:-1;;;;;32374:16:0;;32341:30;32374:16;;;:12;:16;;;;;;;;;32341:49;;;;;;;;;-1:-1:-1;;;;;32341:49:0;;;;;-1:-1:-1;;;32341:49:0;;;;;;;;;;;32420:135;;;;;;;;32446:19;;32341:49;;32420:135;;;32446:39;;32476:8;;32446:39;:::i;:::-;-1:-1:-1;;;;;32420:135:0;;;;;32535:8;32500:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32420:135:0;;;;;;-1:-1:-1;;;;;32401:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;32401:154:0;;;;;;;;;;;;32594:43;;;;;;;;;;;32620:15;32594:43;;;;;;;;32566:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32566:71:0;-1:-1:-1;;;;;;32566:71:0;;;;;;;;;;;;;;;;;;32578:12;;32698:325;32722:8;32718:1;:12;32698:325;;;32757:38;;32782:12;;-1:-1:-1;;;;;32757:38:0;;;32774:1;;32757:38;;32774:1;;32757:38;32836:59;32867:1;32871:2;32875:12;32889:5;32836:22;:59::i;:::-;32810:172;;;;-1:-1:-1;;;32810:172:0;;;;;;;:::i;:::-;32997:14;;;;:::i;:::-;;;;32732:3;;;;;:::i;:::-;;;;32698:325;;;-1:-1:-1;33033:12:0;:27;;;33071:60;30642:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4752:1249::-;4976:3;5005:1;5038:6;5032:13;5068:3;5090:1;5118:9;5114:2;5110:18;5100:28;;5178:2;5167:9;5163:18;5200;5190:61;;5244:4;5236:6;5232:17;5222:27;;5190:61;5270:2;5318;5310:6;5307:14;5287:18;5284:38;5281:165;;;-1:-1:-1;;;5345:33:1;;5401:4;5398:1;5391:15;5431:4;5352:3;5419:17;5281:165;5462:18;5489:104;;;;5607:1;5602:320;;;;5455:467;;5489:104;-1:-1:-1;;5522:24:1;;5510:37;;5567:16;;;;-1:-1:-1;5489:104:1;;5602:320;18338:1;18331:14;;;18375:4;18362:18;;5697:1;5711:165;5725:6;5722:1;5719:13;5711:165;;;5803:14;;5790:11;;;5783:35;5846:16;;;;5740:10;;5711:165;;;5715:3;;5905:6;5900:3;5896:16;5889:23;;5455:467;;;;;;;5938:57;5964:30;5990:3;5982:6;5964:30;:::i;:::-;5956:6;5938:57;:::i;:::-;5931:64;4752:1249;-1:-1:-1;;;;;;4752:1249:1:o;6424:488::-;-1:-1:-1;;;;;6693:15:1;;;6675:34;;6745:15;;6740:2;6725:18;;6718:43;6792:2;6777:18;;6770:34;;;6840:3;6835:2;6820:18;;6813:31;;;6618:4;;6861:45;;6886:19;;6878:6;6861:45;:::i;7109:219::-;7258:2;7247:9;7240:21;7221:4;7278:44;7318:2;7307:9;7303:18;7295:6;7278:44;:::i;12681:356::-;12883:2;12865:21;;;12902:18;;;12895:30;12961:34;12956:2;12941:18;;12934:62;13028:2;13013:18;;12681:356::o;14974:415::-;15176:2;15158:21;;;15215:2;15195:18;;;15188:30;15254:34;15249:2;15234:18;;15227:62;-1:-1:-1;;;15320:2:1;15305:18;;15298:49;15379:3;15364:19;;14974:415::o;18391:253::-;18431:3;-1:-1:-1;;;;;18520:2:1;18517:1;18513:10;18550:2;18547:1;18543:10;18581:3;18577:2;18573:12;18568:3;18565:21;18562:47;;;18589:18;;:::i;:::-;18625:13;;18391:253;-1:-1:-1;;;;18391:253:1:o;18649:128::-;18689:3;18720:1;18716:6;18713:1;18710:13;18707:39;;;18726:18;;:::i;:::-;-1:-1:-1;18762:9:1;;18649:128::o;18782:120::-;18822:1;18848;18838:35;;18853:18;;:::i;:::-;-1:-1:-1;18887:9:1;;18782:120::o;18907:168::-;18947:7;19013:1;19009;19005:6;19001:14;18998:1;18995:21;18990:1;18983:9;18976:17;18972:45;18969:71;;;19020:18;;:::i;:::-;-1:-1:-1;19060:9:1;;18907:168::o;19080:125::-;19120:4;19148:1;19145;19142:8;19139:34;;;19153:18;;:::i;:::-;-1:-1:-1;19190:9:1;;19080:125::o;19210:258::-;19282:1;19292:113;19306:6;19303:1;19300:13;19292:113;;;19382:11;;;19376:18;19363:11;;;19356:39;19328:2;19321:10;19292:113;;;19423:6;19420:1;19417:13;19414:48;;;-1:-1:-1;;19458:1:1;19440:16;;19433:27;19210:258::o;19473:136::-;19512:3;19540:5;19530:39;;19549:18;;:::i;:::-;-1:-1:-1;;;19585:18:1;;19473:136::o;19614:380::-;19693:1;19689:12;;;;19736;;;19757:61;;19811:4;19803:6;19799:17;19789:27;;19757:61;19864:2;19856:6;19853:14;19833:18;19830:38;19827:161;;;19910:10;19905:3;19901:20;19898:1;19891:31;19945:4;19942:1;19935:15;19973:4;19970:1;19963:15;19827:161;;19614:380;;;:::o;19999:135::-;20038:3;-1:-1:-1;;20059:17:1;;20056:43;;;20079:18;;:::i;:::-;-1:-1:-1;20126:1:1;20115:13;;19999:135::o;20139:112::-;20171:1;20197;20187:35;;20202:18;;:::i;:::-;-1:-1:-1;20236:9:1;;20139:112::o;20256:127::-;20317:10;20312:3;20308:20;20305:1;20298:31;20348:4;20345:1;20338:15;20372:4;20369:1;20362:15;20388:127;20449:10;20444:3;20440:20;20437:1;20430:31;20480:4;20477:1;20470:15;20504:4;20501:1;20494:15;20520:127;20581:10;20576:3;20572:20;20569:1;20562:31;20612:4;20609:1;20602:15;20636:4;20633:1;20626:15;20652:127;20713:10;20708:3;20704:20;20701:1;20694:31;20744:4;20741:1;20734:15;20768:4;20765:1;20758:15;20784:131;-1:-1:-1;;;;;;20858:32:1;;20848:43;;20838:71;;20905:1;20902;20895:12

Swarm Source

ipfs://c8b682e9496c61542894460208ce5ddde6dd99c495991f964cb2a1c1debeb747
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.