ETH Price: $3,058.90 (+3.03%)
Gas: 12 Gwei

Token

NEON PLEXUS: Override (NPO)
 

Overview

Max Total Supply

1,006 NPO

Holders

321

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
yuhboijc.eth
Balance
1 NPO
0xc027990894203100c9a6e0050b4b86b56953eb3b
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:
OverrideNftV2

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-23
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-23
*/

//     _   ____________  _   __   ____  __    _______  ____  _______
//    / | / / ____/ __ \/ | / /  / __ \/ /   / ____/ |/ / / / / ___/
//   /  |/ / __/ / / / /  |/ /  / /_/ / /   / __/  |   / / / /\__ \ 
//  / /|  / /___/ /_/ / /|  /  / ____/ /___/ /___ /   / /_/ /___/ / 
// /_/_|_/_____/\____/_/_|_/  /_/_  /_____/_____//_/|_\____//____/  
//  / __ \ |  / / ____/ __ \/ __ \/  _/ __ \/ ____/                
//  / / / / | / / __/ / /_/ / /_/ // // / / / __/                   
// / /_/ /| |/ / /___/ _, _/ _, _// // /_/ / /___                   
// \____/ |___/_____/_/ |_/_/ |_/___/_____/_____/                   
                                                                 
// NEON PLEXUS: Override created by pixelpolyn8r & team

// Sources flattened with hardhat v2.9.3 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

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

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 @openzeppelin/contracts/token/ERC721/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (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 @openzeppelin/contracts/token/ERC721/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (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 @openzeppelin/contracts/utils/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (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 @openzeppelin/contracts/token/ERC721/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.5.0) (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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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/contracts/token/ERC721/extensions/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (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 @openzeppelin/contracts/access/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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

// 
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File contracts/OverrideNftV2.sol

// 
pragma solidity ^0.8.9;




contract OverrideNftV2 is Ownable, Pausable, ERC721Enumerable
{
    uint256 public constant MAX_SUPPLY = 9000;
    address public saleContract;
    string public baseURI = "http://cdn.neonplexus.io/collections/neon-plexus-override/preview/metadata/";

    constructor() Ownable() ERC721("NEON PLEXUS: Override", "NPO") { }

    function mintBatch(address to, uint256[] memory tokenIds) public virtual {
        require(msg.sender == saleContract, "Nice try lol");
        uint256 length = tokenIds.length;
        for (uint256 i; i < length; ++i) {
            require(tokenIds[i] != 0 && tokenIds[i] <= MAX_SUPPLY, "ID > MAX_SUPPLY");
             _safeMint(to, tokenIds[i]);
        }
    }

    function prepareSale(address _saleContract) public onlyOwner {
        saleContract = _saleContract;
    }

    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_saleContract","type":"address"}],"name":"prepareSale","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":[],"name":"saleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"newURI","type":"string"}],"name":"setBaseURI","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"}]

60806040526040518060800160405280604b815260200162003f40604b9139600c908051906020019062000035929190620001f0565b503480156200004357600080fd5b506040518060400160405280601581526020017f4e454f4e20504c455855533a204f7665727269646500000000000000000000008152506040518060400160405280600381526020017f4e504f0000000000000000000000000000000000000000000000000000000000815250620000d0620000c46200012460201b60201c565b6200012c60201b60201c565b60008060146101000a81548160ff021916908315150217905550816001908051906020019062000102929190620001f0565b5080600290805190602001906200011b929190620001f0565b50505062000305565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fe90620002cf565b90600052602060002090601f0160209004810192826200022257600085556200026e565b82601f106200023d57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026d57825182559160200191906001019062000250565b5b5090506200027d919062000281565b5090565b5b808211156200029c57600081600090555060010162000282565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e857607f821691505b60208210811415620002ff57620002fe620002a0565b5b50919050565b613c2b80620003156000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461046f578063daf6ca301461049f578063e985e9c5146104bd578063f2fde38b146104ed5761018e565b8063a22cb4651461041b578063b88d4fde14610437578063c5d67d54146104535761018e565b80636c0360eb1461036b57806370a0823114610389578063715018a6146103b957806375ceb341146103c35780638da5cb5b146103df57806395d89b41146103fd5761018e565b80632f745c591161014b5780634f6ccce7116101255780634f6ccce7146102d157806355f804b3146103015780635c975abb1461031d5780636352211e1461033b5761018e565b80632f745c591461026757806332cb6b0c1461029757806342842e0e146102b55761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a8919061260b565b610509565b6040516101ba9190612653565b60405180910390f35b6101cb610583565b6040516101d89190612707565b60405180910390f35b6101fb60048036038101906101f6919061275f565b610615565b60405161020891906127cd565b60405180910390f35b61022b60048036038101906102269190612814565b61069a565b005b6102356107b2565b6040516102429190612863565b60405180910390f35b6102656004803603810190610260919061287e565b6107bf565b005b610281600480360381019061027c9190612814565b61081f565b60405161028e9190612863565b60405180910390f35b61029f6108c4565b6040516102ac9190612863565b60405180910390f35b6102cf60048036038101906102ca919061287e565b6108ca565b005b6102eb60048036038101906102e6919061275f565b6108ea565b6040516102f89190612863565b60405180910390f35b61031b60048036038101906103169190612a06565b61095b565b005b6103256109f1565b6040516103329190612653565b60405180910390f35b6103556004803603810190610350919061275f565b610a07565b60405161036291906127cd565b60405180910390f35b610373610ab9565b6040516103809190612707565b60405180910390f35b6103a3600480360381019061039e9190612a4f565b610b47565b6040516103b09190612863565b60405180910390f35b6103c1610bff565b005b6103dd60048036038101906103d89190612b44565b610c87565b005b6103e7610de9565b6040516103f491906127cd565b60405180910390f35b610405610e12565b6040516104129190612707565b60405180910390f35b61043560048036038101906104309190612bcc565b610ea4565b005b610451600480360381019061044c9190612cad565b610eba565b005b61046d60048036038101906104689190612a4f565b610f1c565b005b6104896004803603810190610484919061275f565b610fdc565b6040516104969190612707565b60405180910390f35b6104a7611083565b6040516104b491906127cd565b60405180910390f35b6104d760048036038101906104d29190612d30565b6110a9565b6040516104e49190612653565b60405180910390f35b61050760048036038101906105029190612a4f565b61113d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057c575061057b82611235565b5b9050919050565b60606001805461059290612d9f565b80601f01602080910402602001604051908101604052809291908181526020018280546105be90612d9f565b801561060b5780601f106105e05761010080835404028352916020019161060b565b820191906000526020600020905b8154815290600101906020018083116105ee57829003601f168201915b5050505050905090565b600061062082611317565b61065f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065690612e43565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a582610a07565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070d90612ed5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610735611383565b73ffffffffffffffffffffffffffffffffffffffff16148061076457506107638161075e611383565b6110a9565b5b6107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a90612f67565b60405180910390fd5b6107ad838361138b565b505050565b6000600980549050905090565b6107d06107ca611383565b82611444565b61080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690612ff9565b60405180910390fd5b61081a838383611522565b505050565b600061082a83610b47565b821061086b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108629061308b565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61232881565b6108e583838360405180602001604052806000815250610eba565b505050565b60006108f46107b2565b8210610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061311d565b60405180910390fd5b600982815481106109495761094861313d565b5b90600052602060002001549050919050565b610963611383565b73ffffffffffffffffffffffffffffffffffffffff16610981610de9565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906131b8565b60405180910390fd5b80600c90805190602001906109ed9291906124fc565b5050565b60008060149054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa79061324a565b60405180910390fd5b80915050919050565b600c8054610ac690612d9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290612d9f565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf906132dc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c07611383565b73ffffffffffffffffffffffffffffffffffffffff16610c25610de9565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c72906131b8565b60405180910390fd5b610c856000611789565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613348565b60405180910390fd5b60008151905060005b81811015610de3576000838281518110610d3d57610d3c61313d565b5b602002602001015114158015610d6f5750612328838281518110610d6457610d6361313d565b5b602002602001015111155b610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906133b4565b60405180910390fd5b610dd284848381518110610dc557610dc461313d565b5b602002602001015161184d565b80610ddc90613403565b9050610d20565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610e2190612d9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4d90612d9f565b8015610e9a5780601f10610e6f57610100808354040283529160200191610e9a565b820191906000526020600020905b815481529060010190602001808311610e7d57829003601f168201915b5050505050905090565b610eb6610eaf611383565b838361186b565b5050565b610ecb610ec5611383565b83611444565b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190612ff9565b60405180910390fd5b610f16848484846119d8565b50505050565b610f24611383565b73ffffffffffffffffffffffffffffffffffffffff16610f42610de9565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906131b8565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060610fe782611317565b611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906134be565b60405180910390fd5b6000611030611a34565b90506000815111611050576040518060200160405280600081525061107b565b8061105a84611ac6565b60405160200161106b92919061351a565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611145611383565b73ffffffffffffffffffffffffffffffffffffffff16611163610de9565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906131b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906135b0565b60405180910390fd5b61123281611789565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061130057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611310575061130f82611c27565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113fe83610a07565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061144f82611317565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613642565b60405180910390fd5b600061149983610a07565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061150857508373ffffffffffffffffffffffffffffffffffffffff166114f084610615565b73ffffffffffffffffffffffffffffffffffffffff16145b80611519575061151881856110a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661154282610a07565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906136d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613766565b60405180910390fd5b611613838383611c91565b61161e60008261138b565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166e9190613786565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c591906137ba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611784838383611ce9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611867828260405180602001604052806000815250611cee565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061385c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119cb9190612653565b60405180910390a3505050565b6119e3848484611522565b6119ef84848484611d49565b611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906138ee565b60405180910390fd5b50505050565b6060600c8054611a4390612d9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6f90612d9f565b8015611abc5780601f10611a9157610100808354040283529160200191611abc565b820191906000526020600020905b815481529060010190602001808311611a9f57829003601f168201915b5050505050905090565b60606000821415611b0e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c22565b600082905060005b60008214611b40578080611b2990613403565b915050600a82611b39919061393d565b9150611b16565b60008167ffffffffffffffff811115611b5c57611b5b6128db565b5b6040519080825280601f01601f191660200182016040528015611b8e5781602001600182028036833780820191505090505b5090505b60008514611c1b57600182611ba79190613786565b9150600a85611bb6919061396e565b6030611bc291906137ba565b60f81b818381518110611bd857611bd761313d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c14919061393d565b9450611b92565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c996109f1565b15611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd0906139eb565b60405180910390fd5b611ce4838383611ee0565b505050565b505050565b611cf88383611ff4565b611d056000848484611d49565b611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b906138ee565b60405180910390fd5b505050565b6000611d6a8473ffffffffffffffffffffffffffffffffffffffff166121ce565b15611ed3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d93611383565b8786866040518563ffffffff1660e01b8152600401611db59493929190613a60565b602060405180830381600087803b158015611dcf57600080fd5b505af1925050508015611e0057506040513d601f19601f82011682018060405250810190611dfd9190613ac1565b60015b611e83573d8060008114611e30576040519150601f19603f3d011682016040523d82523d6000602084013e611e35565b606091505b50600081511415611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e72906138ee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ed8565b600190505b949350505050565b611eeb8383836121f1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f2e57611f29816121f6565b611f6d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f6c57611f6b838261223f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fb057611fab816123ac565b611fef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611fee57611fed828261247d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b90613b3a565b60405180910390fd5b61206d81611317565b156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613ba6565b60405180910390fd5b6120b960008383611c91565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210991906137ba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121ca60008383611ce9565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161224c84610b47565b6122569190613786565b905060006008600084815260200190815260200160002054905081811461233b576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506123c09190613786565b90506000600a60008481526020019081526020016000205490506000600983815481106123f0576123ef61313d565b5b9060005260206000200154905080600983815481106124125761241161313d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061246157612460613bc6565b5b6001900381819060005260206000200160009055905550505050565b600061248883610b47565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461250890612d9f565b90600052602060002090601f01602090048101928261252a5760008555612571565b82601f1061254357805160ff1916838001178555612571565b82800160010185558215612571579182015b82811115612570578251825591602001919060010190612555565b5b50905061257e9190612582565b5090565b5b8082111561259b576000816000905550600101612583565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125e8816125b3565b81146125f357600080fd5b50565b600081359050612605816125df565b92915050565b600060208284031215612621576126206125a9565b5b600061262f848285016125f6565b91505092915050565b60008115159050919050565b61264d81612638565b82525050565b60006020820190506126686000830184612644565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126a857808201518184015260208101905061268d565b838111156126b7576000848401525b50505050565b6000601f19601f8301169050919050565b60006126d98261266e565b6126e38185612679565b93506126f381856020860161268a565b6126fc816126bd565b840191505092915050565b6000602082019050818103600083015261272181846126ce565b905092915050565b6000819050919050565b61273c81612729565b811461274757600080fd5b50565b60008135905061275981612733565b92915050565b600060208284031215612775576127746125a9565b5b60006127838482850161274a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127b78261278c565b9050919050565b6127c7816127ac565b82525050565b60006020820190506127e260008301846127be565b92915050565b6127f1816127ac565b81146127fc57600080fd5b50565b60008135905061280e816127e8565b92915050565b6000806040838503121561282b5761282a6125a9565b5b6000612839858286016127ff565b925050602061284a8582860161274a565b9150509250929050565b61285d81612729565b82525050565b60006020820190506128786000830184612854565b92915050565b600080600060608486031215612897576128966125a9565b5b60006128a5868287016127ff565b93505060206128b6868287016127ff565b92505060406128c78682870161274a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612913826126bd565b810181811067ffffffffffffffff82111715612932576129316128db565b5b80604052505050565b600061294561259f565b9050612951828261290a565b919050565b600067ffffffffffffffff821115612971576129706128db565b5b61297a826126bd565b9050602081019050919050565b82818337600083830152505050565b60006129a96129a484612956565b61293b565b9050828152602081018484840111156129c5576129c46128d6565b5b6129d0848285612987565b509392505050565b600082601f8301126129ed576129ec6128d1565b5b81356129fd848260208601612996565b91505092915050565b600060208284031215612a1c57612a1b6125a9565b5b600082013567ffffffffffffffff811115612a3a57612a396125ae565b5b612a46848285016129d8565b91505092915050565b600060208284031215612a6557612a646125a9565b5b6000612a73848285016127ff565b91505092915050565b600067ffffffffffffffff821115612a9757612a966128db565b5b602082029050602081019050919050565b600080fd5b6000612ac0612abb84612a7c565b61293b565b90508083825260208201905060208402830185811115612ae357612ae2612aa8565b5b835b81811015612b0c5780612af8888261274a565b845260208401935050602081019050612ae5565b5050509392505050565b600082601f830112612b2b57612b2a6128d1565b5b8135612b3b848260208601612aad565b91505092915050565b60008060408385031215612b5b57612b5a6125a9565b5b6000612b69858286016127ff565b925050602083013567ffffffffffffffff811115612b8a57612b896125ae565b5b612b9685828601612b16565b9150509250929050565b612ba981612638565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b60008060408385031215612be357612be26125a9565b5b6000612bf1858286016127ff565b9250506020612c0285828601612bb7565b9150509250929050565b600067ffffffffffffffff821115612c2757612c266128db565b5b612c30826126bd565b9050602081019050919050565b6000612c50612c4b84612c0c565b61293b565b905082815260208101848484011115612c6c57612c6b6128d6565b5b612c77848285612987565b509392505050565b600082601f830112612c9457612c936128d1565b5b8135612ca4848260208601612c3d565b91505092915050565b60008060008060808587031215612cc757612cc66125a9565b5b6000612cd5878288016127ff565b9450506020612ce6878288016127ff565b9350506040612cf78782880161274a565b925050606085013567ffffffffffffffff811115612d1857612d176125ae565b5b612d2487828801612c7f565b91505092959194509250565b60008060408385031215612d4757612d466125a9565b5b6000612d55858286016127ff565b9250506020612d66858286016127ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612db757607f821691505b60208210811415612dcb57612dca612d70565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e2d602c83612679565b9150612e3882612dd1565b604082019050919050565b60006020820190508181036000830152612e5c81612e20565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ebf602183612679565b9150612eca82612e63565b604082019050919050565b60006020820190508181036000830152612eee81612eb2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612f51603883612679565b9150612f5c82612ef5565b604082019050919050565b60006020820190508181036000830152612f8081612f44565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612fe3603183612679565b9150612fee82612f87565b604082019050919050565b6000602082019050818103600083015261301281612fd6565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613075602b83612679565b915061308082613019565b604082019050919050565b600060208201905081810360008301526130a481613068565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613107602c83612679565b9150613112826130ab565b604082019050919050565b60006020820190508181036000830152613136816130fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a2602083612679565b91506131ad8261316c565b602082019050919050565b600060208201905081810360008301526131d181613195565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613234602983612679565b915061323f826131d8565b604082019050919050565b6000602082019050818103600083015261326381613227565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006132c6602a83612679565b91506132d18261326a565b604082019050919050565b600060208201905081810360008301526132f5816132b9565b9050919050565b7f4e69636520747279206c6f6c0000000000000000000000000000000000000000600082015250565b6000613332600c83612679565b915061333d826132fc565b602082019050919050565b6000602082019050818103600083015261336181613325565b9050919050565b7f4944203e204d41585f535550504c590000000000000000000000000000000000600082015250565b600061339e600f83612679565b91506133a982613368565b602082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061340e82612729565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613441576134406133d4565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134a8602f83612679565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b600081905092915050565b60006134f48261266e565b6134fe81856134de565b935061350e81856020860161268a565b80840191505092915050565b600061352682856134e9565b915061353282846134e9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061359a602683612679565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061362c602c83612679565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136be602583612679565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613750602483612679565b915061375b826136f4565b604082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b600061379182612729565b915061379c83612729565b9250828210156137af576137ae6133d4565b5b828203905092915050565b60006137c582612729565b91506137d083612729565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613805576138046133d4565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613846601983612679565b915061385182613810565b602082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138d8603283612679565b91506138e38261387c565b604082019050919050565b60006020820190508181036000830152613907816138cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061394882612729565b915061395383612729565b9250826139635761396261390e565b5b828204905092915050565b600061397982612729565b915061398483612729565b9250826139945761399361390e565b5b828206905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139d5601083612679565b91506139e08261399f565b602082019050919050565b60006020820190508181036000830152613a04816139c8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a3282613a0b565b613a3c8185613a16565b9350613a4c81856020860161268a565b613a55816126bd565b840191505092915050565b6000608082019050613a7560008301876127be565b613a8260208301866127be565b613a8f6040830185612854565b8181036060830152613aa18184613a27565b905095945050505050565b600081519050613abb816125df565b92915050565b600060208284031215613ad757613ad66125a9565b5b6000613ae584828501613aac565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613b24602083612679565b9150613b2f82613aee565b602082019050919050565b60006020820190508181036000830152613b5381613b17565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b90601c83612679565b9150613b9b82613b5a565b602082019050919050565b60006020820190508181036000830152613bbf81613b83565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220e748592937d4b44f27399f866fab4a40a4bb907dd380ddd358a146d38a788b3864736f6c63430008090033687474703a2f2f63646e2e6e656f6e706c657875732e696f2f636f6c6c656374696f6e732f6e656f6e2d706c657875732d6f766572726964652f707265766965772f6d657461646174612f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461046f578063daf6ca301461049f578063e985e9c5146104bd578063f2fde38b146104ed5761018e565b8063a22cb4651461041b578063b88d4fde14610437578063c5d67d54146104535761018e565b80636c0360eb1461036b57806370a0823114610389578063715018a6146103b957806375ceb341146103c35780638da5cb5b146103df57806395d89b41146103fd5761018e565b80632f745c591161014b5780634f6ccce7116101255780634f6ccce7146102d157806355f804b3146103015780635c975abb1461031d5780636352211e1461033b5761018e565b80632f745c591461026757806332cb6b0c1461029757806342842e0e146102b55761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a8919061260b565b610509565b6040516101ba9190612653565b60405180910390f35b6101cb610583565b6040516101d89190612707565b60405180910390f35b6101fb60048036038101906101f6919061275f565b610615565b60405161020891906127cd565b60405180910390f35b61022b60048036038101906102269190612814565b61069a565b005b6102356107b2565b6040516102429190612863565b60405180910390f35b6102656004803603810190610260919061287e565b6107bf565b005b610281600480360381019061027c9190612814565b61081f565b60405161028e9190612863565b60405180910390f35b61029f6108c4565b6040516102ac9190612863565b60405180910390f35b6102cf60048036038101906102ca919061287e565b6108ca565b005b6102eb60048036038101906102e6919061275f565b6108ea565b6040516102f89190612863565b60405180910390f35b61031b60048036038101906103169190612a06565b61095b565b005b6103256109f1565b6040516103329190612653565b60405180910390f35b6103556004803603810190610350919061275f565b610a07565b60405161036291906127cd565b60405180910390f35b610373610ab9565b6040516103809190612707565b60405180910390f35b6103a3600480360381019061039e9190612a4f565b610b47565b6040516103b09190612863565b60405180910390f35b6103c1610bff565b005b6103dd60048036038101906103d89190612b44565b610c87565b005b6103e7610de9565b6040516103f491906127cd565b60405180910390f35b610405610e12565b6040516104129190612707565b60405180910390f35b61043560048036038101906104309190612bcc565b610ea4565b005b610451600480360381019061044c9190612cad565b610eba565b005b61046d60048036038101906104689190612a4f565b610f1c565b005b6104896004803603810190610484919061275f565b610fdc565b6040516104969190612707565b60405180910390f35b6104a7611083565b6040516104b491906127cd565b60405180910390f35b6104d760048036038101906104d29190612d30565b6110a9565b6040516104e49190612653565b60405180910390f35b61050760048036038101906105029190612a4f565b61113d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057c575061057b82611235565b5b9050919050565b60606001805461059290612d9f565b80601f01602080910402602001604051908101604052809291908181526020018280546105be90612d9f565b801561060b5780601f106105e05761010080835404028352916020019161060b565b820191906000526020600020905b8154815290600101906020018083116105ee57829003601f168201915b5050505050905090565b600061062082611317565b61065f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065690612e43565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a582610a07565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070d90612ed5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610735611383565b73ffffffffffffffffffffffffffffffffffffffff16148061076457506107638161075e611383565b6110a9565b5b6107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a90612f67565b60405180910390fd5b6107ad838361138b565b505050565b6000600980549050905090565b6107d06107ca611383565b82611444565b61080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690612ff9565b60405180910390fd5b61081a838383611522565b505050565b600061082a83610b47565b821061086b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108629061308b565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61232881565b6108e583838360405180602001604052806000815250610eba565b505050565b60006108f46107b2565b8210610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061311d565b60405180910390fd5b600982815481106109495761094861313d565b5b90600052602060002001549050919050565b610963611383565b73ffffffffffffffffffffffffffffffffffffffff16610981610de9565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906131b8565b60405180910390fd5b80600c90805190602001906109ed9291906124fc565b5050565b60008060149054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa79061324a565b60405180910390fd5b80915050919050565b600c8054610ac690612d9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290612d9f565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf906132dc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c07611383565b73ffffffffffffffffffffffffffffffffffffffff16610c25610de9565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c72906131b8565b60405180910390fd5b610c856000611789565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613348565b60405180910390fd5b60008151905060005b81811015610de3576000838281518110610d3d57610d3c61313d565b5b602002602001015114158015610d6f5750612328838281518110610d6457610d6361313d565b5b602002602001015111155b610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906133b4565b60405180910390fd5b610dd284848381518110610dc557610dc461313d565b5b602002602001015161184d565b80610ddc90613403565b9050610d20565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610e2190612d9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4d90612d9f565b8015610e9a5780601f10610e6f57610100808354040283529160200191610e9a565b820191906000526020600020905b815481529060010190602001808311610e7d57829003601f168201915b5050505050905090565b610eb6610eaf611383565b838361186b565b5050565b610ecb610ec5611383565b83611444565b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190612ff9565b60405180910390fd5b610f16848484846119d8565b50505050565b610f24611383565b73ffffffffffffffffffffffffffffffffffffffff16610f42610de9565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906131b8565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060610fe782611317565b611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906134be565b60405180910390fd5b6000611030611a34565b90506000815111611050576040518060200160405280600081525061107b565b8061105a84611ac6565b60405160200161106b92919061351a565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611145611383565b73ffffffffffffffffffffffffffffffffffffffff16611163610de9565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906131b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906135b0565b60405180910390fd5b61123281611789565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061130057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611310575061130f82611c27565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113fe83610a07565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061144f82611317565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613642565b60405180910390fd5b600061149983610a07565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061150857508373ffffffffffffffffffffffffffffffffffffffff166114f084610615565b73ffffffffffffffffffffffffffffffffffffffff16145b80611519575061151881856110a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661154282610a07565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906136d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613766565b60405180910390fd5b611613838383611c91565b61161e60008261138b565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166e9190613786565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c591906137ba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611784838383611ce9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611867828260405180602001604052806000815250611cee565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061385c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119cb9190612653565b60405180910390a3505050565b6119e3848484611522565b6119ef84848484611d49565b611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906138ee565b60405180910390fd5b50505050565b6060600c8054611a4390612d9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6f90612d9f565b8015611abc5780601f10611a9157610100808354040283529160200191611abc565b820191906000526020600020905b815481529060010190602001808311611a9f57829003601f168201915b5050505050905090565b60606000821415611b0e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c22565b600082905060005b60008214611b40578080611b2990613403565b915050600a82611b39919061393d565b9150611b16565b60008167ffffffffffffffff811115611b5c57611b5b6128db565b5b6040519080825280601f01601f191660200182016040528015611b8e5781602001600182028036833780820191505090505b5090505b60008514611c1b57600182611ba79190613786565b9150600a85611bb6919061396e565b6030611bc291906137ba565b60f81b818381518110611bd857611bd761313d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c14919061393d565b9450611b92565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c996109f1565b15611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd0906139eb565b60405180910390fd5b611ce4838383611ee0565b505050565b505050565b611cf88383611ff4565b611d056000848484611d49565b611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b906138ee565b60405180910390fd5b505050565b6000611d6a8473ffffffffffffffffffffffffffffffffffffffff166121ce565b15611ed3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d93611383565b8786866040518563ffffffff1660e01b8152600401611db59493929190613a60565b602060405180830381600087803b158015611dcf57600080fd5b505af1925050508015611e0057506040513d601f19601f82011682018060405250810190611dfd9190613ac1565b60015b611e83573d8060008114611e30576040519150601f19603f3d011682016040523d82523d6000602084013e611e35565b606091505b50600081511415611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e72906138ee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ed8565b600190505b949350505050565b611eeb8383836121f1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f2e57611f29816121f6565b611f6d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f6c57611f6b838261223f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fb057611fab816123ac565b611fef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611fee57611fed828261247d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b90613b3a565b60405180910390fd5b61206d81611317565b156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613ba6565b60405180910390fd5b6120b960008383611c91565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210991906137ba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121ca60008383611ce9565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161224c84610b47565b6122569190613786565b905060006008600084815260200190815260200160002054905081811461233b576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506123c09190613786565b90506000600a60008481526020019081526020016000205490506000600983815481106123f0576123ef61313d565b5b9060005260206000200154905080600983815481106124125761241161313d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061246157612460613bc6565b5b6001900381819060005260206000200160009055905550505050565b600061248883610b47565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461250890612d9f565b90600052602060002090601f01602090048101928261252a5760008555612571565b82601f1061254357805160ff1916838001178555612571565b82800160010185558215612571579182015b82811115612570578251825591602001919060010190612555565b5b50905061257e9190612582565b5090565b5b8082111561259b576000816000905550600101612583565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125e8816125b3565b81146125f357600080fd5b50565b600081359050612605816125df565b92915050565b600060208284031215612621576126206125a9565b5b600061262f848285016125f6565b91505092915050565b60008115159050919050565b61264d81612638565b82525050565b60006020820190506126686000830184612644565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126a857808201518184015260208101905061268d565b838111156126b7576000848401525b50505050565b6000601f19601f8301169050919050565b60006126d98261266e565b6126e38185612679565b93506126f381856020860161268a565b6126fc816126bd565b840191505092915050565b6000602082019050818103600083015261272181846126ce565b905092915050565b6000819050919050565b61273c81612729565b811461274757600080fd5b50565b60008135905061275981612733565b92915050565b600060208284031215612775576127746125a9565b5b60006127838482850161274a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127b78261278c565b9050919050565b6127c7816127ac565b82525050565b60006020820190506127e260008301846127be565b92915050565b6127f1816127ac565b81146127fc57600080fd5b50565b60008135905061280e816127e8565b92915050565b6000806040838503121561282b5761282a6125a9565b5b6000612839858286016127ff565b925050602061284a8582860161274a565b9150509250929050565b61285d81612729565b82525050565b60006020820190506128786000830184612854565b92915050565b600080600060608486031215612897576128966125a9565b5b60006128a5868287016127ff565b93505060206128b6868287016127ff565b92505060406128c78682870161274a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612913826126bd565b810181811067ffffffffffffffff82111715612932576129316128db565b5b80604052505050565b600061294561259f565b9050612951828261290a565b919050565b600067ffffffffffffffff821115612971576129706128db565b5b61297a826126bd565b9050602081019050919050565b82818337600083830152505050565b60006129a96129a484612956565b61293b565b9050828152602081018484840111156129c5576129c46128d6565b5b6129d0848285612987565b509392505050565b600082601f8301126129ed576129ec6128d1565b5b81356129fd848260208601612996565b91505092915050565b600060208284031215612a1c57612a1b6125a9565b5b600082013567ffffffffffffffff811115612a3a57612a396125ae565b5b612a46848285016129d8565b91505092915050565b600060208284031215612a6557612a646125a9565b5b6000612a73848285016127ff565b91505092915050565b600067ffffffffffffffff821115612a9757612a966128db565b5b602082029050602081019050919050565b600080fd5b6000612ac0612abb84612a7c565b61293b565b90508083825260208201905060208402830185811115612ae357612ae2612aa8565b5b835b81811015612b0c5780612af8888261274a565b845260208401935050602081019050612ae5565b5050509392505050565b600082601f830112612b2b57612b2a6128d1565b5b8135612b3b848260208601612aad565b91505092915050565b60008060408385031215612b5b57612b5a6125a9565b5b6000612b69858286016127ff565b925050602083013567ffffffffffffffff811115612b8a57612b896125ae565b5b612b9685828601612b16565b9150509250929050565b612ba981612638565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b60008060408385031215612be357612be26125a9565b5b6000612bf1858286016127ff565b9250506020612c0285828601612bb7565b9150509250929050565b600067ffffffffffffffff821115612c2757612c266128db565b5b612c30826126bd565b9050602081019050919050565b6000612c50612c4b84612c0c565b61293b565b905082815260208101848484011115612c6c57612c6b6128d6565b5b612c77848285612987565b509392505050565b600082601f830112612c9457612c936128d1565b5b8135612ca4848260208601612c3d565b91505092915050565b60008060008060808587031215612cc757612cc66125a9565b5b6000612cd5878288016127ff565b9450506020612ce6878288016127ff565b9350506040612cf78782880161274a565b925050606085013567ffffffffffffffff811115612d1857612d176125ae565b5b612d2487828801612c7f565b91505092959194509250565b60008060408385031215612d4757612d466125a9565b5b6000612d55858286016127ff565b9250506020612d66858286016127ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612db757607f821691505b60208210811415612dcb57612dca612d70565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e2d602c83612679565b9150612e3882612dd1565b604082019050919050565b60006020820190508181036000830152612e5c81612e20565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ebf602183612679565b9150612eca82612e63565b604082019050919050565b60006020820190508181036000830152612eee81612eb2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612f51603883612679565b9150612f5c82612ef5565b604082019050919050565b60006020820190508181036000830152612f8081612f44565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612fe3603183612679565b9150612fee82612f87565b604082019050919050565b6000602082019050818103600083015261301281612fd6565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613075602b83612679565b915061308082613019565b604082019050919050565b600060208201905081810360008301526130a481613068565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613107602c83612679565b9150613112826130ab565b604082019050919050565b60006020820190508181036000830152613136816130fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a2602083612679565b91506131ad8261316c565b602082019050919050565b600060208201905081810360008301526131d181613195565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613234602983612679565b915061323f826131d8565b604082019050919050565b6000602082019050818103600083015261326381613227565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006132c6602a83612679565b91506132d18261326a565b604082019050919050565b600060208201905081810360008301526132f5816132b9565b9050919050565b7f4e69636520747279206c6f6c0000000000000000000000000000000000000000600082015250565b6000613332600c83612679565b915061333d826132fc565b602082019050919050565b6000602082019050818103600083015261336181613325565b9050919050565b7f4944203e204d41585f535550504c590000000000000000000000000000000000600082015250565b600061339e600f83612679565b91506133a982613368565b602082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061340e82612729565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613441576134406133d4565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134a8602f83612679565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b600081905092915050565b60006134f48261266e565b6134fe81856134de565b935061350e81856020860161268a565b80840191505092915050565b600061352682856134e9565b915061353282846134e9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061359a602683612679565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061362c602c83612679565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136be602583612679565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613750602483612679565b915061375b826136f4565b604082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b600061379182612729565b915061379c83612729565b9250828210156137af576137ae6133d4565b5b828203905092915050565b60006137c582612729565b91506137d083612729565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613805576138046133d4565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613846601983612679565b915061385182613810565b602082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138d8603283612679565b91506138e38261387c565b604082019050919050565b60006020820190508181036000830152613907816138cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061394882612729565b915061395383612729565b9250826139635761396261390e565b5b828204905092915050565b600061397982612729565b915061398483612729565b9250826139945761399361390e565b5b828206905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139d5601083612679565b91506139e08261399f565b602082019050919050565b60006020820190508181036000830152613a04816139c8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a3282613a0b565b613a3c8185613a16565b9350613a4c81856020860161268a565b613a55816126bd565b840191505092915050565b6000608082019050613a7560008301876127be565b613a8260208301866127be565b613a8f6040830185612854565b8181036060830152613aa18184613a27565b905095945050505050565b600081519050613abb816125df565b92915050565b600060208284031215613ad757613ad66125a9565b5b6000613ae584828501613aac565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613b24602083612679565b9150613b2f82613aee565b602082019050919050565b60006020820190508181036000830152613b5381613b17565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b90601c83612679565b9150613b9b82613b5a565b602082019050919050565b60006020820190508181036000830152613bbf81613b83565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220e748592937d4b44f27399f866fab4a40a4bb907dd380ddd358a146d38a788b3864736f6c63430008090033

Deployed Bytecode Sourcemap

48874:1273:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37781:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23503:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25062:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24585:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38421:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25812:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38089:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48944:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26222:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38611:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49705:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47609:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23197:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49026:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22927:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45651:103;;;:::i;:::-;;49210:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45000:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23672:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25355:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26478:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49589:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23847:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48992:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25581:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45909:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37781:224;37883:4;37922:35;37907:50;;;:11;:50;;;;:90;;;;37961:36;37985:11;37961:23;:36::i;:::-;37907:90;37900:97;;37781:224;;;:::o;23503:100::-;23557:13;23590:5;23583:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23503:100;:::o;25062:221::-;25138:7;25166:16;25174:7;25166;:16::i;:::-;25158:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25251:15;:24;25267:7;25251:24;;;;;;;;;;;;;;;;;;;;;25244:31;;25062:221;;;:::o;24585:411::-;24666:13;24682:23;24697:7;24682:14;:23::i;:::-;24666:39;;24730:5;24724:11;;:2;:11;;;;24716:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24824:5;24808:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24833:37;24850:5;24857:12;:10;:12::i;:::-;24833:16;:37::i;:::-;24808:62;24786:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24967:21;24976:2;24980:7;24967:8;:21::i;:::-;24655:341;24585:411;;:::o;38421:113::-;38482:7;38509:10;:17;;;;38502:24;;38421:113;:::o;25812:339::-;26007:41;26026:12;:10;:12::i;:::-;26040:7;26007:18;:41::i;:::-;25999:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26115:28;26125:4;26131:2;26135:7;26115:9;:28::i;:::-;25812:339;;;:::o;38089:256::-;38186:7;38222:23;38239:5;38222:16;:23::i;:::-;38214:5;:31;38206:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38311:12;:19;38324:5;38311:19;;;;;;;;;;;;;;;:26;38331:5;38311:26;;;;;;;;;;;;38304:33;;38089:256;;;;:::o;48944:41::-;48981:4;48944:41;:::o;26222:185::-;26360:39;26377:4;26383:2;26387:7;26360:39;;;;;;;;;;;;:16;:39::i;:::-;26222:185;;;:::o;38611:233::-;38686:7;38722:30;:28;:30::i;:::-;38714:5;:38;38706:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38819:10;38830:5;38819:17;;;;;;;;:::i;:::-;;;;;;;;;;38812:24;;38611:233;;;:::o;49705:94::-;45231:12;:10;:12::i;:::-;45220:23;;:7;:5;:7::i;:::-;:23;;;45212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49785:6:::1;49775:7;:16;;;;;;;;;;;;:::i;:::-;;49705:94:::0;:::o;47609:86::-;47656:4;47680:7;;;;;;;;;;;47673:14;;47609:86;:::o;23197:239::-;23269:7;23289:13;23305:7;:16;23313:7;23305:16;;;;;;;;;;;;;;;;;;;;;23289:32;;23357:1;23340:19;;:5;:19;;;;23332:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23423:5;23416:12;;;23197:239;;;:::o;49026:101::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22927:208::-;22999:7;23044:1;23027:19;;:5;:19;;;;23019:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23111:9;:16;23121:5;23111:16;;;;;;;;;;;;;;;;23104:23;;22927:208;;;:::o;45651:103::-;45231:12;:10;:12::i;:::-;45220:23;;:7;:5;:7::i;:::-;:23;;;45212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45716:30:::1;45743:1;45716:18;:30::i;:::-;45651:103::o:0;49210:371::-;49316:12;;;;;;;;;;;49302:26;;:10;:26;;;49294:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49356:14;49373:8;:15;49356:32;;49404:9;49399:175;49419:6;49415:1;:10;49399:175;;;49470:1;49455:8;49464:1;49455:11;;;;;;;;:::i;:::-;;;;;;;;:16;;:45;;;;;48981:4;49475:8;49484:1;49475:11;;;;;;;;:::i;:::-;;;;;;;;:25;;49455:45;49447:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49536:26;49546:2;49550:8;49559:1;49550:11;;;;;;;;:::i;:::-;;;;;;;;49536:9;:26::i;:::-;49427:3;;;;:::i;:::-;;;49399:175;;;;49283:298;49210:371;;:::o;45000:87::-;45046:7;45073:6;;;;;;;;;;;45066:13;;45000:87;:::o;23672:104::-;23728:13;23761:7;23754:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23672:104;:::o;25355:155::-;25450:52;25469:12;:10;:12::i;:::-;25483:8;25493;25450:18;:52::i;:::-;25355:155;;:::o;26478:328::-;26653:41;26672:12;:10;:12::i;:::-;26686:7;26653:18;:41::i;:::-;26645:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26759:39;26773:4;26779:2;26783:7;26792:5;26759:13;:39::i;:::-;26478:328;;;;:::o;49589:108::-;45231:12;:10;:12::i;:::-;45220:23;;:7;:5;:7::i;:::-;:23;;;45212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49676:13:::1;49661:12;;:28;;;;;;;;;;;;;;;;;;49589:108:::0;:::o;23847:334::-;23920:13;23954:16;23962:7;23954;:16::i;:::-;23946:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24035:21;24059:10;:8;:10::i;:::-;24035:34;;24111:1;24093:7;24087:21;:25;:86;;;;;;;;;;;;;;;;;24139:7;24148:18;:7;:16;:18::i;:::-;24122:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24087:86;24080:93;;;23847:334;;;:::o;48992:27::-;;;;;;;;;;;;;:::o;25581:164::-;25678:4;25702:18;:25;25721:5;25702:25;;;;;;;;;;;;;;;:35;25728:8;25702:35;;;;;;;;;;;;;;;;;;;;;;;;;25695:42;;25581:164;;;;:::o;45909:201::-;45231:12;:10;:12::i;:::-;45220:23;;:7;:5;:7::i;:::-;:23;;;45212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46018:1:::1;45998:22;;:8;:22;;;;45990:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46074:28;46093:8;46074:18;:28::i;:::-;45909:201:::0;:::o;22558:305::-;22660:4;22712:25;22697:40;;;:11;:40;;;;:105;;;;22769:33;22754:48;;;:11;:48;;;;22697:105;:158;;;;22819:36;22843:11;22819:23;:36::i;:::-;22697:158;22677:178;;22558:305;;;:::o;28316:127::-;28381:4;28433:1;28405:30;;:7;:16;28413:7;28405:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28398:37;;28316:127;;;:::o;17755:98::-;17808:7;17835:10;17828:17;;17755:98;:::o;32462:174::-;32564:2;32537:15;:24;32553:7;32537:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32620:7;32616:2;32582:46;;32591:23;32606:7;32591:14;:23::i;:::-;32582:46;;;;;;;;;;;;32462:174;;:::o;28610:348::-;28703:4;28728:16;28736:7;28728;:16::i;:::-;28720:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28804:13;28820:23;28835:7;28820:14;:23::i;:::-;28804:39;;28873:5;28862:16;;:7;:16;;;:51;;;;28906:7;28882:31;;:20;28894:7;28882:11;:20::i;:::-;:31;;;28862:51;:87;;;;28917:32;28934:5;28941:7;28917:16;:32::i;:::-;28862:87;28854:96;;;28610:348;;;;:::o;31719:625::-;31878:4;31851:31;;:23;31866:7;31851:14;:23::i;:::-;:31;;;31843:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31957:1;31943:16;;:2;:16;;;;31935:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32013:39;32034:4;32040:2;32044:7;32013:20;:39::i;:::-;32117:29;32134:1;32138:7;32117:8;:29::i;:::-;32178:1;32159:9;:15;32169:4;32159:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32207:1;32190:9;:13;32200:2;32190:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32238:2;32219:7;:16;32227:7;32219:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32277:7;32273:2;32258:27;;32267:4;32258:27;;;;;;;;;;;;32298:38;32318:4;32324:2;32328:7;32298:19;:38::i;:::-;31719:625;;;:::o;46270:191::-;46344:16;46363:6;;;;;;;;;;;46344:25;;46389:8;46380:6;;:17;;;;;;;;;;;;;;;;;;46444:8;46413:40;;46434:8;46413:40;;;;;;;;;;;;46333:128;46270:191;:::o;29300:110::-;29376:26;29386:2;29390:7;29376:26;;;;;;;;;;;;:9;:26::i;:::-;29300:110;;:::o;32778:315::-;32933:8;32924:17;;:5;:17;;;;32916:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;33020:8;32982:18;:25;33001:5;32982:25;;;;;;;;;;;;;;;:35;33008:8;32982:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33066:8;33044:41;;33059:5;33044:41;;;33076:8;33044:41;;;;;;:::i;:::-;;;;;;;;32778:315;;;:::o;27688:::-;27845:28;27855:4;27861:2;27865:7;27845:9;:28::i;:::-;27892:48;27915:4;27921:2;27925:7;27934:5;27892:22;:48::i;:::-;27884:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27688:315;;;;:::o;49807:108::-;49867:13;49900:7;49893:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49807:108;:::o;18345:723::-;18401:13;18631:1;18622:5;:10;18618:53;;;18649:10;;;;;;;;;;;;;;;;;;;;;18618:53;18681:12;18696:5;18681:20;;18712:14;18737:78;18752:1;18744:4;:9;18737:78;;18770:8;;;;;:::i;:::-;;;;18801:2;18793:10;;;;;:::i;:::-;;;18737:78;;;18825:19;18857:6;18847:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18825:39;;18875:154;18891:1;18882:5;:10;18875:154;;18919:1;18909:11;;;;;:::i;:::-;;;18986:2;18978:5;:10;;;;:::i;:::-;18965:2;:24;;;;:::i;:::-;18952:39;;18935:6;18942;18935:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19015:2;19006:11;;;;;:::i;:::-;;;18875:154;;;19053:6;19039:21;;;;;18345:723;;;;:::o;20978:157::-;21063:4;21102:25;21087:40;;;:11;:40;;;;21080:47;;20978:157;;;:::o;49923:221::-;47935:8;:6;:8::i;:::-;47934:9;47926:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50091:45:::1;50118:4;50124:2;50128:7;50091:26;:45::i;:::-;49923:221:::0;;;:::o;35540:125::-;;;;:::o;29637:321::-;29767:18;29773:2;29777:7;29767:5;:18::i;:::-;29818:54;29849:1;29853:2;29857:7;29866:5;29818:22;:54::i;:::-;29796:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29637:321;;;:::o;33658:799::-;33813:4;33834:15;:2;:13;;;:15::i;:::-;33830:620;;;33886:2;33870:36;;;33907:12;:10;:12::i;:::-;33921:4;33927:7;33936:5;33870:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33866:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34129:1;34112:6;:13;:18;34108:272;;;34155:60;;;;;;;;;;:::i;:::-;;;;;;;;34108:272;34330:6;34324:13;34315:6;34311:2;34307:15;34300:38;33866:529;34003:41;;;33993:51;;;:6;:51;;;;33986:58;;;;;33830:620;34434:4;34427:11;;33658:799;;;;;;;:::o;39457:589::-;39601:45;39628:4;39634:2;39638:7;39601:26;:45::i;:::-;39679:1;39663:18;;:4;:18;;;39659:187;;;39698:40;39730:7;39698:31;:40::i;:::-;39659:187;;;39768:2;39760:10;;:4;:10;;;39756:90;;39787:47;39820:4;39826:7;39787:32;:47::i;:::-;39756:90;39659:187;39874:1;39860:16;;:2;:16;;;39856:183;;;39893:45;39930:7;39893:36;:45::i;:::-;39856:183;;;39966:4;39960:10;;:2;:10;;;39956:83;;39987:40;40015:2;40019:7;39987:27;:40::i;:::-;39956:83;39856:183;39457:589;;;:::o;30294:439::-;30388:1;30374:16;;:2;:16;;;;30366:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30447:16;30455:7;30447;:16::i;:::-;30446:17;30438:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30509:45;30538:1;30542:2;30546:7;30509:20;:45::i;:::-;30584:1;30567:9;:13;30577:2;30567:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30615:2;30596:7;:16;30604:7;30596:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30660:7;30656:2;30635:33;;30652:1;30635:33;;;;;;;;;;;;30681:44;30709:1;30713:2;30717:7;30681:19;:44::i;:::-;30294:439;;:::o;9795:326::-;9855:4;10112:1;10090:7;:19;;;:23;10083:30;;9795:326;;;:::o;35029:126::-;;;;:::o;40769:164::-;40873:10;:17;;;;40846:15;:24;40862:7;40846:24;;;;;;;;;;;:44;;;;40901:10;40917:7;40901:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40769:164;:::o;41560:988::-;41826:22;41876:1;41851:22;41868:4;41851:16;:22::i;:::-;:26;;;;:::i;:::-;41826:51;;41888:18;41909:17;:26;41927:7;41909:26;;;;;;;;;;;;41888:47;;42056:14;42042:10;:28;42038:328;;42087:19;42109:12;:18;42122:4;42109:18;;;;;;;;;;;;;;;:34;42128:14;42109:34;;;;;;;;;;;;42087:56;;42193:11;42160:12;:18;42173:4;42160:18;;;;;;;;;;;;;;;:30;42179:10;42160:30;;;;;;;;;;;:44;;;;42310:10;42277:17;:30;42295:11;42277:30;;;;;;;;;;;:43;;;;42072:294;42038:328;42462:17;:26;42480:7;42462:26;;;;;;;;;;;42455:33;;;42506:12;:18;42519:4;42506:18;;;;;;;;;;;;;;;:34;42525:14;42506:34;;;;;;;;;;;42499:41;;;41641:907;;41560:988;;:::o;42843:1079::-;43096:22;43141:1;43121:10;:17;;;;:21;;;;:::i;:::-;43096:46;;43153:18;43174:15;:24;43190:7;43174:24;;;;;;;;;;;;43153:45;;43525:19;43547:10;43558:14;43547:26;;;;;;;;:::i;:::-;;;;;;;;;;43525:48;;43611:11;43586:10;43597;43586:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;43722:10;43691:15;:28;43707:11;43691:28;;;;;;;;;;;:41;;;;43863:15;:24;43879:7;43863:24;;;;;;;;;;;43856:31;;;43898:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42914:1008;;;42843:1079;:::o;40347:221::-;40432:14;40449:20;40466:2;40449:16;:20::i;:::-;40432:37;;40507:7;40480:12;:16;40493:2;40480:16;;;;;;;;;;;;;;;:24;40497:6;40480:24;;;;;;;;;;;:34;;;;40554:6;40525:17;:26;40543:7;40525:26;;;;;;;;;;;:35;;;;40421:147;40347:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:311::-;8948:4;9038:18;9030:6;9027:30;9024:56;;;9060:18;;:::i;:::-;9024:56;9110:4;9102:6;9098:17;9090:25;;9170:4;9164;9160:15;9152:23;;8871:311;;;:::o;9188:117::-;9297:1;9294;9287:12;9328:710;9424:5;9449:81;9465:64;9522:6;9465:64;:::i;:::-;9449:81;:::i;:::-;9440:90;;9550:5;9579:6;9572:5;9565:21;9613:4;9606:5;9602:16;9595:23;;9666:4;9658:6;9654:17;9646:6;9642:30;9695:3;9687:6;9684:15;9681:122;;;9714:79;;:::i;:::-;9681:122;9829:6;9812:220;9846:6;9841:3;9838:15;9812:220;;;9921:3;9950:37;9983:3;9971:10;9950:37;:::i;:::-;9945:3;9938:50;10017:4;10012:3;10008:14;10001:21;;9888:144;9872:4;9867:3;9863:14;9856:21;;9812:220;;;9816:21;9430:608;;9328:710;;;;;:::o;10061:370::-;10132:5;10181:3;10174:4;10166:6;10162:17;10158:27;10148:122;;10189:79;;:::i;:::-;10148:122;10306:6;10293:20;10331:94;10421:3;10413:6;10406:4;10398:6;10394:17;10331:94;:::i;:::-;10322:103;;10138:293;10061:370;;;;:::o;10437:684::-;10530:6;10538;10587:2;10575:9;10566:7;10562:23;10558:32;10555:119;;;10593:79;;:::i;:::-;10555:119;10713:1;10738:53;10783:7;10774:6;10763:9;10759:22;10738:53;:::i;:::-;10728:63;;10684:117;10868:2;10857:9;10853:18;10840:32;10899:18;10891:6;10888:30;10885:117;;;10921:79;;:::i;:::-;10885:117;11026:78;11096:7;11087:6;11076:9;11072:22;11026:78;:::i;:::-;11016:88;;10811:303;10437:684;;;;;:::o;11127:116::-;11197:21;11212:5;11197:21;:::i;:::-;11190:5;11187:32;11177:60;;11233:1;11230;11223:12;11177:60;11127:116;:::o;11249:133::-;11292:5;11330:6;11317:20;11308:29;;11346:30;11370:5;11346:30;:::i;:::-;11249:133;;;;:::o;11388:468::-;11453:6;11461;11510:2;11498:9;11489:7;11485:23;11481:32;11478:119;;;11516:79;;:::i;:::-;11478:119;11636:1;11661:53;11706:7;11697:6;11686:9;11682:22;11661:53;:::i;:::-;11651:63;;11607:117;11763:2;11789:50;11831:7;11822:6;11811:9;11807:22;11789:50;:::i;:::-;11779:60;;11734:115;11388:468;;;;;:::o;11862:307::-;11923:4;12013:18;12005:6;12002:30;11999:56;;;12035:18;;:::i;:::-;11999:56;12073:29;12095:6;12073:29;:::i;:::-;12065:37;;12157:4;12151;12147:15;12139:23;;11862:307;;;:::o;12175:410::-;12252:5;12277:65;12293:48;12334:6;12293:48;:::i;:::-;12277:65;:::i;:::-;12268:74;;12365:6;12358:5;12351:21;12403:4;12396:5;12392:16;12441:3;12432:6;12427:3;12423:16;12420:25;12417:112;;;12448:79;;:::i;:::-;12417:112;12538:41;12572:6;12567:3;12562;12538:41;:::i;:::-;12258:327;12175:410;;;;;:::o;12604:338::-;12659:5;12708:3;12701:4;12693:6;12689:17;12685:27;12675:122;;12716:79;;:::i;:::-;12675:122;12833:6;12820:20;12858:78;12932:3;12924:6;12917:4;12909:6;12905:17;12858:78;:::i;:::-;12849:87;;12665:277;12604:338;;;;:::o;12948:943::-;13043:6;13051;13059;13067;13116:3;13104:9;13095:7;13091:23;13087:33;13084:120;;;13123:79;;:::i;:::-;13084:120;13243:1;13268:53;13313:7;13304:6;13293:9;13289:22;13268:53;:::i;:::-;13258:63;;13214:117;13370:2;13396:53;13441:7;13432:6;13421:9;13417:22;13396:53;:::i;:::-;13386:63;;13341:118;13498:2;13524:53;13569:7;13560:6;13549:9;13545:22;13524:53;:::i;:::-;13514:63;;13469:118;13654:2;13643:9;13639:18;13626:32;13685:18;13677:6;13674:30;13671:117;;;13707:79;;:::i;:::-;13671:117;13812:62;13866:7;13857:6;13846:9;13842:22;13812:62;:::i;:::-;13802:72;;13597:287;12948:943;;;;;;;:::o;13897:474::-;13965:6;13973;14022:2;14010:9;14001:7;13997:23;13993:32;13990:119;;;14028:79;;:::i;:::-;13990:119;14148:1;14173:53;14218:7;14209:6;14198:9;14194:22;14173:53;:::i;:::-;14163:63;;14119:117;14275:2;14301:53;14346:7;14337:6;14326:9;14322:22;14301:53;:::i;:::-;14291:63;;14246:118;13897:474;;;;;:::o;14377:180::-;14425:77;14422:1;14415:88;14522:4;14519:1;14512:15;14546:4;14543:1;14536:15;14563:320;14607:6;14644:1;14638:4;14634:12;14624:22;;14691:1;14685:4;14681:12;14712:18;14702:81;;14768:4;14760:6;14756:17;14746:27;;14702:81;14830:2;14822:6;14819:14;14799:18;14796:38;14793:84;;;14849:18;;:::i;:::-;14793:84;14614:269;14563:320;;;:::o;14889:231::-;15029:34;15025:1;15017:6;15013:14;15006:58;15098:14;15093:2;15085:6;15081:15;15074:39;14889:231;:::o;15126:366::-;15268:3;15289:67;15353:2;15348:3;15289:67;:::i;:::-;15282:74;;15365:93;15454:3;15365:93;:::i;:::-;15483:2;15478:3;15474:12;15467:19;;15126:366;;;:::o;15498:419::-;15664:4;15702:2;15691:9;15687:18;15679:26;;15751:9;15745:4;15741:20;15737:1;15726:9;15722:17;15715:47;15779:131;15905:4;15779:131;:::i;:::-;15771:139;;15498:419;;;:::o;15923:220::-;16063:34;16059:1;16051:6;16047:14;16040:58;16132:3;16127:2;16119:6;16115:15;16108:28;15923:220;:::o;16149:366::-;16291:3;16312:67;16376:2;16371:3;16312:67;:::i;:::-;16305:74;;16388:93;16477:3;16388:93;:::i;:::-;16506:2;16501:3;16497:12;16490:19;;16149:366;;;:::o;16521:419::-;16687:4;16725:2;16714:9;16710:18;16702:26;;16774:9;16768:4;16764:20;16760:1;16749:9;16745:17;16738:47;16802:131;16928:4;16802:131;:::i;:::-;16794:139;;16521:419;;;:::o;16946:243::-;17086:34;17082:1;17074:6;17070:14;17063:58;17155:26;17150:2;17142:6;17138:15;17131:51;16946:243;:::o;17195:366::-;17337:3;17358:67;17422:2;17417:3;17358:67;:::i;:::-;17351:74;;17434:93;17523:3;17434:93;:::i;:::-;17552:2;17547:3;17543:12;17536:19;;17195:366;;;:::o;17567:419::-;17733:4;17771:2;17760:9;17756:18;17748:26;;17820:9;17814:4;17810:20;17806:1;17795:9;17791:17;17784:47;17848:131;17974:4;17848:131;:::i;:::-;17840:139;;17567:419;;;:::o;17992:236::-;18132:34;18128:1;18120:6;18116:14;18109:58;18201:19;18196:2;18188:6;18184:15;18177:44;17992:236;:::o;18234:366::-;18376:3;18397:67;18461:2;18456:3;18397:67;:::i;:::-;18390:74;;18473:93;18562:3;18473:93;:::i;:::-;18591:2;18586:3;18582:12;18575:19;;18234:366;;;:::o;18606:419::-;18772:4;18810:2;18799:9;18795:18;18787:26;;18859:9;18853:4;18849:20;18845:1;18834:9;18830:17;18823:47;18887:131;19013:4;18887:131;:::i;:::-;18879:139;;18606:419;;;:::o;19031:230::-;19171:34;19167:1;19159:6;19155:14;19148:58;19240:13;19235:2;19227:6;19223:15;19216:38;19031:230;:::o;19267:366::-;19409:3;19430:67;19494:2;19489:3;19430:67;:::i;:::-;19423:74;;19506:93;19595:3;19506:93;:::i;:::-;19624:2;19619:3;19615:12;19608:19;;19267:366;;;:::o;19639:419::-;19805:4;19843:2;19832:9;19828:18;19820:26;;19892:9;19886:4;19882:20;19878:1;19867:9;19863:17;19856:47;19920:131;20046:4;19920:131;:::i;:::-;19912:139;;19639:419;;;:::o;20064:231::-;20204:34;20200:1;20192:6;20188:14;20181:58;20273:14;20268:2;20260:6;20256:15;20249:39;20064:231;:::o;20301:366::-;20443:3;20464:67;20528:2;20523:3;20464:67;:::i;:::-;20457:74;;20540:93;20629:3;20540:93;:::i;:::-;20658:2;20653:3;20649:12;20642:19;;20301:366;;;:::o;20673:419::-;20839:4;20877:2;20866:9;20862:18;20854:26;;20926:9;20920:4;20916:20;20912:1;20901:9;20897:17;20890:47;20954:131;21080:4;20954:131;:::i;:::-;20946:139;;20673:419;;;:::o;21098:180::-;21146:77;21143:1;21136:88;21243:4;21240:1;21233:15;21267:4;21264:1;21257:15;21284:182;21424:34;21420:1;21412:6;21408:14;21401:58;21284:182;:::o;21472:366::-;21614:3;21635:67;21699:2;21694:3;21635:67;:::i;:::-;21628:74;;21711:93;21800:3;21711:93;:::i;:::-;21829:2;21824:3;21820:12;21813:19;;21472:366;;;:::o;21844:419::-;22010:4;22048:2;22037:9;22033:18;22025:26;;22097:9;22091:4;22087:20;22083:1;22072:9;22068:17;22061:47;22125:131;22251:4;22125:131;:::i;:::-;22117:139;;21844:419;;;:::o;22269:228::-;22409:34;22405:1;22397:6;22393:14;22386:58;22478:11;22473:2;22465:6;22461:15;22454:36;22269:228;:::o;22503:366::-;22645:3;22666:67;22730:2;22725:3;22666:67;:::i;:::-;22659:74;;22742:93;22831:3;22742:93;:::i;:::-;22860:2;22855:3;22851:12;22844:19;;22503:366;;;:::o;22875:419::-;23041:4;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;22875:419;;;:::o;23300:229::-;23440:34;23436:1;23428:6;23424:14;23417:58;23509:12;23504:2;23496:6;23492:15;23485:37;23300:229;:::o;23535:366::-;23677:3;23698:67;23762:2;23757:3;23698:67;:::i;:::-;23691:74;;23774:93;23863:3;23774:93;:::i;:::-;23892:2;23887:3;23883:12;23876:19;;23535:366;;;:::o;23907:419::-;24073:4;24111:2;24100:9;24096:18;24088:26;;24160:9;24154:4;24150:20;24146:1;24135:9;24131:17;24124:47;24188:131;24314:4;24188:131;:::i;:::-;24180:139;;23907:419;;;:::o;24332:162::-;24472:14;24468:1;24460:6;24456:14;24449:38;24332:162;:::o;24500:366::-;24642:3;24663:67;24727:2;24722:3;24663:67;:::i;:::-;24656:74;;24739:93;24828:3;24739:93;:::i;:::-;24857:2;24852:3;24848:12;24841:19;;24500:366;;;:::o;24872:419::-;25038:4;25076:2;25065:9;25061:18;25053:26;;25125:9;25119:4;25115:20;25111:1;25100:9;25096:17;25089:47;25153:131;25279:4;25153:131;:::i;:::-;25145:139;;24872:419;;;:::o;25297:165::-;25437:17;25433:1;25425:6;25421:14;25414:41;25297:165;:::o;25468:366::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:419::-;26006:4;26044:2;26033:9;26029:18;26021:26;;26093:9;26087:4;26083:20;26079:1;26068:9;26064:17;26057:47;26121:131;26247:4;26121:131;:::i;:::-;26113:139;;25840:419;;;:::o;26265:180::-;26313:77;26310:1;26303:88;26410:4;26407:1;26400:15;26434:4;26431:1;26424:15;26451:233;26490:3;26513:24;26531:5;26513:24;:::i;:::-;26504:33;;26559:66;26552:5;26549:77;26546:103;;;26629:18;;:::i;:::-;26546:103;26676:1;26669:5;26665:13;26658:20;;26451:233;;;:::o;26690:234::-;26830:34;26826:1;26818:6;26814:14;26807:58;26899:17;26894:2;26886:6;26882:15;26875:42;26690:234;:::o;26930:366::-;27072:3;27093:67;27157:2;27152:3;27093:67;:::i;:::-;27086:74;;27169:93;27258:3;27169:93;:::i;:::-;27287:2;27282:3;27278:12;27271:19;;26930:366;;;:::o;27302:419::-;27468:4;27506:2;27495:9;27491:18;27483:26;;27555:9;27549:4;27545:20;27541:1;27530:9;27526:17;27519:47;27583:131;27709:4;27583:131;:::i;:::-;27575:139;;27302:419;;;:::o;27727:148::-;27829:11;27866:3;27851:18;;27727:148;;;;:::o;27881:377::-;27987:3;28015:39;28048:5;28015:39;:::i;:::-;28070:89;28152:6;28147:3;28070:89;:::i;:::-;28063:96;;28168:52;28213:6;28208:3;28201:4;28194:5;28190:16;28168:52;:::i;:::-;28245:6;28240:3;28236:16;28229:23;;27991:267;27881:377;;;;:::o;28264:435::-;28444:3;28466:95;28557:3;28548:6;28466:95;:::i;:::-;28459:102;;28578:95;28669:3;28660:6;28578:95;:::i;:::-;28571:102;;28690:3;28683:10;;28264:435;;;;;:::o;28705:225::-;28845:34;28841:1;28833:6;28829:14;28822:58;28914:8;28909:2;28901:6;28897:15;28890:33;28705:225;:::o;28936:366::-;29078:3;29099:67;29163:2;29158:3;29099:67;:::i;:::-;29092:74;;29175:93;29264:3;29175:93;:::i;:::-;29293:2;29288:3;29284:12;29277:19;;28936:366;;;:::o;29308:419::-;29474:4;29512:2;29501:9;29497:18;29489:26;;29561:9;29555:4;29551:20;29547:1;29536:9;29532:17;29525:47;29589:131;29715:4;29589:131;:::i;:::-;29581:139;;29308:419;;;:::o;29733:231::-;29873:34;29869:1;29861:6;29857:14;29850:58;29942:14;29937:2;29929:6;29925:15;29918:39;29733:231;:::o;29970:366::-;30112:3;30133:67;30197:2;30192:3;30133:67;:::i;:::-;30126:74;;30209:93;30298:3;30209:93;:::i;:::-;30327:2;30322:3;30318:12;30311:19;;29970:366;;;:::o;30342:419::-;30508:4;30546:2;30535:9;30531:18;30523:26;;30595:9;30589:4;30585:20;30581:1;30570:9;30566:17;30559:47;30623:131;30749:4;30623:131;:::i;:::-;30615:139;;30342:419;;;:::o;30767:224::-;30907:34;30903:1;30895:6;30891:14;30884:58;30976:7;30971:2;30963:6;30959:15;30952:32;30767:224;:::o;30997:366::-;31139:3;31160:67;31224:2;31219:3;31160:67;:::i;:::-;31153:74;;31236:93;31325:3;31236:93;:::i;:::-;31354:2;31349:3;31345:12;31338:19;;30997:366;;;:::o;31369:419::-;31535:4;31573:2;31562:9;31558:18;31550:26;;31622:9;31616:4;31612:20;31608:1;31597:9;31593:17;31586:47;31650:131;31776:4;31650:131;:::i;:::-;31642:139;;31369:419;;;:::o;31794:223::-;31934:34;31930:1;31922:6;31918:14;31911:58;32003:6;31998:2;31990:6;31986:15;31979:31;31794:223;:::o;32023:366::-;32165:3;32186:67;32250:2;32245:3;32186:67;:::i;:::-;32179:74;;32262:93;32351:3;32262:93;:::i;:::-;32380:2;32375:3;32371:12;32364:19;;32023:366;;;:::o;32395:419::-;32561:4;32599:2;32588:9;32584:18;32576:26;;32648:9;32642:4;32638:20;32634:1;32623:9;32619:17;32612:47;32676:131;32802:4;32676:131;:::i;:::-;32668:139;;32395:419;;;:::o;32820:191::-;32860:4;32880:20;32898:1;32880:20;:::i;:::-;32875:25;;32914:20;32932:1;32914:20;:::i;:::-;32909:25;;32953:1;32950;32947:8;32944:34;;;32958:18;;:::i;:::-;32944:34;33003:1;33000;32996:9;32988:17;;32820:191;;;;:::o;33017:305::-;33057:3;33076:20;33094:1;33076:20;:::i;:::-;33071:25;;33110:20;33128:1;33110:20;:::i;:::-;33105:25;;33264:1;33196:66;33192:74;33189:1;33186:81;33183:107;;;33270:18;;:::i;:::-;33183:107;33314:1;33311;33307:9;33300:16;;33017:305;;;;:::o;33328:175::-;33468:27;33464:1;33456:6;33452:14;33445:51;33328:175;:::o;33509:366::-;33651:3;33672:67;33736:2;33731:3;33672:67;:::i;:::-;33665:74;;33748:93;33837:3;33748:93;:::i;:::-;33866:2;33861:3;33857:12;33850:19;;33509:366;;;:::o;33881:419::-;34047:4;34085:2;34074:9;34070:18;34062:26;;34134:9;34128:4;34124:20;34120:1;34109:9;34105:17;34098:47;34162:131;34288:4;34162:131;:::i;:::-;34154:139;;33881:419;;;:::o;34306:237::-;34446:34;34442:1;34434:6;34430:14;34423:58;34515:20;34510:2;34502:6;34498:15;34491:45;34306:237;:::o;34549:366::-;34691:3;34712:67;34776:2;34771:3;34712:67;:::i;:::-;34705:74;;34788:93;34877:3;34788:93;:::i;:::-;34906:2;34901:3;34897:12;34890:19;;34549:366;;;:::o;34921:419::-;35087:4;35125:2;35114:9;35110:18;35102:26;;35174:9;35168:4;35164:20;35160:1;35149:9;35145:17;35138:47;35202:131;35328:4;35202:131;:::i;:::-;35194:139;;34921:419;;;:::o;35346:180::-;35394:77;35391:1;35384:88;35491:4;35488:1;35481:15;35515:4;35512:1;35505:15;35532:185;35572:1;35589:20;35607:1;35589:20;:::i;:::-;35584:25;;35623:20;35641:1;35623:20;:::i;:::-;35618:25;;35662:1;35652:35;;35667:18;;:::i;:::-;35652:35;35709:1;35706;35702:9;35697:14;;35532:185;;;;:::o;35723:176::-;35755:1;35772:20;35790:1;35772:20;:::i;:::-;35767:25;;35806:20;35824:1;35806:20;:::i;:::-;35801:25;;35845:1;35835:35;;35850:18;;:::i;:::-;35835:35;35891:1;35888;35884:9;35879:14;;35723:176;;;;:::o;35905:166::-;36045:18;36041:1;36033:6;36029:14;36022:42;35905:166;:::o;36077:366::-;36219:3;36240:67;36304:2;36299:3;36240:67;:::i;:::-;36233:74;;36316:93;36405:3;36316:93;:::i;:::-;36434:2;36429:3;36425:12;36418:19;;36077:366;;;:::o;36449:419::-;36615:4;36653:2;36642:9;36638:18;36630:26;;36702:9;36696:4;36692:20;36688:1;36677:9;36673:17;36666:47;36730:131;36856:4;36730:131;:::i;:::-;36722:139;;36449:419;;;:::o;36874:98::-;36925:6;36959:5;36953:12;36943:22;;36874:98;;;:::o;36978:168::-;37061:11;37095:6;37090:3;37083:19;37135:4;37130:3;37126:14;37111:29;;36978:168;;;;:::o;37152:360::-;37238:3;37266:38;37298:5;37266:38;:::i;:::-;37320:70;37383:6;37378:3;37320:70;:::i;:::-;37313:77;;37399:52;37444:6;37439:3;37432:4;37425:5;37421:16;37399:52;:::i;:::-;37476:29;37498:6;37476:29;:::i;:::-;37471:3;37467:39;37460:46;;37242:270;37152:360;;;;:::o;37518:640::-;37713:4;37751:3;37740:9;37736:19;37728:27;;37765:71;37833:1;37822:9;37818:17;37809:6;37765:71;:::i;:::-;37846:72;37914:2;37903:9;37899:18;37890:6;37846:72;:::i;:::-;37928;37996:2;37985:9;37981:18;37972:6;37928:72;:::i;:::-;38047:9;38041:4;38037:20;38032:2;38021:9;38017:18;38010:48;38075:76;38146:4;38137:6;38075:76;:::i;:::-;38067:84;;37518:640;;;;;;;:::o;38164:141::-;38220:5;38251:6;38245:13;38236:22;;38267:32;38293:5;38267:32;:::i;:::-;38164:141;;;;:::o;38311:349::-;38380:6;38429:2;38417:9;38408:7;38404:23;38400:32;38397:119;;;38435:79;;:::i;:::-;38397:119;38555:1;38580:63;38635:7;38626:6;38615:9;38611:22;38580:63;:::i;:::-;38570:73;;38526:127;38311:349;;;;:::o;38666:182::-;38806:34;38802:1;38794:6;38790:14;38783:58;38666:182;:::o;38854:366::-;38996:3;39017:67;39081:2;39076:3;39017:67;:::i;:::-;39010:74;;39093:93;39182:3;39093:93;:::i;:::-;39211:2;39206:3;39202:12;39195:19;;38854:366;;;:::o;39226:419::-;39392:4;39430:2;39419:9;39415:18;39407:26;;39479:9;39473:4;39469:20;39465:1;39454:9;39450:17;39443:47;39507:131;39633:4;39507:131;:::i;:::-;39499:139;;39226:419;;;:::o;39651:178::-;39791:30;39787:1;39779:6;39775:14;39768:54;39651:178;:::o;39835:366::-;39977:3;39998:67;40062:2;40057:3;39998:67;:::i;:::-;39991:74;;40074:93;40163:3;40074:93;:::i;:::-;40192:2;40187:3;40183:12;40176:19;;39835:366;;;:::o;40207:419::-;40373:4;40411:2;40400:9;40396:18;40388:26;;40460:9;40454:4;40450:20;40446:1;40435:9;40431:17;40424:47;40488:131;40614:4;40488:131;:::i;:::-;40480:139;;40207:419;;;:::o;40632:180::-;40680:77;40677:1;40670:88;40777:4;40774:1;40767:15;40801:4;40798:1;40791:15

Swarm Source

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