ETH Price: $2,519.13 (+2.31%)

Token

Fungi Queendom (FUNGI)
 

Overview

Max Total Supply

260 FUNGI

Holders

142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FUNGI
0x626e0628b53e9920f33b9c2f1f06406dd333a4a8
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:
FUNGI

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 2021-11-11
*/

// SPDX-License-Identifier: MIT


/* 

contract created by
                          __                                                    __ 
                         |  \                                                  |  \
 ______ ____    ______  _| $$_     ______    _______   ______    ______    ____| $$
|      \    \  /      \|   $$ \   |      \  /       \ /      \  /      \  /      $$
| $$$$$$\$$$$\|  $$$$$$\\$$$$$$    \$$$$$$\|  $$$$$$$|  $$$$$$\|  $$$$$$\|  $$$$$$$
| $$ | $$ | $$| $$    $$ | $$ __  /      $$ \$$    \ | $$    $$| $$    $$| $$  | $$
| $$ | $$ | $$| $$$$$$$$ | $$|  \|  $$$$$$$ _\$$$$$$\| $$$$$$$$| $$$$$$$$| $$__| $$
| $$ | $$ | $$ \$$     \  \$$  $$ \$$    $$|       $$ \$$     \ \$$     \ \$$    $$
 \$$  \$$  \$$  \$$$$$$$   \$$$$   \$$$$$$$ \$$$$$$$   \$$$$$$$  \$$$$$$$  \$$$$$$$
                                                                                  
                     __  __                        __      __                      
                    |  \|  \                      |  \    |  \                     
  _______   ______  | $$| $$  ______    _______  _| $$_    \$$ __     __   ______  
 /       \ /      \ | $$| $$ /      \  /       \|   $$ \  |  \|  \   /  \ /      \ 
|  $$$$$$$|  $$$$$$\| $$| $$|  $$$$$$\|  $$$$$$$ \$$$$$$  | $$ \$$\ /  $$|  $$$$$$\
| $$      | $$  | $$| $$| $$| $$    $$| $$        | $$ __ | $$  \$$\  $$ | $$    $$
| $$_____ | $$__/ $$| $$| $$| $$$$$$$$| $$_____   | $$|  \| $$   \$$ $$  | $$$$$$$$
 \$$     \ \$$    $$| $$| $$ \$$     \ \$$     \   \$$  $$| $$    \$$$    \$$     \
  \$$$$$$$  \$$$$$$  \$$ \$$  \$$$$$$$  \$$$$$$$    \$$$$  \$$     \$      \$$$$$$$


NFT Collective for Artists, Builders & Collectors
https://metaseed.art
 
*/                                                              

pragma solidity ^0.8.0;

/**
 * @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);
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol

pragma solidity ^0.8.0;

/**
 * @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;
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Receiver.sol

pragma solidity ^0.8.0;

/**
 * @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);
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @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);
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Address.sol

pragma solidity ^0.8.0;

/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: node_modules\openzeppelin-solidity\contracts\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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol

pragma solidity ^0.8.0;

/**
 * @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: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }
    
      

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @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);
}

// File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        {
            counter._value = value - 1;
        }
    }
}

// File: openzeppelin-solidity\contracts\access\Ownable.sol

pragma solidity ^0.8.0;

/**
 * @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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


pragma solidity ^0.8.0;

contract FUNGI is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    uint256 public constant FUNGI_PUBLIC = 1111;
    uint256 public maxTotal = 1111;
    uint256 public constant FUNGI_MAX = FUNGI_PUBLIC;
    uint256 public constant PURCHASE_LIMIT = 100;
    uint256 public allowListMaxMint = 5;
    uint256 public constant PRICE = 40_000_000_000_000_000; // 0.04 ETH
    string private _contractURI = "";
    string private _tokenBaseURI = "";
    bool private _isActive = false;
    bool public isAllowListActive = false;
    
    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _allowListClaimed;
    
    Counters.Counter private _publicFUNGI;

    constructor() ERC721("Fungi Queendom", "FUNGI") {
        
    }

    function setActive(bool isActive) external onlyOwner {
        _isActive = isActive;
       
    }

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

    function setBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    // minting
    function minting(address to, uint256 numberOfTokens)
        external
        payable
        onlyOwner 
        {
            require(
                _publicFUNGI.current() < FUNGI_PUBLIC,
                "Purchase would exceed FUNGI_PUBLIC"
            );
            
            for (uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = _publicFUNGI.current();
    
                if (_publicFUNGI.current() < FUNGI_PUBLIC) {
                    _publicFUNGI.increment();
                    _safeMint(to, tokenId);
                }
            }
    }
    
      function setIsAllowListActive(bool _isAllowListActive) external onlyOwner {
        isAllowListActive = _isAllowListActive;
      }
      
      function setTotal(uint256 total) external onlyOwner {
        maxTotal = total;
      }
    
      function setAllowListMaxMint(uint256 maxMint) external onlyOwner {
        allowListMaxMint = maxMint;
      }
      
      function addToAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
          require(addresses[i] != address(0), "Can't add the null address");
            
          
          _allowList[addresses[i]] = true;
          
          /**
          * @dev We don't want to reset _allowListClaimed count
          * if we try to add someone more than once.
          */
          _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
        }
      }
     
      
      function allowListClaimedBy(address owner) external view returns (uint256){
        require(owner != address(0), 'Zero address not on Allow List');
    
        return _allowListClaimed[owner];
      }
    
      function onAllowList(address addr) external view returns (bool) {
        return _allowList[addr];
      }
    
      function removeFromAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
          require(addresses[i] != address(0), "Can't add the null address");
    
          /// @dev We don't want to reset possible _allowListClaimed numbers.
          _allowList[addresses[i]] = false;
        }
      }
    
    function purchaseAllowList(uint256 numberOfTokens) external payable {
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 1 token"
        );
        
        require(isAllowListActive, 'Allow List is not active');
        require(_allowList[msg.sender], 'You are not on the Allow List');
        require(
            _publicFUNGI.current() < FUNGI_PUBLIC,
            "Purchase would exceed max"
        );
        require(numberOfTokens <= allowListMaxMint, 'Cannot purchase this many tokens');
        require(_allowListClaimed[msg.sender] + numberOfTokens <= allowListMaxMint, 'Purchase exceeds max allowed');
        require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');
        require(
            _publicFUNGI.current() < FUNGI_PUBLIC,
            "Purchase would exceed FUNGI_PUBLIC"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicFUNGI.current();

            if (_publicFUNGI.current() < maxTotal) {
                _publicFUNGI.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
      }

    function purchase(uint256 numberOfTokens) external payable {
        
        require(_isActive, "Contract is not active");
        
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 1 token"
        );
        require(
            _publicFUNGI.current() < FUNGI_PUBLIC,
            "Purchase would exceed FUNGI_PUBLIC"
        );
        require(
            PRICE * numberOfTokens <= msg.value,
            "ETH amount is not sufficient"
        );
        

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicFUNGI.current();

            if (_publicFUNGI.current() < maxTotal) {
                _publicFUNGI.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

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":"FUNGI_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUNGI_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","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":"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":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"minting","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"isActive","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"name":"setTotal","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"}]

610457600b556005600c5560a06040819052600060808190526200002691600d9162000137565b506040805160208101918290526000908190526200004791600e9162000137565b50600f805461ffff191690553480156200006057600080fd5b50604080518082018252600e81526d46756e676920517565656e646f6d60901b60208083019182528351808501909452600584526446554e474960d81b908401528151919291620000b49160009162000137565b508051620000ca90600190602084019062000137565b5050506000620000df6200013360201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200021a565b3390565b8280546200014590620001dd565b90600052602060002090601f016020900481019282620001695760008555620001b4565b82601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b5b80821115620001c25760008155600101620001c7565b600181811c90821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b612ab6806200022a6000396000f3fe6080604052600436106102455760003560e01c8063718bc4af11610139578063a22cb465116100b6578063d75e61101161007a578063d75e611014610683578063e8a3d48514610698578063e985e9c5146106ad578063efef39a1146106f6578063f23347f514610709578063f2fde38b1461071c57600080fd5b8063a22cb465146105e3578063a51312c814610603578063acec338a14610623578063b88d4fde14610643578063c87b56dd1461066357600080fd5b80638d859f3e116100fd5780638d859f3e146105755780638da5cb5b14610590578063938e3d7b146105ae57806395d89b41146105ce578063991982a41461050957600080fd5b8063718bc4af146104e957806371ba4380146105095780637263cfe21461051f5780637a6685f11461053f5780637f44ab2f1461055f57600080fd5b80632f745c59116101c757806355f804b31161018b57806355f804b31461045e5780636352211e1461047e578063648e3c261461049e57806370a08231146104b4578063715018a6146104d457600080fd5b80632f745c59146103b05780633a065892146103d05780633ccfd60b1461040957806342842e0e1461041e5780634f6ccce71461043e57600080fd5b806318160ddd1161020e57806318160ddd146103295780631f8d1d501461033e578063233ebc8b1461035e57806323b872dd1461037157806329fc6bae1461039157600080fd5b806208ffdd1461024a57806301ffc9a71461027d57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561025657600080fd5b5061026a61026536600461241b565b61073c565b6040519081526020015b60405180910390f35b34801561028957600080fd5b5061029d61029836600461260c565b6107b5565b6040519015158152602001610274565b3480156102b957600080fd5b506102c26107e0565b60405161027491906127d4565b3480156102db57600080fd5b506102ef6102ea36600461268f565b610872565b6040516001600160a01b039091168152602001610274565b34801561031357600080fd5b50610327610322366004612552565b610907565b005b34801561033557600080fd5b5060085461026a565b34801561034a57600080fd5b5061032761035936600461268f565b610a1d565b61032761036c366004612552565b610a4c565b34801561037d57600080fd5b5061032761038c366004612470565b610af0565b34801561039d57600080fd5b50600f5461029d90610100900460ff1681565b3480156103bc57600080fd5b5061026a6103cb366004612552565b610b21565b3480156103dc57600080fd5b5061029d6103eb36600461241b565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561041557600080fd5b50610327610bb7565b34801561042a57600080fd5b50610327610439366004612470565b610c14565b34801561044a57600080fd5b5061026a61045936600461268f565b610c2f565b34801561046a57600080fd5b50610327610479366004612646565b610cc2565b34801561048a57600080fd5b506102ef61049936600461268f565b610cff565b3480156104aa57600080fd5b5061026a600b5481565b3480156104c057600080fd5b5061026a6104cf36600461241b565b610d76565b3480156104e057600080fd5b50610327610dfd565b3480156104f557600080fd5b506103276105043660046125f1565b610e71565b34801561051557600080fd5b5061026a61045781565b34801561052b57600080fd5b5061032761053a36600461257c565b610eb5565b34801561054b57600080fd5b5061032761055a36600461268f565b611079565b34801561056b57600080fd5b5061026a600c5481565b34801561058157600080fd5b5061026a668e1bc9bf04000081565b34801561059c57600080fd5b50600a546001600160a01b03166102ef565b3480156105ba57600080fd5b506103276105c9366004612646565b6110a8565b3480156105da57600080fd5b506102c26110e5565b3480156105ef57600080fd5b506103276105fe366004612528565b6110f4565b34801561060f57600080fd5b5061032761061e36600461257c565b6111b9565b34801561062f57600080fd5b5061032761063e3660046125f1565b6112d5565b34801561064f57600080fd5b5061032761065e3660046124ac565b611312565b34801561066f57600080fd5b506102c261067e36600461268f565b61134a565b34801561068f57600080fd5b5061026a606481565b3480156106a457600080fd5b506102c26113da565b3480156106b957600080fd5b5061029d6106c836600461243d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61032761070436600461268f565b6113e9565b61032761071736600461268f565b61155f565b34801561072857600080fd5b5061032761073736600461241b565b611857565b60006001600160a01b0382166107995760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b031660009081526011602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806107da57506107da82611942565b92915050565b6060600080546107ef9061298f565b80601f016020809104026020016040519081016040528092919081815260200182805461081b9061298f565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610790565b506000908152600460205260409020546001600160a01b031690565b600061091282610cff565b9050806001600160a01b0316836001600160a01b031614156109805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610790565b336001600160a01b038216148061099c575061099c81336106c8565b610a0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610790565b610a188383611992565b505050565b600a546001600160a01b03163314610a475760405162461bcd60e51b81526004016107909061287b565b600b55565b600a546001600160a01b03163314610a765760405162461bcd60e51b81526004016107909061287b565b610457610a8260125490565b10610a9f5760405162461bcd60e51b815260040161079090612839565b60005b81811015610a18576000610ab560125490565b9050610457610ac360125490565b1015610add57610ad36012611a00565b610add8482611a1d565b5080610ae8816129ca565b915050610aa2565b610afa3382611a37565b610b165760405162461bcd60e51b8152600401610790906128b0565b610a18838383611b2e565b6000610b2c83610d76565b8210610b8e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610790565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610be15760405162461bcd60e51b81526004016107909061287b565b6040514790339082156108fc029083906000818181858888f19350505050158015610c10573d6000803e3d6000fd5b5050565b610a1883838360405180602001604052806000815250611312565b6000610c3a60085490565b8210610c9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610790565b60088281548110610cb057610cb0612a3b565b90600052602060002001549050919050565b600a546001600160a01b03163314610cec5760405162461bcd60e51b81526004016107909061287b565b8051610c1090600e9060208401906122e0565b6000818152600260205260408120546001600160a01b0316806107da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610790565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610790565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e275760405162461bcd60e51b81526004016107909061287b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016107909061287b565b600f80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610edf5760405162461bcd60e51b81526004016107909061287b565b60005b81811015610a18576000838383818110610efe57610efe612a3b565b9050602002016020810190610f13919061241b565b6001600160a01b03161415610f6a5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610790565b600160106000858585818110610f8257610f82612a3b565b9050602002016020810190610f97919061241b565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601181858585818110610fd757610fd7612a3b565b9050602002016020810190610fec919061241b565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611019576000611066565b6011600084848481811061102f5761102f612a3b565b9050602002016020810190611044919061241b565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080611071816129ca565b915050610ee2565b600a546001600160a01b031633146110a35760405162461bcd60e51b81526004016107909061287b565b600c55565b600a546001600160a01b031633146110d25760405162461bcd60e51b81526004016107909061287b565b8051610c1090600d9060208401906122e0565b6060600180546107ef9061298f565b6001600160a01b03821633141561114d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610790565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111e35760405162461bcd60e51b81526004016107909061287b565b60005b81811015610a1857600083838381811061120257611202612a3b565b9050602002016020810190611217919061241b565b6001600160a01b0316141561126e5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610790565b60006010600085858581811061128657611286612a3b565b905060200201602081019061129b919061241b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112cd816129ca565b9150506111e6565b600a546001600160a01b031633146112ff5760405162461bcd60e51b81526004016107909061287b565b600f805460ff1916911515919091179055565b61131c3383611a37565b6113385760405162461bcd60e51b8152600401610790906128b0565b61134484848484611cd9565b50505050565b6000818152600260205260409020546060906001600160a01b03166113a85760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610790565b600e6113b383611d0c565b6040516020016113c49291906126f0565b6040516020818303038152906040529050919050565b6060600d80546107ef9061298f565b600f5460ff166114345760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610790565b60648111156114855760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206d696e7420757020746f203120746f6b656e00000000006044820152606401610790565b61045761149160125490565b106114ae5760405162461bcd60e51b815260040161079090612839565b346114c082668e1bc9bf04000061292d565b111561150e5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610790565b60005b81811015610c1057600061152460125490565b9050600b5461153260125490565b101561154c576115426012611a00565b61154c3382611a1d565b5080611557816129ca565b915050611511565b60648111156115b05760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206d696e7420757020746f203120746f6b656e00000000006044820152606401610790565b600f54610100900460ff166116075760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77204c697374206973206e6f742061637469766500000000000000006044820152606401610790565b3360009081526010602052604090205460ff166116665760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006044820152606401610790565b61045761167260125490565b106116bf5760405162461bcd60e51b815260206004820152601960248201527f507572636861736520776f756c6420657863656564206d6178000000000000006044820152606401610790565b600c548111156117115760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610790565b600c543360009081526011602052604090205461172f908390612901565b111561177d5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610790565b3461178f82668e1bc9bf04000061292d565b11156117dd5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610790565b6104576117e960125490565b106118065760405162461bcd60e51b815260040161079090612839565b60005b81811015610c1057600061181c60125490565b9050600b5461182a60125490565b10156118445761183a6012611a00565b6118443382611a1d565b508061184f816129ca565b915050611809565b600a546001600160a01b031633146118815760405162461bcd60e51b81526004016107909061287b565b6001600160a01b0381166118e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610790565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061197357506001600160e01b03198216635b5e139f60e01b145b806107da57506301ffc9a760e01b6001600160e01b03198316146107da565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c782610cff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254611a159190612901565b909155505050565b610c10828260405180602001604052806000815250611e0a565b6000818152600260205260408120546001600160a01b0316611ab05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610790565b6000611abb83610cff565b9050806001600160a01b0316846001600160a01b03161480611af65750836001600160a01b0316611aeb84610872565b6001600160a01b0316145b80611b2657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4182610cff565b6001600160a01b031614611ba95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610790565b6001600160a01b038216611c0b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610790565b611c16838383611e3d565b611c21600082611992565b6001600160a01b0383166000908152600360205260408120805460019290611c4a90849061294c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c78908490612901565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611ce4848484611b2e565b611cf084848484611ef5565b6113445760405162461bcd60e51b8152600401610790906127e7565b606081611d305750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d5a5780611d44816129ca565b9150611d539050600a83612919565b9150611d34565b60008167ffffffffffffffff811115611d7557611d75612a51565b6040519080825280601f01601f191660200182016040528015611d9f576020820181803683370190505b5090505b8415611b2657611db460018361294c565b9150611dc1600a866129e5565b611dcc906030612901565b60f81b818381518110611de157611de1612a3b565b60200101906001600160f81b031916908160001a905350611e03600a86612919565b9450611da3565b611e148383612002565b611e216000848484611ef5565b610a185760405162461bcd60e51b8152600401610790906127e7565b6001600160a01b038316611e9857611e9381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ebb565b816001600160a01b0316836001600160a01b031614611ebb57611ebb8382612150565b6001600160a01b038216611ed257610a18816121ed565b826001600160a01b0316826001600160a01b031614610a1857610a18828261229c565b60006001600160a01b0384163b15611ff757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f39903390899088908890600401612797565b602060405180830381600087803b158015611f5357600080fd5b505af1925050508015611f83575060408051601f3d908101601f19168201909252611f8091810190612629565b60015b611fdd573d808015611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b508051611fd55760405162461bcd60e51b8152600401610790906127e7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b26565b506001949350505050565b6001600160a01b0382166120585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610790565b6000818152600260205260409020546001600160a01b0316156120bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610790565b6120c960008383611e3d565b6001600160a01b03821660009081526003602052604081208054600192906120f2908490612901565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161215d84610d76565b612167919061294c565b6000838152600760205260409020549091508082146121ba576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121ff9060019061294c565b6000838152600960205260408120546008805493945090928490811061222757612227612a3b565b90600052602060002001549050806008838154811061224857612248612a3b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061228057612280612a25565b6001900381819060005260206000200160009055905550505050565b60006122a783610d76565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546122ec9061298f565b90600052602060002090601f01602090048101928261230e5760008555612354565b82601f1061232757805160ff1916838001178555612354565b82800160010185558215612354579182015b82811115612354578251825591602001919060010190612339565b50612360929150612364565b5090565b5b808211156123605760008155600101612365565b600067ffffffffffffffff8084111561239457612394612a51565b604051601f8501601f19908116603f011681019082821181831017156123bc576123bc612a51565b816040528093508581528686860111156123d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461240657600080fd5b919050565b8035801515811461240657600080fd5b60006020828403121561242d57600080fd5b612436826123ef565b9392505050565b6000806040838503121561245057600080fd5b612459836123ef565b9150612467602084016123ef565b90509250929050565b60008060006060848603121561248557600080fd5b61248e846123ef565b925061249c602085016123ef565b9150604084013590509250925092565b600080600080608085870312156124c257600080fd5b6124cb856123ef565b93506124d9602086016123ef565b925060408501359150606085013567ffffffffffffffff8111156124fc57600080fd5b8501601f8101871361250d57600080fd5b61251c87823560208401612379565b91505092959194509250565b6000806040838503121561253b57600080fd5b612544836123ef565b91506124676020840161240b565b6000806040838503121561256557600080fd5b61256e836123ef565b946020939093013593505050565b6000806020838503121561258f57600080fd5b823567ffffffffffffffff808211156125a757600080fd5b818501915085601f8301126125bb57600080fd5b8135818111156125ca57600080fd5b8660208260051b85010111156125df57600080fd5b60209290920196919550909350505050565b60006020828403121561260357600080fd5b6124368261240b565b60006020828403121561261e57600080fd5b813561243681612a67565b60006020828403121561263b57600080fd5b815161243681612a67565b60006020828403121561265857600080fd5b813567ffffffffffffffff81111561266f57600080fd5b8201601f8101841361268057600080fd5b611b2684823560208401612379565b6000602082840312156126a157600080fd5b5035919050565b600081518084526126c0816020860160208601612963565b601f01601f19169290920160200192915050565b600081516126e6818560208601612963565b9290920192915050565b600080845481600182811c91508083168061270c57607f831692505b602080841082141561272c57634e487b7160e01b86526022600452602486fd5b81801561274057600181146127515761277e565b60ff1986168952848901965061277e565b60008b81526020902060005b868110156127765781548b82015290850190830161275d565b505084890196505b50505050505061278e81856126d4565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ca908301846126a8565b9695505050505050565b60208152600061243660208301846126a8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f507572636861736520776f756c64206578636565642046554e47495f5055424c604082015261494360f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612914576129146129f9565b500190565b60008261292857612928612a0f565b500490565b6000816000190483118215151615612947576129476129f9565b500290565b60008282101561295e5761295e6129f9565b500390565b60005b8381101561297e578181015183820152602001612966565b838111156113445750506000910152565b600181811c908216806129a357607f821691505b602082108114156129c457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129de576129de6129f9565b5060010190565b6000826129f4576129f4612a0f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a7d57600080fd5b5056fea2646970667358221220ba56817785df0acf93679ae6f6ce9a37dd503964e25888163ecfcef472d79be264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102455760003560e01c8063718bc4af11610139578063a22cb465116100b6578063d75e61101161007a578063d75e611014610683578063e8a3d48514610698578063e985e9c5146106ad578063efef39a1146106f6578063f23347f514610709578063f2fde38b1461071c57600080fd5b8063a22cb465146105e3578063a51312c814610603578063acec338a14610623578063b88d4fde14610643578063c87b56dd1461066357600080fd5b80638d859f3e116100fd5780638d859f3e146105755780638da5cb5b14610590578063938e3d7b146105ae57806395d89b41146105ce578063991982a41461050957600080fd5b8063718bc4af146104e957806371ba4380146105095780637263cfe21461051f5780637a6685f11461053f5780637f44ab2f1461055f57600080fd5b80632f745c59116101c757806355f804b31161018b57806355f804b31461045e5780636352211e1461047e578063648e3c261461049e57806370a08231146104b4578063715018a6146104d457600080fd5b80632f745c59146103b05780633a065892146103d05780633ccfd60b1461040957806342842e0e1461041e5780634f6ccce71461043e57600080fd5b806318160ddd1161020e57806318160ddd146103295780631f8d1d501461033e578063233ebc8b1461035e57806323b872dd1461037157806329fc6bae1461039157600080fd5b806208ffdd1461024a57806301ffc9a71461027d57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561025657600080fd5b5061026a61026536600461241b565b61073c565b6040519081526020015b60405180910390f35b34801561028957600080fd5b5061029d61029836600461260c565b6107b5565b6040519015158152602001610274565b3480156102b957600080fd5b506102c26107e0565b60405161027491906127d4565b3480156102db57600080fd5b506102ef6102ea36600461268f565b610872565b6040516001600160a01b039091168152602001610274565b34801561031357600080fd5b50610327610322366004612552565b610907565b005b34801561033557600080fd5b5060085461026a565b34801561034a57600080fd5b5061032761035936600461268f565b610a1d565b61032761036c366004612552565b610a4c565b34801561037d57600080fd5b5061032761038c366004612470565b610af0565b34801561039d57600080fd5b50600f5461029d90610100900460ff1681565b3480156103bc57600080fd5b5061026a6103cb366004612552565b610b21565b3480156103dc57600080fd5b5061029d6103eb36600461241b565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561041557600080fd5b50610327610bb7565b34801561042a57600080fd5b50610327610439366004612470565b610c14565b34801561044a57600080fd5b5061026a61045936600461268f565b610c2f565b34801561046a57600080fd5b50610327610479366004612646565b610cc2565b34801561048a57600080fd5b506102ef61049936600461268f565b610cff565b3480156104aa57600080fd5b5061026a600b5481565b3480156104c057600080fd5b5061026a6104cf36600461241b565b610d76565b3480156104e057600080fd5b50610327610dfd565b3480156104f557600080fd5b506103276105043660046125f1565b610e71565b34801561051557600080fd5b5061026a61045781565b34801561052b57600080fd5b5061032761053a36600461257c565b610eb5565b34801561054b57600080fd5b5061032761055a36600461268f565b611079565b34801561056b57600080fd5b5061026a600c5481565b34801561058157600080fd5b5061026a668e1bc9bf04000081565b34801561059c57600080fd5b50600a546001600160a01b03166102ef565b3480156105ba57600080fd5b506103276105c9366004612646565b6110a8565b3480156105da57600080fd5b506102c26110e5565b3480156105ef57600080fd5b506103276105fe366004612528565b6110f4565b34801561060f57600080fd5b5061032761061e36600461257c565b6111b9565b34801561062f57600080fd5b5061032761063e3660046125f1565b6112d5565b34801561064f57600080fd5b5061032761065e3660046124ac565b611312565b34801561066f57600080fd5b506102c261067e36600461268f565b61134a565b34801561068f57600080fd5b5061026a606481565b3480156106a457600080fd5b506102c26113da565b3480156106b957600080fd5b5061029d6106c836600461243d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61032761070436600461268f565b6113e9565b61032761071736600461268f565b61155f565b34801561072857600080fd5b5061032761073736600461241b565b611857565b60006001600160a01b0382166107995760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b031660009081526011602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806107da57506107da82611942565b92915050565b6060600080546107ef9061298f565b80601f016020809104026020016040519081016040528092919081815260200182805461081b9061298f565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610790565b506000908152600460205260409020546001600160a01b031690565b600061091282610cff565b9050806001600160a01b0316836001600160a01b031614156109805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610790565b336001600160a01b038216148061099c575061099c81336106c8565b610a0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610790565b610a188383611992565b505050565b600a546001600160a01b03163314610a475760405162461bcd60e51b81526004016107909061287b565b600b55565b600a546001600160a01b03163314610a765760405162461bcd60e51b81526004016107909061287b565b610457610a8260125490565b10610a9f5760405162461bcd60e51b815260040161079090612839565b60005b81811015610a18576000610ab560125490565b9050610457610ac360125490565b1015610add57610ad36012611a00565b610add8482611a1d565b5080610ae8816129ca565b915050610aa2565b610afa3382611a37565b610b165760405162461bcd60e51b8152600401610790906128b0565b610a18838383611b2e565b6000610b2c83610d76565b8210610b8e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610790565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610be15760405162461bcd60e51b81526004016107909061287b565b6040514790339082156108fc029083906000818181858888f19350505050158015610c10573d6000803e3d6000fd5b5050565b610a1883838360405180602001604052806000815250611312565b6000610c3a60085490565b8210610c9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610790565b60088281548110610cb057610cb0612a3b565b90600052602060002001549050919050565b600a546001600160a01b03163314610cec5760405162461bcd60e51b81526004016107909061287b565b8051610c1090600e9060208401906122e0565b6000818152600260205260408120546001600160a01b0316806107da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610790565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610790565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e275760405162461bcd60e51b81526004016107909061287b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016107909061287b565b600f80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610edf5760405162461bcd60e51b81526004016107909061287b565b60005b81811015610a18576000838383818110610efe57610efe612a3b565b9050602002016020810190610f13919061241b565b6001600160a01b03161415610f6a5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610790565b600160106000858585818110610f8257610f82612a3b565b9050602002016020810190610f97919061241b565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601181858585818110610fd757610fd7612a3b565b9050602002016020810190610fec919061241b565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611019576000611066565b6011600084848481811061102f5761102f612a3b565b9050602002016020810190611044919061241b565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080611071816129ca565b915050610ee2565b600a546001600160a01b031633146110a35760405162461bcd60e51b81526004016107909061287b565b600c55565b600a546001600160a01b031633146110d25760405162461bcd60e51b81526004016107909061287b565b8051610c1090600d9060208401906122e0565b6060600180546107ef9061298f565b6001600160a01b03821633141561114d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610790565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111e35760405162461bcd60e51b81526004016107909061287b565b60005b81811015610a1857600083838381811061120257611202612a3b565b9050602002016020810190611217919061241b565b6001600160a01b0316141561126e5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610790565b60006010600085858581811061128657611286612a3b565b905060200201602081019061129b919061241b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112cd816129ca565b9150506111e6565b600a546001600160a01b031633146112ff5760405162461bcd60e51b81526004016107909061287b565b600f805460ff1916911515919091179055565b61131c3383611a37565b6113385760405162461bcd60e51b8152600401610790906128b0565b61134484848484611cd9565b50505050565b6000818152600260205260409020546060906001600160a01b03166113a85760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610790565b600e6113b383611d0c565b6040516020016113c49291906126f0565b6040516020818303038152906040529050919050565b6060600d80546107ef9061298f565b600f5460ff166114345760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610790565b60648111156114855760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206d696e7420757020746f203120746f6b656e00000000006044820152606401610790565b61045761149160125490565b106114ae5760405162461bcd60e51b815260040161079090612839565b346114c082668e1bc9bf04000061292d565b111561150e5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610790565b60005b81811015610c1057600061152460125490565b9050600b5461153260125490565b101561154c576115426012611a00565b61154c3382611a1d565b5080611557816129ca565b915050611511565b60648111156115b05760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206d696e7420757020746f203120746f6b656e00000000006044820152606401610790565b600f54610100900460ff166116075760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77204c697374206973206e6f742061637469766500000000000000006044820152606401610790565b3360009081526010602052604090205460ff166116665760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006044820152606401610790565b61045761167260125490565b106116bf5760405162461bcd60e51b815260206004820152601960248201527f507572636861736520776f756c6420657863656564206d6178000000000000006044820152606401610790565b600c548111156117115760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610790565b600c543360009081526011602052604090205461172f908390612901565b111561177d5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610790565b3461178f82668e1bc9bf04000061292d565b11156117dd5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610790565b6104576117e960125490565b106118065760405162461bcd60e51b815260040161079090612839565b60005b81811015610c1057600061181c60125490565b9050600b5461182a60125490565b10156118445761183a6012611a00565b6118443382611a1d565b508061184f816129ca565b915050611809565b600a546001600160a01b031633146118815760405162461bcd60e51b81526004016107909061287b565b6001600160a01b0381166118e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610790565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061197357506001600160e01b03198216635b5e139f60e01b145b806107da57506301ffc9a760e01b6001600160e01b03198316146107da565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c782610cff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254611a159190612901565b909155505050565b610c10828260405180602001604052806000815250611e0a565b6000818152600260205260408120546001600160a01b0316611ab05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610790565b6000611abb83610cff565b9050806001600160a01b0316846001600160a01b03161480611af65750836001600160a01b0316611aeb84610872565b6001600160a01b0316145b80611b2657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4182610cff565b6001600160a01b031614611ba95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610790565b6001600160a01b038216611c0b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610790565b611c16838383611e3d565b611c21600082611992565b6001600160a01b0383166000908152600360205260408120805460019290611c4a90849061294c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c78908490612901565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611ce4848484611b2e565b611cf084848484611ef5565b6113445760405162461bcd60e51b8152600401610790906127e7565b606081611d305750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d5a5780611d44816129ca565b9150611d539050600a83612919565b9150611d34565b60008167ffffffffffffffff811115611d7557611d75612a51565b6040519080825280601f01601f191660200182016040528015611d9f576020820181803683370190505b5090505b8415611b2657611db460018361294c565b9150611dc1600a866129e5565b611dcc906030612901565b60f81b818381518110611de157611de1612a3b565b60200101906001600160f81b031916908160001a905350611e03600a86612919565b9450611da3565b611e148383612002565b611e216000848484611ef5565b610a185760405162461bcd60e51b8152600401610790906127e7565b6001600160a01b038316611e9857611e9381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ebb565b816001600160a01b0316836001600160a01b031614611ebb57611ebb8382612150565b6001600160a01b038216611ed257610a18816121ed565b826001600160a01b0316826001600160a01b031614610a1857610a18828261229c565b60006001600160a01b0384163b15611ff757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f39903390899088908890600401612797565b602060405180830381600087803b158015611f5357600080fd5b505af1925050508015611f83575060408051601f3d908101601f19168201909252611f8091810190612629565b60015b611fdd573d808015611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b508051611fd55760405162461bcd60e51b8152600401610790906127e7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b26565b506001949350505050565b6001600160a01b0382166120585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610790565b6000818152600260205260409020546001600160a01b0316156120bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610790565b6120c960008383611e3d565b6001600160a01b03821660009081526003602052604081208054600192906120f2908490612901565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161215d84610d76565b612167919061294c565b6000838152600760205260409020549091508082146121ba576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121ff9060019061294c565b6000838152600960205260408120546008805493945090928490811061222757612227612a3b565b90600052602060002001549050806008838154811061224857612248612a3b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061228057612280612a25565b6001900381819060005260206000200160009055905550505050565b60006122a783610d76565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546122ec9061298f565b90600052602060002090601f01602090048101928261230e5760008555612354565b82601f1061232757805160ff1916838001178555612354565b82800160010185558215612354579182015b82811115612354578251825591602001919060010190612339565b50612360929150612364565b5090565b5b808211156123605760008155600101612365565b600067ffffffffffffffff8084111561239457612394612a51565b604051601f8501601f19908116603f011681019082821181831017156123bc576123bc612a51565b816040528093508581528686860111156123d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461240657600080fd5b919050565b8035801515811461240657600080fd5b60006020828403121561242d57600080fd5b612436826123ef565b9392505050565b6000806040838503121561245057600080fd5b612459836123ef565b9150612467602084016123ef565b90509250929050565b60008060006060848603121561248557600080fd5b61248e846123ef565b925061249c602085016123ef565b9150604084013590509250925092565b600080600080608085870312156124c257600080fd5b6124cb856123ef565b93506124d9602086016123ef565b925060408501359150606085013567ffffffffffffffff8111156124fc57600080fd5b8501601f8101871361250d57600080fd5b61251c87823560208401612379565b91505092959194509250565b6000806040838503121561253b57600080fd5b612544836123ef565b91506124676020840161240b565b6000806040838503121561256557600080fd5b61256e836123ef565b946020939093013593505050565b6000806020838503121561258f57600080fd5b823567ffffffffffffffff808211156125a757600080fd5b818501915085601f8301126125bb57600080fd5b8135818111156125ca57600080fd5b8660208260051b85010111156125df57600080fd5b60209290920196919550909350505050565b60006020828403121561260357600080fd5b6124368261240b565b60006020828403121561261e57600080fd5b813561243681612a67565b60006020828403121561263b57600080fd5b815161243681612a67565b60006020828403121561265857600080fd5b813567ffffffffffffffff81111561266f57600080fd5b8201601f8101841361268057600080fd5b611b2684823560208401612379565b6000602082840312156126a157600080fd5b5035919050565b600081518084526126c0816020860160208601612963565b601f01601f19169290920160200192915050565b600081516126e6818560208601612963565b9290920192915050565b600080845481600182811c91508083168061270c57607f831692505b602080841082141561272c57634e487b7160e01b86526022600452602486fd5b81801561274057600181146127515761277e565b60ff1986168952848901965061277e565b60008b81526020902060005b868110156127765781548b82015290850190830161275d565b505084890196505b50505050505061278e81856126d4565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ca908301846126a8565b9695505050505050565b60208152600061243660208301846126a8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f507572636861736520776f756c64206578636565642046554e47495f5055424c604082015261494360f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612914576129146129f9565b500190565b60008261292857612928612a0f565b500490565b6000816000190483118215151615612947576129476129f9565b500290565b60008282101561295e5761295e6129f9565b500390565b60005b8381101561297e578181015183820152602001612966565b838111156113445750506000910152565b600181811c908216806129a357607f821691505b602082108114156129c457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129de576129de6129f9565b5060010190565b6000826129f4576129f4612a0f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a7d57600080fd5b5056fea2646970667358221220ba56817785df0acf93679ae6f6ce9a37dd503964e25888163ecfcef472d79be264736f6c63430008070033

Deployed Bytecode Sourcemap

48651:6007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51387:205;;;;;;;;;;-1:-1:-1;51387:205:0;;;;;:::i;:::-;;:::i;:::-;;;18918:25:1;;;18906:2;18891:18;51387:205:0;;;;;;;;38570:300;;;;;;;;;;-1:-1:-1;38570:300:0;;;;;:::i;:::-;;:::i;:::-;;;7417:14:1;;7410:22;7392:41;;7380:2;7365:18;38570:300:0;7252:187:1;24676:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26258:308::-;;;;;;;;;;-1:-1:-1;26258:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6715:32:1;;;6697:51;;6685:2;6670:18;26258:308:0;6551:203:1;25781:411:0;;;;;;;;;;-1:-1:-1;25781:411:0;;;;;:::i;:::-;;:::i;:::-;;39373:113;;;;;;;;;;-1:-1:-1;39461:10:0;:17;39373:113;;50587:89;;;;;;;;;;-1:-1:-1;50587:89:0;;;;;:::i;:::-;;:::i;49824:600::-;;;;;;:::i;:::-;;:::i;27317:376::-;;;;;;;;;;-1:-1:-1;27317:376:0;;;;;:::i;:::-;;:::i;49202:37::-;;;;;;;;;;-1:-1:-1;49202:37:0;;;;;;;;;;;38954:343;;;;;;;;;;-1:-1:-1;38954:343:0;;;;;:::i;:::-;;:::i;51606:108::-;;;;;;;;;;-1:-1:-1;51606:108:0;;;;;:::i;:::-;-1:-1:-1;;;;;51688:16:0;51664:4;51688:16;;;:10;:16;;;;;;;;;51606:108;54508:147;;;;;;;;;;;;;:::i;27764:185::-;;;;;;;;;;-1:-1:-1;27764:185:0;;;;;:::i;:::-;;:::i;39563:320::-;;;;;;;;;;-1:-1:-1;39563:320:0;;;;;:::i;:::-;;:::i;49704:96::-;;;;;;;;;;-1:-1:-1;49704:96:0;;;;;:::i;:::-;;:::i;24283:326::-;;;;;;;;;;-1:-1:-1;24283:326:0;;;;;:::i;:::-;;:::i;48828:30::-;;;;;;;;;;;;;;;;23926:295;;;;;;;;;;-1:-1:-1;23926:295:0;;;;;:::i;:::-;;:::i;48031:148::-;;;;;;;;;;;;;:::i;50438:133::-;;;;;;;;;;-1:-1:-1;50438:133:0;;;;;:::i;:::-;;:::i;48778:43::-;;;;;;;;;;;;48817:4;48778:43;;50818:546;;;;;;;;;;-1:-1:-1;50818:546:0;;;;;:::i;:::-;;:::i;50690:112::-;;;;;;;;;;-1:-1:-1;50690:112:0;;;;;:::i;:::-;;:::i;48971:35::-;;;;;;;;;;;;;;;;49013:54;;;;;;;;;;;;49045:22;49013:54;;47380:87;;;;;;;;;;-1:-1:-1;47453:6:0;;-1:-1:-1;;;;;47453:6:0;47380:87;;49597:99;;;;;;;;;;-1:-1:-1;49597:99:0;;;;;:::i;:::-;;:::i;24845:104::-;;;;;;;;;;;;;:::i;26638:327::-;;;;;;;;;;-1:-1:-1;26638:327:0;;;;;:::i;:::-;;:::i;51728:365::-;;;;;;;;;;-1:-1:-1;51728:365:0;;;;;:::i;:::-;;:::i;49488:101::-;;;;;;;;;;-1:-1:-1;49488:101:0;;;;;:::i;:::-;;:::i;28020:365::-;;;;;;;;;;-1:-1:-1;28020:365:0;;;;;:::i;:::-;;:::i;54224:276::-;;;;;;;;;;-1:-1:-1;54224:276:0;;;;;:::i;:::-;;:::i;48920:44::-;;;;;;;;;;;;48961:3;48920:44;;54119:97;;;;;;;;;;;;;:::i;27036:214::-;;;;;;;;;;-1:-1:-1;27036:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27207:25:0;;;27178:4;27207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27036:214;53296:815;;;;;;:::i;:::-;;:::i;52105:1183::-;;;;;;:::i;:::-;;:::i;48334:281::-;;;;;;;;;;-1:-1:-1;48334:281:0;;;;;:::i;:::-;;:::i;51387:205::-;51453:7;-1:-1:-1;;;;;51480:19:0;;51472:62;;;;-1:-1:-1;;;51472:62:0;;15545:2:1;51472:62:0;;;15527:21:1;15584:2;15564:18;;;15557:30;15623:32;15603:18;;;15596:60;15673:18;;51472:62:0;;;;;;;;;-1:-1:-1;;;;;;51558:24:0;;;;;:17;:24;;;;;;;51387:205::o;38570:300::-;38717:4;-1:-1:-1;;;;;;38759:50:0;;-1:-1:-1;;;38759:50:0;;:103;;;38826:36;38850:11;38826:23;:36::i;:::-;38739:123;38570:300;-1:-1:-1;;38570:300:0:o;24676:100::-;24730:13;24763:5;24756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24676:100;:::o;26258:308::-;26379:7;30021:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30021:16:0;26404:110;;;;-1:-1:-1;;;26404:110:0;;14771:2:1;26404:110:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:34;14829:18;;;14822:62;-1:-1:-1;;;14900:18:1;;;14893:42;14952:19;;26404:110:0;14569:408:1;26404:110:0;-1:-1:-1;26534:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26534:24:0;;26258:308::o;25781:411::-;25862:13;25878:23;25893:7;25878:14;:23::i;:::-;25862:39;;25926:5;-1:-1:-1;;;;;25920:11:0;:2;-1:-1:-1;;;;;25920:11:0;;;25912:57;;;;-1:-1:-1;;;25912:57:0;;16669:2:1;25912:57:0;;;16651:21:1;16708:2;16688:18;;;16681:30;16747:34;16727:18;;;16720:62;-1:-1:-1;;;16798:18:1;;;16791:31;16839:19;;25912:57:0;16467:397:1;25912:57:0;18766:10;-1:-1:-1;;;;;26004:21:0;;;;:62;;-1:-1:-1;26029:37:0;26046:5;18766:10;27036:214;:::i;26029:37::-;25982:168;;;;-1:-1:-1;;;25982:168:0;;12813:2:1;25982:168:0;;;12795:21:1;12852:2;12832:18;;;12825:30;12891:34;12871:18;;;12864:62;12962:26;12942:18;;;12935:54;13006:19;;25982:168:0;12611:420:1;25982:168:0;26163:21;26172:2;26176:7;26163:8;:21::i;:::-;25851:341;25781:411;;:::o;50587:89::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;50650:8:::1;:16:::0;50587:89::o;49824:600::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;48817:4:::1;49982:22;:12;45871:14:::0;;45779:114;49982:22:::1;:37;49956:133;;;;-1:-1:-1::0;;;49956:133:0::1;;;;;;;:::i;:::-;50123:9;50118:299;50142:14;50138:1;:18;50118:299;;;50182:15;50200:22;:12;45871:14:::0;;45779:114;50200:22:::1;50182:40;;48817:4;50251:22;:12;45871:14:::0;;45779:114;50251:22:::1;:37;50247:155;;;50313:24;:12;:22;:24::i;:::-;50360:22;50370:2;50374:7;50360:9;:22::i;:::-;-1:-1:-1::0;50158:3:0;::::1;::::0;::::1;:::i;:::-;;;;50118:299;;27317:376:::0;27526:41;18766:10;27559:7;27526:18;:41::i;:::-;27504:140;;;;-1:-1:-1;;;27504:140:0;;;;;;;:::i;:::-;27657:28;27667:4;27673:2;27677:7;27657:9;:28::i;38954:343::-;39096:7;39151:23;39168:5;39151:16;:23::i;:::-;39143:5;:31;39121:124;;;;-1:-1:-1;;;39121:124:0;;8581:2:1;39121:124:0;;;8563:21:1;8620:2;8600:18;;;8593:30;8659:34;8639:18;;;8632:62;-1:-1:-1;;;8710:18:1;;;8703:41;8761:19;;39121:124:0;8379:407:1;39121:124:0;-1:-1:-1;;;;;;39263:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38954:343::o;54508:147::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;54610:37:::1;::::0;54576:21:::1;::::0;54618:10:::1;::::0;54610:37;::::1;;;::::0;54576:21;;54558:15:::1;54610:37:::0;54558:15;54610:37;54576:21;54618:10;54610:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54547:108;54508:147::o:0;27764:185::-;27902:39;27919:4;27925:2;27929:7;27902:39;;;;;;;;;;;;:16;:39::i;39563:320::-;39683:7;39738:30;39461:10;:17;;39373:113;39738:30;39730:5;:38;39708:132;;;;-1:-1:-1;;;39708:132:0;;17489:2:1;39708:132:0;;;17471:21:1;17528:2;17508:18;;;17501:30;17567:34;17547:18;;;17540:62;-1:-1:-1;;;17618:18:1;;;17611:42;17670:19;;39708:132:0;17287:408:1;39708:132:0;39858:10;39869:5;39858:17;;;;;;;;:::i;:::-;;;;;;;;;39851:24;;39563:320;;;:::o;49704:96::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;49773:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;24283:326::-:0;24400:7;24441:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24441:16:0;24490:19;24468:110;;;;-1:-1:-1;;;24468:110:0;;13649:2:1;24468:110:0;;;13631:21:1;13688:2;13668:18;;;13661:30;13727:34;13707:18;;;13700:62;-1:-1:-1;;;13778:18:1;;;13771:39;13827:19;;24468:110:0;13447:405:1;23926:295:0;24043:7;-1:-1:-1;;;;;24090:19:0;;24068:111;;;;-1:-1:-1;;;24068:111:0;;13238:2:1;24068:111:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:40;13417:19;;24068:111:0;13036:406:1;24068:111:0;-1:-1:-1;;;;;;24197:16:0;;;;;:9;:16;;;;;;;23926:295::o;48031:148::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;48122:6:::1;::::0;48101:40:::1;::::0;48138:1:::1;::::0;-1:-1:-1;;;;;48122:6:0::1;::::0;48101:40:::1;::::0;48138:1;;48101:40:::1;48152:6;:19:::0;;-1:-1:-1;;;;;;48152:19:0::1;::::0;;48031:148::o;50438:133::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;50523:17:::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;50523:38:0;;::::1;::::0;;;::::1;::::0;;50438:133::o;50818:546::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;50907:9:::1;50902:453;50922:20:::0;;::::1;50902:453;;;50994:1;50970:9:::0;;50980:1;50970:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50970:26:0::1;;;50962:65;;;::::0;-1:-1:-1;;;50962:65:0;;15904:2:1;50962:65:0::1;::::0;::::1;15886:21:1::0;15943:2;15923:18;;;15916:30;15982:28;15962:18;;;15955:56;16028:18;;50962:65:0::1;15702:350:1::0;50962:65:0::1;51093:4;51066:10;:24;51077:9;;51087:1;51077:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51066:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51066:24:0;;;:31;;-1:-1:-1;;51066:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;51270:17:::1;-1:-1:-1::0;51288:9:0;;51298:1;51288:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51270:31:0::1;-1:-1:-1::0;;;;;51270:31:0::1;;;;;;;;;;;;;:35;:73;;51342:1;51270:73;;;51308:17;:31;51326:9;;51336:1;51326:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51308:31:0::1;-1:-1:-1::0;;;;;51308:31:0::1;;;;;;;;;;;;;51270:73;-1:-1:-1::0;50944:3:0;::::1;::::0;::::1;:::i;:::-;;;;50902:453;;50690:112:::0;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;50766:16:::1;:26:::0;50690:112::o;49597:99::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;49670:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;24845:104::-:0;24901:13;24934:7;24927:14;;;;;:::i;26638:327::-;-1:-1:-1;;;;;26773:24:0;;18766:10;26773:24;;26765:62;;;;-1:-1:-1;;;26765:62:0;;10984:2:1;26765:62:0;;;10966:21:1;11023:2;11003:18;;;10996:30;11062:27;11042:18;;;11035:55;11107:18;;26765:62:0;10782:349:1;26765:62:0;18766:10;26840:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26840:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26840:53:0;;;;;;;;;;26909:48;;7392:41:1;;;26840:42:0;;18766:10;26909:48;;7365:18:1;26909:48:0;;;;;;;26638:327;;:::o;51728:365::-;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;51822:9:::1;51817:267;51837:20:::0;;::::1;51817:267;;;51909:1;51885:9:::0;;51895:1;51885:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51885:26:0::1;;;51877:65;;;::::0;-1:-1:-1;;;51877:65:0;;15904:2:1;51877:65:0::1;::::0;::::1;15886:21:1::0;15943:2;15923:18;;;15916:30;15982:28;15962:18;;;15955:56;16028:18;;51877:65:0::1;15702:350:1::0;51877:65:0::1;52067:5;52040:10;:24;52051:9;;52061:1;52051:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52040:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52040:24:0;:32;;-1:-1:-1;;52040:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51859:3;::::1;::::0;::::1;:::i;:::-;;;;51817:267;;49488:101:::0;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;49552:9:::1;:20:::0;;-1:-1:-1;;49552:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49488:101::o;28020:365::-;28209:41;18766:10;28242:7;28209:18;:41::i;:::-;28187:140;;;;-1:-1:-1;;;28187:140:0;;;;;;;:::i;:::-;28338:39;28352:4;28358:2;28362:7;28371:5;28338:13;:39::i;:::-;28020:365;;;;:::o;54224:276::-;29997:4;30021:16;;;:7;:16;;;;;;54333:13;;-1:-1:-1;;;;;30021:16:0;54364:49;;;;-1:-1:-1;;;54364:49:0;;11338:2:1;54364:49:0;;;11320:21:1;11377:2;11357:18;;;11350:30;-1:-1:-1;;;11396:18:1;;;11389:50;11456:18;;54364:49:0;11136:344:1;54364:49:0;54457:13;54472:18;:7;:16;:18::i;:::-;54440:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54426:66;;54224:276;;;:::o;54119:97::-;54163:13;54196:12;54189:19;;;;;:::i;53296:815::-;53384:9;;;;53376:44;;;;-1:-1:-1;;;53376:44:0;;14420:2:1;53376:44:0;;;14402:21:1;14459:2;14439:18;;;14432:30;-1:-1:-1;;;14478:18:1;;;14471:52;14540:18;;53376:44:0;14218:346:1;53376:44:0;48961:3;53463:14;:32;;53441:109;;;;-1:-1:-1;;;53441:109:0;;12457:2:1;53441:109:0;;;12439:21:1;12496:2;12476:18;;;12469:30;12535:29;12515:18;;;12508:57;12582:18;;53441:109:0;12255:351:1;53441:109:0;48817:4;53583:22;:12;45871:14;;45779:114;53583:22;:37;53561:121;;;;-1:-1:-1;;;53561:121:0;;;;;;;:::i;:::-;53741:9;53715:22;53723:14;49045:22;53715;:::i;:::-;:35;;53693:113;;;;-1:-1:-1;;;53693:113:0;;11687:2:1;53693:113:0;;;11669:21:1;11726:2;11706:18;;;11699:30;11765;11745:18;;;11738:58;11813:18;;53693:113:0;11485:352:1;53693:113:0;53834:9;53829:275;53853:14;53849:1;:18;53829:275;;;53889:15;53907:22;:12;45871:14;;45779:114;53907:22;53889:40;;53975:8;;53950:22;:12;45871:14;;45779:114;53950:22;:33;53946:147;;;54004:24;:12;:22;:24::i;:::-;54047:30;54057:10;54069:7;54047:9;:30::i;:::-;-1:-1:-1;53869:3:0;;;;:::i;:::-;;;;53829:275;;52105:1183;48961:3;52206:14;:32;;52184:109;;;;-1:-1:-1;;;52184:109:0;;12457:2:1;52184:109:0;;;12439:21:1;12496:2;12476:18;;;12469:30;12535:29;12515:18;;;12508:57;12582:18;;52184:109:0;12255:351:1;52184:109:0;52322:17;;;;;;;52314:54;;;;-1:-1:-1;;;52314:54:0;;7870:2:1;52314:54:0;;;7852:21:1;7909:2;7889:18;;;7882:30;7948:26;7928:18;;;7921:54;7992:18;;52314:54:0;7668:348:1;52314:54:0;52398:10;52387:22;;;;:10;:22;;;;;;;;52379:64;;;;-1:-1:-1;;;52379:64:0;;8223:2:1;52379:64:0;;;8205:21:1;8262:2;8242:18;;;8235:30;8301:31;8281:18;;;8274:59;8350:18;;52379:64:0;8021:353:1;52379:64:0;48817:4;52476:22;:12;45871:14;;45779:114;52476:22;:37;52454:112;;;;-1:-1:-1;;;52454:112:0;;17902:2:1;52454:112:0;;;17884:21:1;17941:2;17921:18;;;17914:30;17980:27;17960:18;;;17953:55;18025:18;;52454:112:0;17700:349:1;52454:112:0;52603:16;;52585:14;:34;;52577:79;;;;-1:-1:-1;;;52577:79:0;;18613:2:1;52577:79:0;;;18595:21:1;;;18632:18;;;18625:30;18691:34;18671:18;;;18664:62;18743:18;;52577:79:0;18411:356:1;52577:79:0;52725:16;;52693:10;52675:29;;;;:17;:29;;;;;;:46;;52707:14;;52675:46;:::i;:::-;:66;;52667:107;;;;-1:-1:-1;;;52667:107:0;;18256:2:1;52667:107:0;;;18238:21:1;18295:2;18275:18;;;18268:30;18334;18314:18;;;18307:58;18382:18;;52667:107:0;18054:352:1;52667:107:0;52819:9;52793:22;52801:14;49045:22;52793;:::i;:::-;:35;;52785:76;;;;-1:-1:-1;;;52785:76:0;;11687:2:1;52785:76:0;;;11669:21:1;11726:2;11706:18;;;11699:30;11765;11745:18;;;11738:58;11813:18;;52785:76:0;11485:352:1;52785:76:0;48817:4;52894:22;:12;45871:14;;45779:114;52894:22;:37;52872:121;;;;-1:-1:-1;;;52872:121:0;;;;;;;:::i;:::-;53009:9;53004:275;53028:14;53024:1;:18;53004:275;;;53064:15;53082:22;:12;45871:14;;45779:114;53082:22;53064:40;;53150:8;;53125:22;:12;45871:14;;45779:114;53125:22;:33;53121:147;;;53179:24;:12;:22;:24::i;:::-;53222:30;53232:10;53244:7;53222:9;:30::i;:::-;-1:-1:-1;53044:3:0;;;;:::i;:::-;;;;53004:275;;48334:281;47453:6;;-1:-1:-1;;;;;47453:6:0;18766:10;47600:23;47592:68;;;;-1:-1:-1;;;47592:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48437:22:0;::::1;48415:110;;;::::0;-1:-1:-1;;;48415:110:0;;9412:2:1;48415:110:0::1;::::0;::::1;9394:21:1::0;9451:2;9431:18;;;9424:30;9490:34;9470:18;;;9463:62;-1:-1:-1;;;9541:18:1;;;9534:36;9587:19;;48415:110:0::1;9210:402:1::0;48415:110:0::1;48562:6;::::0;48541:38:::1;::::0;-1:-1:-1;;;;;48541:38:0;;::::1;::::0;48562:6:::1;::::0;48541:38:::1;::::0;48562:6:::1;::::0;48541:38:::1;48590:6;:17:::0;;-1:-1:-1;;;;;;48590:17:0::1;-1:-1:-1::0;;;;;48590:17:0;;;::::1;::::0;;;::::1;::::0;;48334:281::o;23507:355::-;23654:4;-1:-1:-1;;;;;;23696:40:0;;-1:-1:-1;;;23696:40:0;;:105;;-1:-1:-1;;;;;;;23753:48:0;;-1:-1:-1;;;23753:48:0;23696:105;:158;;;-1:-1:-1;;;;;;;;;;22117:40:0;;;23818:36;21958:207;34069:174;34144:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34144:29:0;-1:-1:-1;;;;;34144:29:0;;;;;;;;:24;;34198:23;34144:24;34198:14;:23::i;:::-;-1:-1:-1;;;;;34189:46:0;;;;;;;;;;;34069:174;;:::o;45901:117::-;45998:1;45980:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;45901:117:0:o;31020:110::-;31096:26;31106:2;31110:7;31096:26;;;;;;;;;;;;:9;:26::i;30226:452::-;30355:4;30021:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30021:16:0;30377:110;;;;-1:-1:-1;;;30377:110:0;;12044:2:1;30377:110:0;;;12026:21:1;12083:2;12063:18;;;12056:30;12122:34;12102:18;;;12095:62;-1:-1:-1;;;12173:18:1;;;12166:42;12225:19;;30377:110:0;11842:408:1;30377:110:0;30498:13;30514:23;30529:7;30514:14;:23::i;:::-;30498:39;;30567:5;-1:-1:-1;;;;;30556:16:0;:7;-1:-1:-1;;;;;30556:16:0;;:64;;;;30613:7;-1:-1:-1;;;;;30589:31:0;:20;30601:7;30589:11;:20::i;:::-;-1:-1:-1;;;;;30589:31:0;;30556:64;:113;;;-1:-1:-1;;;;;;27207:25:0;;;27178:4;27207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30637:32;30548:122;30226:452;-1:-1:-1;;;;30226:452:0:o;33336:615::-;33509:4;-1:-1:-1;;;;;33482:31:0;:23;33497:7;33482:14;:23::i;:::-;-1:-1:-1;;;;;33482:31:0;;33460:122;;;;-1:-1:-1;;;33460:122:0;;16259:2:1;33460:122:0;;;16241:21:1;16298:2;16278:18;;;16271:30;16337:34;16317:18;;;16310:62;-1:-1:-1;;;16388:18:1;;;16381:39;16437:19;;33460:122:0;16057:405:1;33460:122:0;-1:-1:-1;;;;;33601:16:0;;33593:65;;;;-1:-1:-1;;;33593:65:0;;10579:2:1;33593:65:0;;;10561:21:1;10618:2;10598:18;;;10591:30;10657:34;10637:18;;;10630:62;-1:-1:-1;;;10708:18:1;;;10701:34;10752:19;;33593:65:0;10377:400:1;33593:65:0;33671:39;33692:4;33698:2;33702:7;33671:20;:39::i;:::-;33775:29;33792:1;33796:7;33775:8;:29::i;:::-;-1:-1:-1;;;;;33817:15:0;;;;;;:9;:15;;;;;:20;;33836:1;;33817:15;:20;;33836:1;;33817:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33848:13:0;;;;;;:9;:13;;;;;:18;;33865:1;;33848:13;:18;;33865:1;;33848:18;:::i;:::-;;;;-1:-1:-1;;33877:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33877:21:0;-1:-1:-1;;;;;33877:21:0;;;;;;;;;33916:27;;33877:16;;33916:27;;;;;;;33336:615;;;:::o;29267:352::-;29424:28;29434:4;29440:2;29444:7;29424:9;:28::i;:::-;29485:48;29508:4;29514:2;29518:7;29527:5;29485:22;:48::i;:::-;29463:148;;;;-1:-1:-1;;;29463:148:0;;;;;;;:::i;19358:723::-;19414:13;19635:10;19631:53;;-1:-1:-1;;19662:10:0;;;;;;;;;;;;-1:-1:-1;;;19662:10:0;;;;;19358:723::o;19631:53::-;19709:5;19694:12;19750:78;19757:9;;19750:78;;19783:8;;;;:::i;:::-;;-1:-1:-1;19806:10:0;;-1:-1:-1;19814:2:0;19806:10;;:::i;:::-;;;19750:78;;;19838:19;19870:6;19860:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19860:17:0;;19838:39;;19888:154;19895:10;;19888:154;;19922:11;19932:1;19922:11;;:::i;:::-;;-1:-1:-1;19991:10:0;19999:2;19991:5;:10;:::i;:::-;19978:24;;:2;:24;:::i;:::-;19965:39;;19948:6;19955;19948:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19948:56:0;;;;;;;;-1:-1:-1;20019:11:0;20028:2;20019:11;;:::i;:::-;;;19888:154;;31357:321;31487:18;31493:2;31497:7;31487:5;:18::i;:::-;31538:54;31569:1;31573:2;31577:7;31586:5;31538:22;:54::i;:::-;31516:154;;;;-1:-1:-1;;;31516:154:0;;;;;;;:::i;40496:589::-;-1:-1:-1;;;;;40702:18:0;;40698:187;;40737:40;40769:7;41912:10;:17;;41885:24;;;;:15;:24;;;;;:44;;;41940:24;;;;;;;;;;;;41808:164;40737:40;40698:187;;;40807:2;-1:-1:-1;;;;;40799:10:0;:4;-1:-1:-1;;;;;40799:10:0;;40795:90;;40826:47;40859:4;40865:7;40826:32;:47::i;:::-;-1:-1:-1;;;;;40899:16:0;;40895:183;;40932:45;40969:7;40932:36;:45::i;40895:183::-;41005:4;-1:-1:-1;;;;;40999:10:0;:2;-1:-1:-1;;;;;40999:10:0;;40995:83;;41026:40;41054:2;41058:7;41026:27;:40::i;34808:1053::-;34963:4;-1:-1:-1;;;;;34984:13:0;;10465:20;10513:8;34980:874;;35037:175;;-1:-1:-1;;;35037:175:0;;-1:-1:-1;;;;;35037:36:0;;;;;:175;;18766:10;;35131:4;;35158:7;;35188:5;;35037:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35037:175:0;;;;;;;;-1:-1:-1;;35037:175:0;;;;;;;;;;;;:::i;:::-;;;35016:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35399:13:0;;35395:389;;35442:108;;-1:-1:-1;;;35442:108:0;;;;;;;:::i;35395:389::-;35734:6;35728:13;35719:6;35715:2;35711:15;35704:38;35016:783;-1:-1:-1;;;;;;35276:55:0;-1:-1:-1;;;35276:55:0;;-1:-1:-1;35269:62:0;;34980:874;-1:-1:-1;35838:4:0;34808:1053;;;;;;:::o;32014:382::-;-1:-1:-1;;;;;32094:16:0;;32086:61;;;;-1:-1:-1;;;32086:61:0;;14059:2:1;32086:61:0;;;14041:21:1;;;14078:18;;;14071:30;14137:34;14117:18;;;14110:62;14189:18;;32086:61:0;13857:356:1;32086:61:0;29997:4;30021:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30021:16:0;:30;32158:58;;;;-1:-1:-1;;;32158:58:0;;9819:2:1;32158:58:0;;;9801:21:1;9858:2;9838:18;;;9831:30;9897;9877:18;;;9870:58;9945:18;;32158:58:0;9617:352:1;32158:58:0;32229:45;32258:1;32262:2;32266:7;32229:20;:45::i;:::-;-1:-1:-1;;;;;32287:13:0;;;;;;:9;:13;;;;;:18;;32304:1;;32287:13;:18;;32304:1;;32287:18;:::i;:::-;;;;-1:-1:-1;;32316:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32316:21:0;-1:-1:-1;;;;;32316:21:0;;;;;;;;32355:33;;32316:16;;;32355:33;;32316:16;;32355:33;32014:382;;:::o;42599:1002::-;42879:22;42929:1;42904:22;42921:4;42904:16;:22::i;:::-;:26;;;;:::i;:::-;42941:18;42962:26;;;:17;:26;;;;;;42879:51;;-1:-1:-1;43095:28:0;;;43091:328;;-1:-1:-1;;;;;43162:18:0;;43140:19;43162:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43213:30;;;;;;:44;;;43330:30;;:17;:30;;;;;:43;;;43091:328;-1:-1:-1;43515:26:0;;;;:17;:26;;;;;;;;43508:33;;;-1:-1:-1;;;;;43559:18:0;;;;;:12;:18;;;;;:34;;;;;;;43552:41;42599:1002::o;43896:1079::-;44174:10;:17;44149:22;;44174:21;;44194:1;;44174:21;:::i;:::-;44206:18;44227:24;;;:15;:24;;;;;;44600:10;:26;;44149:46;;-1:-1:-1;44227:24:0;;44149:46;;44600:26;;;;;;:::i;:::-;;;;;;;;;44578:48;;44664:11;44639:10;44650;44639:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44744:28;;;:15;:28;;;;;;;:41;;;44916:24;;;;;44909:31;44951:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43967:1008;;;43896:1079;:::o;41386:221::-;41471:14;41488:20;41505:2;41488:16;:20::i;:::-;-1:-1:-1;;;;;41519:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41564:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41386:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:185::-;5224:3;5262:5;5256:12;5277:52;5322:6;5317:3;5310:4;5303:5;5299:16;5277:52;:::i;:::-;5345:16;;;;;5182:185;-1:-1:-1;;5182:185:1:o;5372:1174::-;5548:3;5577:1;5610:6;5604:13;5640:3;5662:1;5690:9;5686:2;5682:18;5672:28;;5750:2;5739:9;5735:18;5772;5762:61;;5816:4;5808:6;5804:17;5794:27;;5762:61;5842:2;5890;5882:6;5879:14;5859:18;5856:38;5853:165;;;-1:-1:-1;;;5917:33:1;;5973:4;5970:1;5963:15;6003:4;5924:3;5991:17;5853:165;6034:18;6061:104;;;;6179:1;6174:320;;;;6027:467;;6061:104;-1:-1:-1;;6094:24:1;;6082:37;;6139:16;;;;-1:-1:-1;6061:104:1;;6174:320;19027:1;19020:14;;;19064:4;19051:18;;6269:1;6283:165;6297:6;6294:1;6291:13;6283:165;;;6375:14;;6362:11;;;6355:35;6418:16;;;;6312:10;;6283:165;;;6287:3;;6477:6;6472:3;6468:16;6461:23;;6027:467;;;;;;;6510:30;6536:3;6528:6;6510:30;:::i;:::-;6503:37;5372:1174;-1:-1:-1;;;;;5372:1174:1:o;6759:488::-;-1:-1:-1;;;;;7028:15:1;;;7010:34;;7080:15;;7075:2;7060:18;;7053:43;7127:2;7112:18;;7105:34;;;7175:3;7170:2;7155:18;;7148:31;;;6953:4;;7196:45;;7221:19;;7213:6;7196:45;:::i;:::-;7188:53;6759:488;-1:-1:-1;;;;;;6759:488:1:o;7444:219::-;7593:2;7582:9;7575:21;7556:4;7613:44;7653:2;7642:9;7638:18;7630:6;7613:44;:::i;8791:414::-;8993:2;8975:21;;;9032:2;9012:18;;;9005:30;9071:34;9066:2;9051:18;;9044:62;-1:-1:-1;;;9137:2:1;9122:18;;9115:48;9195:3;9180:19;;8791:414::o;9974:398::-;10176:2;10158:21;;;10215:2;10195:18;;;10188:30;10254:34;10249:2;10234:18;;10227:62;-1:-1:-1;;;10320:2:1;10305:18;;10298:32;10362:3;10347:19;;9974:398::o;14982:356::-;15184:2;15166:21;;;15203:18;;;15196:30;15262:34;15257:2;15242:18;;15235:62;15329:2;15314:18;;14982:356::o;16869:413::-;17071:2;17053:21;;;17110:2;17090:18;;;17083:30;17149:34;17144:2;17129:18;;17122:62;-1:-1:-1;;;17215:2:1;17200:18;;17193:47;17272:3;17257:19;;16869:413::o;19080:128::-;19120:3;19151:1;19147:6;19144:1;19141:13;19138:39;;;19157:18;;:::i;:::-;-1:-1:-1;19193:9:1;;19080:128::o;19213:120::-;19253:1;19279;19269:35;;19284:18;;:::i;:::-;-1:-1:-1;19318:9:1;;19213:120::o;19338:168::-;19378:7;19444:1;19440;19436:6;19432:14;19429:1;19426:21;19421:1;19414:9;19407:17;19403:45;19400:71;;;19451:18;;:::i;:::-;-1:-1:-1;19491:9:1;;19338:168::o;19511:125::-;19551:4;19579:1;19576;19573:8;19570:34;;;19584:18;;:::i;:::-;-1:-1:-1;19621:9:1;;19511:125::o;19641:258::-;19713:1;19723:113;19737:6;19734:1;19731:13;19723:113;;;19813:11;;;19807:18;19794:11;;;19787:39;19759:2;19752:10;19723:113;;;19854:6;19851:1;19848:13;19845:48;;;-1:-1:-1;;19889:1:1;19871:16;;19864:27;19641:258::o;19904:380::-;19983:1;19979:12;;;;20026;;;20047:61;;20101:4;20093:6;20089:17;20079:27;;20047:61;20154:2;20146:6;20143:14;20123:18;20120:38;20117:161;;;20200:10;20195:3;20191:20;20188:1;20181:31;20235:4;20232:1;20225:15;20263:4;20260:1;20253:15;20117:161;;19904:380;;;:::o;20289:135::-;20328:3;-1:-1:-1;;20349:17:1;;20346:43;;;20369:18;;:::i;:::-;-1:-1:-1;20416:1:1;20405:13;;20289:135::o;20429:112::-;20461:1;20487;20477:35;;20492:18;;:::i;:::-;-1:-1:-1;20526:9:1;;20429:112::o;20546:127::-;20607:10;20602:3;20598:20;20595:1;20588:31;20638:4;20635:1;20628:15;20662:4;20659:1;20652:15;20678:127;20739:10;20734:3;20730:20;20727:1;20720:31;20770:4;20767:1;20760:15;20794:4;20791:1;20784:15;20810:127;20871:10;20866:3;20862:20;20859:1;20852:31;20902:4;20899:1;20892:15;20926:4;20923:1;20916:15;20942:127;21003:10;20998:3;20994:20;20991:1;20984:31;21034:4;21031:1;21024:15;21058:4;21055:1;21048:15;21074:127;21135:10;21130:3;21126:20;21123:1;21116:31;21166:4;21163:1;21156:15;21190:4;21187:1;21180:15;21206:131;-1:-1:-1;;;;;;21280:32:1;;21270:43;;21260:71;;21327:1;21324;21317:12;21260:71;21206:131;:::o

Swarm Source

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