ETH Price: $2,624.09 (+1.98%)

Token

MoonPandas (MP)
 

Overview

Max Total Supply

262 MP

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MP
0x3d2abe9b9c41091ac465dbc21b9ee3b16e6463fb
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:
MoonPandas

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;




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

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

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


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

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}




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

/**
 * @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]

/**
 * @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 whiteed 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 whiteed 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]

/**
 * @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]

/**
 * @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]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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]

/**
 * @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]

/**
 * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}


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

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

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

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


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


/**
 * @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 whites 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/utils/math/[email protected]


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}




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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

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

  function walletOfOwner(address owner) public view returns(uint256[] memory) {
    uint256 tokenCount = balanceOf(owner);

    uint256[] memory tokenIds = new uint256[](tokenCount);
    if (tokenCount == 0)
    {
      return tokenIds;
    }

    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        tokenIds[tokenIdsIdx] = i;
        tokenIdsIdx++;
        if (tokenIdsIdx == tokenCount) {
          return tokenIds;
        }
      }
    }
    revert("ERC721A: unable to get walletOfOwner");
  }

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

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

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

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

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override {
    _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 {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

contract MoonPandas is ERC721A, Ownable {
  constructor() ERC721A("MoonPandas", "MP",20) {}

    using SafeMath for uint256;
    using Strings for uint256;

    string private baseURI;
    uint256 public constant MAX_NFT_PUBLIC = 7777;
    uint256 public constant MAX_NFT = 7777;
    uint256 public NFTPrice = 0;    //0 ETH
    bool public isActive;
      
    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isActive = _isActive;
    }

    /*
     * Function to set Base and Blind URI 
    */
    function setURIs(
        string memory _URI
    ) 
        external 
        onlyOwner 
    {
        baseURI = _URI;
    }
    
    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFT(
        uint256 _numOfTokens
    )
        public
        payable
    {
        require(isActive, 'Contract is not active');
        require(balanceOf(msg.sender)+_numOfTokens<=2,"Trying to mint too much");
        require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        _safeMint(msg.sender, _numOfTokens);
    }
  
    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to
    )
        public
        onlyOwner
    {
        for(uint256 i = 0; i < _to.length; i++){
            require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], 1);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    )
        public 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(baseURI, _tokenId.toString()));
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintMultipleByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60a06040526000805560006007556000600a553480156200001f57600080fd5b506040518060400160405280600a8152602001694d6f6f6e50616e64617360b01b8152506040518060400160405280600281526020016104d560f41b8152506014600081116200008c5760405162461bcd60e51b81526004016200008390620001d4565b60405180910390fd5b8251620000a19060019060208601906200012e565b508151620000b79060029060208501906200012e565b5060805250620000d29050620000cc620000d8565b620000dc565b62000258565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013c906200021b565b90600052602060002090601f016020900481019282620001605760008555620001ab565b82601f106200017b57805160ff1916838001178555620001ab565b82800160010185558215620001ab579182015b82811115620001ab5782518255916020019190600101906200018e565b50620001b9929150620001bd565b5090565b5b80821115620001b95760008155600101620001be565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6002810460018216806200023057607f821691505b602082108114156200025257634e487b7160e01b600052602260045260246000fd5b50919050565b60805161276662000282600039600081816112a4015281816112ce015261167d01526127666000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063d1d80f3011610064578063d1d80f30146103d2578063d7224ba0146104ce578063e985e9c5146104e3578063f2fde38b14610503576101c2565b8063a22cb46514610459578063a38bffda14610479578063b88d4fde1461048e578063c87b56dd146104ae576101c2565b8063715018a6116100d1578063715018a6146104075780638da5cb5b1461041c578063926427441461043157806395d89b4114610444576101c2565b80636352211e146103b25780636fdaddf1146103d257806370a08231146103e7576101c2565b80632750fc781161016457806342842e0e1161013e57806342842e0e14610325578063438b6300146103455780634cdb4400146103725780634f6ccce714610392576101c2565b80632750fc78146102c55780632f745c59146102e55780633031fa1a14610305576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e57806322f3e2d41461029057806323b872dd146102a5576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611be6565b610523565b6040516101f49190611dfe565b60405180910390f35b34801561020957600080fd5b50610212610586565b6040516101f49190611e09565b34801561022b57600080fd5b5061023f61023a366004611c63565b610618565b6040516101f49190611d69565b34801561025857600080fd5b5061026c610267366004611af6565b610664565b005b34801561027a57600080fd5b506102836106fd565b6040516101f49190612538565b34801561029c57600080fd5b506101e7610703565b3480156102b157600080fd5b5061026c6102c0366004611a1a565b61070c565b3480156102d157600080fd5b5061026c6102e0366004611bcc565b610717565b3480156102f157600080fd5b50610283610300366004611af6565b610769565b34801561031157600080fd5b5061026c610320366004611c1e565b610864565b34801561033157600080fd5b5061026c610340366004611a1a565b6108ba565b34801561035157600080fd5b506103656103603660046119ce565b6108d5565b6040516101f49190611dba565b34801561037e57600080fd5b5061026c61038d366004611b1f565b610a40565b34801561039e57600080fd5b506102836103ad366004611c63565b610b03565b3480156103be57600080fd5b5061023f6103cd366004611c63565b610b2f565b3480156103de57600080fd5b50610283610b41565b3480156103f357600080fd5b506102836104023660046119ce565b610b47565b34801561041357600080fd5b5061026c610b94565b34801561042857600080fd5b5061023f610bdf565b61026c61043f366004611c63565b610bee565b34801561045057600080fd5b50610212610cb0565b34801561046557600080fd5b5061026c610474366004611acd565b610cbf565b34801561048557600080fd5b50610283610d8d565b34801561049a57600080fd5b5061026c6104a9366004611a55565b610d93565b3480156104ba57600080fd5b506102126104c9366004611c63565b610dcc565b3480156104da57600080fd5b50610283610e25565b3480156104ef57600080fd5b506101e76104fe3660046119e8565b610e2b565b34801561050f57600080fd5b5061026c61051e3660046119ce565b610e59565b60006001600160e01b031982166380ac58cd60e01b148061055457506001600160e01b03198216635b5e139f60e01b145b8061056f57506001600160e01b0319821663780e9d6360e01b145b8061057e575061057e82610ec7565b90505b919050565b6060600180546105959061266e565b80601f01602080910402602001604051908101604052809291908181526020018280546105c19061266e565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b600061062382610ee0565b6106485760405162461bcd60e51b815260040161063f906124a9565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061066f82610b2f565b9050806001600160a01b0316836001600160a01b031614156106a35760405162461bcd60e51b815260040161063f906122ff565b806001600160a01b03166106b5610ee7565b6001600160a01b031614806106d157506106d1816104fe610ee7565b6106ed5760405162461bcd60e51b815260040161063f90612028565b6106f8838383610eeb565b505050565b60005490565b600b5460ff1681565b6106f8838383610f47565b61071f610ee7565b6001600160a01b0316610730610bdf565b6001600160a01b0316146107565760405162461bcd60e51b815260040161063f906121a3565b600b805460ff1916911515919091179055565b600061077483610b47565b82106107925760405162461bcd60e51b815260040161063f90611e1c565b600061079c6106fd565b905060008060005b83811015610845576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156107f657805192505b876001600160a01b0316836001600160a01b0316141561083257868414156108245750935061085e92505050565b8361082e816126a9565b9450505b508061083d816126a9565b9150506107a4565b5060405162461bcd60e51b815260040161063f9061240c565b92915050565b61086c610ee7565b6001600160a01b031661087d610bdf565b6001600160a01b0316146108a35760405162461bcd60e51b815260040161063f906121a3565b80516108b69060099060208401906118a4565b5050565b6106f883838360405180602001604052806000815250610d93565b606060006108e283610b47565b90506000816001600160401b0381111561090c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610935578160200160208202803683370190505b509050816109465791506105819050565b60006109506106fd565b905060008060005b83811015610a27576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109aa57805192505b886001600160a01b0316836001600160a01b03161415610a1457818685815181106109e557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152836109fa816126a9565b94505086841415610a145785975050505050505050610581565b5080610a1f816126a9565b915050610958565b5060405162461bcd60e51b815260040161063f90611f31565b610a48610ee7565b6001600160a01b0316610a59610bdf565b6001600160a01b031614610a7f5760405162461bcd60e51b815260040161063f906121a3565b60005b81518110156108b657611e61610a966106fd565b610aa19060016125a1565b1115610abf5760405162461bcd60e51b815260040161063f90612085565b610af1828281518110610ae257634e487b7160e01b600052603260045260246000fd5b60200260200101516001611259565b80610afb816126a9565b915050610a82565b6000610b0d6106fd565b8210610b2b5760405162461bcd60e51b815260040161063f90611eee565b5090565b6000610b3a82611273565b5192915050565b611e6181565b60006001600160a01b038216610b6f5760405162461bcd60e51b815260040161063f906120e2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610b9c610ee7565b6001600160a01b0316610bad610bdf565b6001600160a01b031614610bd35760405162461bcd60e51b815260040161063f906121a3565b610bdd6000611385565b565b6008546001600160a01b031690565b600b5460ff16610c105760405162461bcd60e51b815260040161063f9061212d565b600281610c1c33610b47565b610c2691906125a1565b1115610c445760405162461bcd60e51b815260040161063f90611ff1565b611e61610c5982610c536106fd565b906113d7565b1115610c775760405162461bcd60e51b815260040161063f906122b0565b600a543490610c8690836113ea565b14610ca35760405162461bcd60e51b815260040161063f90611fba565b610cad3382611259565b50565b6060600280546105959061266e565b610cc7610ee7565b6001600160a01b0316826001600160a01b03161415610cf85760405162461bcd60e51b815260040161063f90612227565b8060066000610d05610ee7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d49610ee7565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d819190611dfe565b60405180910390a35050565b600a5481565b610d9e848484610f47565b610daa848484846113f6565b610dc65760405162461bcd60e51b815260040161063f90612341565b50505050565b6060610dd782610ee0565b610df35760405162461bcd60e51b815260040161063f906121d8565b6009610dfe83611512565b604051602001610e0f929190611cc3565b6040516020818303038152906040529050919050565b60075481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610e61610ee7565b6001600160a01b0316610e72610bdf565b6001600160a01b031614610e985760405162461bcd60e51b815260040161063f906121a3565b6001600160a01b038116610ebe5760405162461bcd60e51b815260040161063f90611e5e565b610cad81611385565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f5282611273565b9050600081600001516001600160a01b0316610f6c610ee7565b6001600160a01b03161480610fa15750610f84610ee7565b6001600160a01b0316610f9684610618565b6001600160a01b0316145b80610fb557508151610fb5906104fe610ee7565b905080610fd45760405162461bcd60e51b815260040161063f9061225e565b846001600160a01b031682600001516001600160a01b0316146110095760405162461bcd60e51b815260040161063f9061215d565b6001600160a01b03841661102f5760405162461bcd60e51b815260040161063f90611f75565b61103c8585856001610dc6565b61104c6000848460000151610eeb565b6001600160a01b038516600090815260046020526040812080546001929061107e9084906001600160801b03166125ec565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926110ca91859116612576565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561115f8460016125a1565b6000818152600360205260409020549091506001600160a01b03166112035761118781610ee0565b156112035760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112518686866001610dc6565b505050505050565b6108b682826040518060200160405280600081525061162c565b61127b611924565b61128482610ee0565b6112a05760405162461bcd60e51b815260040161063f90611ea4565b60007f00000000000000000000000000000000000000000000000000000000000000008310611301576112f37f000000000000000000000000000000000000000000000000000000000000000084612614565b6112fe9060016125a1565b90505b825b81811061136c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611359579250610581915050565b508061136481612657565b915050611303565b5060405162461bcd60e51b815260040161063f9061245a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113e382846125a1565b9392505050565b60006113e382846125cd565b600061140a846001600160a01b031661189e565b1561150657836001600160a01b031663150b7a02611426610ee7565b8786866040518563ffffffff1660e01b81526004016114489493929190611d7d565b602060405180830381600087803b15801561146257600080fd5b505af1925050508015611492575060408051601f3d908101601f1916820190925261148f91810190611c02565b60015b6114ec573d8080156114c0576040519150601f19603f3d011682016040523d82523d6000602084013e6114c5565b606091505b5080516114e45760405162461bcd60e51b815260040161063f90612341565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150a565b5060015b949350505050565b60608161153757506040805180820190915260018152600360fc1b6020820152610581565b8160005b8115611561578061154b816126a9565b915061155a9050600a836125b9565b915061153b565b6000816001600160401b0381111561158957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115b3576020820181803683370190505b5090505b841561150a576115c8600183612614565b91506115d5600a866126c4565b6115e09060306125a1565b60f81b81838151811061160357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611625600a866125b9565b94506115b7565b6000546001600160a01b0384166116555760405162461bcd60e51b815260040161063f906123cb565b61165e81610ee0565b1561167b5760405162461bcd60e51b815260040161063f90612394565b7f00000000000000000000000000000000000000000000000000000000000000008311156116bb5760405162461bcd60e51b815260040161063f906124f6565b6116c86000858386610dc6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611724908790612576565b6001600160801b031681526020018583602001516117429190612576565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b8581101561188c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461185060008884886113f6565b61186c5760405162461bcd60e51b815260040161063f90612341565b81611876816126a9565b9250508080611884906126a9565b915050611803565b50600081815561125190878588610dc6565b3b151590565b8280546118b09061266e565b90600052602060002090601f0160209004810192826118d25760008555611918565b82601f106118eb57805160ff1916838001178555611918565b82800160010185558215611918579182015b828111156119185782518255916020019190600101906118fd565b50610b2b92915061193b565b604080518082019091526000808252602082015290565b5b80821115610b2b576000815560010161193c565b60006001600160401b0383111561196957611969612704565b61197c601f8401601f1916602001612541565b905082815283838301111561199057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461058157600080fd5b8035801515811461058157600080fd5b6000602082840312156119df578081fd5b6113e3826119a7565b600080604083850312156119fa578081fd5b611a03836119a7565b9150611a11602084016119a7565b90509250929050565b600080600060608486031215611a2e578081fd5b611a37846119a7565b9250611a45602085016119a7565b9150604084013590509250925092565b60008060008060808587031215611a6a578081fd5b611a73856119a7565b9350611a81602086016119a7565b92506040850135915060608501356001600160401b03811115611aa2578182fd5b8501601f81018713611ab2578182fd5b611ac187823560208401611950565b91505092959194509250565b60008060408385031215611adf578182fd5b611ae8836119a7565b9150611a11602084016119be565b60008060408385031215611b08578182fd5b611b11836119a7565b946020939093013593505050565b60006020808385031215611b31578182fd5b82356001600160401b0380821115611b47578384fd5b818501915085601f830112611b5a578384fd5b813581811115611b6c57611b6c612704565b8381029150611b7c848301612541565b8181528481019084860184860187018a1015611b96578788fd5b8795505b83861015611bbf57611bab816119a7565b835260019590950194918601918601611b9a565b5098975050505050505050565b600060208284031215611bdd578081fd5b6113e3826119be565b600060208284031215611bf7578081fd5b81356113e38161271a565b600060208284031215611c13578081fd5b81516113e38161271a565b600060208284031215611c2f578081fd5b81356001600160401b03811115611c44578182fd5b8201601f81018413611c54578182fd5b61150a84823560208401611950565b600060208284031215611c74578081fd5b5035919050565b60008151808452611c9381602086016020860161262b565b601f01601f19169290920160200192915050565b60008151611cb981856020860161262b565b9290920192915050565b8254600090819060028104600180831680611cdf57607f831692505b6020808410821415611cff57634e487b7160e01b87526022600452602487fd5b818015611d135760018114611d2457611d50565b60ff19861689528489019650611d50565b611d2d8b61256a565b885b86811015611d485781548b820152908501908301611d2f565b505084890196505b505050505050611d608185611ca7565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611db090830184611c7b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611df257835183529284019291840191600101611dd6565b50909695505050505050565b901515815260200190565b6000602082526113e36020830184611c7b565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526017908201527f547279696e6720746f206d696e7420746f6f206d756368000000000000000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b6040518181016001600160401b038111828210171561256257612562612704565b604052919050565b60009081526020902090565b60006001600160801b03808316818516808303821115612598576125986126d8565b01949350505050565b600082198211156125b4576125b46126d8565b500190565b6000826125c8576125c86126ee565b500490565b60008160001904831182151516156125e7576125e76126d8565b500290565b60006001600160801b038381169083168181101561260c5761260c6126d8565b039392505050565b600082821015612626576126266126d8565b500390565b60005b8381101561264657818101518382015260200161262e565b83811115610dc65750506000910152565b600081612666576126666126d8565b506000190190565b60028104600182168061268257607f821691505b602082108114156126a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126bd576126bd6126d8565b5060010190565b6000826126d3576126d36126ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cad57600080fdfea264697066735822122068e1041674e2137804069b56ac4620604563ed9d7ad26b975ee1e5dc932727b664736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063d1d80f3011610064578063d1d80f30146103d2578063d7224ba0146104ce578063e985e9c5146104e3578063f2fde38b14610503576101c2565b8063a22cb46514610459578063a38bffda14610479578063b88d4fde1461048e578063c87b56dd146104ae576101c2565b8063715018a6116100d1578063715018a6146104075780638da5cb5b1461041c578063926427441461043157806395d89b4114610444576101c2565b80636352211e146103b25780636fdaddf1146103d257806370a08231146103e7576101c2565b80632750fc781161016457806342842e0e1161013e57806342842e0e14610325578063438b6300146103455780634cdb4400146103725780634f6ccce714610392576101c2565b80632750fc78146102c55780632f745c59146102e55780633031fa1a14610305576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e57806322f3e2d41461029057806323b872dd146102a5576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611be6565b610523565b6040516101f49190611dfe565b60405180910390f35b34801561020957600080fd5b50610212610586565b6040516101f49190611e09565b34801561022b57600080fd5b5061023f61023a366004611c63565b610618565b6040516101f49190611d69565b34801561025857600080fd5b5061026c610267366004611af6565b610664565b005b34801561027a57600080fd5b506102836106fd565b6040516101f49190612538565b34801561029c57600080fd5b506101e7610703565b3480156102b157600080fd5b5061026c6102c0366004611a1a565b61070c565b3480156102d157600080fd5b5061026c6102e0366004611bcc565b610717565b3480156102f157600080fd5b50610283610300366004611af6565b610769565b34801561031157600080fd5b5061026c610320366004611c1e565b610864565b34801561033157600080fd5b5061026c610340366004611a1a565b6108ba565b34801561035157600080fd5b506103656103603660046119ce565b6108d5565b6040516101f49190611dba565b34801561037e57600080fd5b5061026c61038d366004611b1f565b610a40565b34801561039e57600080fd5b506102836103ad366004611c63565b610b03565b3480156103be57600080fd5b5061023f6103cd366004611c63565b610b2f565b3480156103de57600080fd5b50610283610b41565b3480156103f357600080fd5b506102836104023660046119ce565b610b47565b34801561041357600080fd5b5061026c610b94565b34801561042857600080fd5b5061023f610bdf565b61026c61043f366004611c63565b610bee565b34801561045057600080fd5b50610212610cb0565b34801561046557600080fd5b5061026c610474366004611acd565b610cbf565b34801561048557600080fd5b50610283610d8d565b34801561049a57600080fd5b5061026c6104a9366004611a55565b610d93565b3480156104ba57600080fd5b506102126104c9366004611c63565b610dcc565b3480156104da57600080fd5b50610283610e25565b3480156104ef57600080fd5b506101e76104fe3660046119e8565b610e2b565b34801561050f57600080fd5b5061026c61051e3660046119ce565b610e59565b60006001600160e01b031982166380ac58cd60e01b148061055457506001600160e01b03198216635b5e139f60e01b145b8061056f57506001600160e01b0319821663780e9d6360e01b145b8061057e575061057e82610ec7565b90505b919050565b6060600180546105959061266e565b80601f01602080910402602001604051908101604052809291908181526020018280546105c19061266e565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b600061062382610ee0565b6106485760405162461bcd60e51b815260040161063f906124a9565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061066f82610b2f565b9050806001600160a01b0316836001600160a01b031614156106a35760405162461bcd60e51b815260040161063f906122ff565b806001600160a01b03166106b5610ee7565b6001600160a01b031614806106d157506106d1816104fe610ee7565b6106ed5760405162461bcd60e51b815260040161063f90612028565b6106f8838383610eeb565b505050565b60005490565b600b5460ff1681565b6106f8838383610f47565b61071f610ee7565b6001600160a01b0316610730610bdf565b6001600160a01b0316146107565760405162461bcd60e51b815260040161063f906121a3565b600b805460ff1916911515919091179055565b600061077483610b47565b82106107925760405162461bcd60e51b815260040161063f90611e1c565b600061079c6106fd565b905060008060005b83811015610845576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156107f657805192505b876001600160a01b0316836001600160a01b0316141561083257868414156108245750935061085e92505050565b8361082e816126a9565b9450505b508061083d816126a9565b9150506107a4565b5060405162461bcd60e51b815260040161063f9061240c565b92915050565b61086c610ee7565b6001600160a01b031661087d610bdf565b6001600160a01b0316146108a35760405162461bcd60e51b815260040161063f906121a3565b80516108b69060099060208401906118a4565b5050565b6106f883838360405180602001604052806000815250610d93565b606060006108e283610b47565b90506000816001600160401b0381111561090c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610935578160200160208202803683370190505b509050816109465791506105819050565b60006109506106fd565b905060008060005b83811015610a27576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109aa57805192505b886001600160a01b0316836001600160a01b03161415610a1457818685815181106109e557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152836109fa816126a9565b94505086841415610a145785975050505050505050610581565b5080610a1f816126a9565b915050610958565b5060405162461bcd60e51b815260040161063f90611f31565b610a48610ee7565b6001600160a01b0316610a59610bdf565b6001600160a01b031614610a7f5760405162461bcd60e51b815260040161063f906121a3565b60005b81518110156108b657611e61610a966106fd565b610aa19060016125a1565b1115610abf5760405162461bcd60e51b815260040161063f90612085565b610af1828281518110610ae257634e487b7160e01b600052603260045260246000fd5b60200260200101516001611259565b80610afb816126a9565b915050610a82565b6000610b0d6106fd565b8210610b2b5760405162461bcd60e51b815260040161063f90611eee565b5090565b6000610b3a82611273565b5192915050565b611e6181565b60006001600160a01b038216610b6f5760405162461bcd60e51b815260040161063f906120e2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610b9c610ee7565b6001600160a01b0316610bad610bdf565b6001600160a01b031614610bd35760405162461bcd60e51b815260040161063f906121a3565b610bdd6000611385565b565b6008546001600160a01b031690565b600b5460ff16610c105760405162461bcd60e51b815260040161063f9061212d565b600281610c1c33610b47565b610c2691906125a1565b1115610c445760405162461bcd60e51b815260040161063f90611ff1565b611e61610c5982610c536106fd565b906113d7565b1115610c775760405162461bcd60e51b815260040161063f906122b0565b600a543490610c8690836113ea565b14610ca35760405162461bcd60e51b815260040161063f90611fba565b610cad3382611259565b50565b6060600280546105959061266e565b610cc7610ee7565b6001600160a01b0316826001600160a01b03161415610cf85760405162461bcd60e51b815260040161063f90612227565b8060066000610d05610ee7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d49610ee7565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d819190611dfe565b60405180910390a35050565b600a5481565b610d9e848484610f47565b610daa848484846113f6565b610dc65760405162461bcd60e51b815260040161063f90612341565b50505050565b6060610dd782610ee0565b610df35760405162461bcd60e51b815260040161063f906121d8565b6009610dfe83611512565b604051602001610e0f929190611cc3565b6040516020818303038152906040529050919050565b60075481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610e61610ee7565b6001600160a01b0316610e72610bdf565b6001600160a01b031614610e985760405162461bcd60e51b815260040161063f906121a3565b6001600160a01b038116610ebe5760405162461bcd60e51b815260040161063f90611e5e565b610cad81611385565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f5282611273565b9050600081600001516001600160a01b0316610f6c610ee7565b6001600160a01b03161480610fa15750610f84610ee7565b6001600160a01b0316610f9684610618565b6001600160a01b0316145b80610fb557508151610fb5906104fe610ee7565b905080610fd45760405162461bcd60e51b815260040161063f9061225e565b846001600160a01b031682600001516001600160a01b0316146110095760405162461bcd60e51b815260040161063f9061215d565b6001600160a01b03841661102f5760405162461bcd60e51b815260040161063f90611f75565b61103c8585856001610dc6565b61104c6000848460000151610eeb565b6001600160a01b038516600090815260046020526040812080546001929061107e9084906001600160801b03166125ec565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926110ca91859116612576565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561115f8460016125a1565b6000818152600360205260409020549091506001600160a01b03166112035761118781610ee0565b156112035760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112518686866001610dc6565b505050505050565b6108b682826040518060200160405280600081525061162c565b61127b611924565b61128482610ee0565b6112a05760405162461bcd60e51b815260040161063f90611ea4565b60007f00000000000000000000000000000000000000000000000000000000000000148310611301576112f37f000000000000000000000000000000000000000000000000000000000000001484612614565b6112fe9060016125a1565b90505b825b81811061136c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611359579250610581915050565b508061136481612657565b915050611303565b5060405162461bcd60e51b815260040161063f9061245a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113e382846125a1565b9392505050565b60006113e382846125cd565b600061140a846001600160a01b031661189e565b1561150657836001600160a01b031663150b7a02611426610ee7565b8786866040518563ffffffff1660e01b81526004016114489493929190611d7d565b602060405180830381600087803b15801561146257600080fd5b505af1925050508015611492575060408051601f3d908101601f1916820190925261148f91810190611c02565b60015b6114ec573d8080156114c0576040519150601f19603f3d011682016040523d82523d6000602084013e6114c5565b606091505b5080516114e45760405162461bcd60e51b815260040161063f90612341565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150a565b5060015b949350505050565b60608161153757506040805180820190915260018152600360fc1b6020820152610581565b8160005b8115611561578061154b816126a9565b915061155a9050600a836125b9565b915061153b565b6000816001600160401b0381111561158957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115b3576020820181803683370190505b5090505b841561150a576115c8600183612614565b91506115d5600a866126c4565b6115e09060306125a1565b60f81b81838151811061160357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611625600a866125b9565b94506115b7565b6000546001600160a01b0384166116555760405162461bcd60e51b815260040161063f906123cb565b61165e81610ee0565b1561167b5760405162461bcd60e51b815260040161063f90612394565b7f00000000000000000000000000000000000000000000000000000000000000148311156116bb5760405162461bcd60e51b815260040161063f906124f6565b6116c86000858386610dc6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611724908790612576565b6001600160801b031681526020018583602001516117429190612576565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b8581101561188c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461185060008884886113f6565b61186c5760405162461bcd60e51b815260040161063f90612341565b81611876816126a9565b9250508080611884906126a9565b915050611803565b50600081815561125190878588610dc6565b3b151590565b8280546118b09061266e565b90600052602060002090601f0160209004810192826118d25760008555611918565b82601f106118eb57805160ff1916838001178555611918565b82800160010185558215611918579182015b828111156119185782518255916020019190600101906118fd565b50610b2b92915061193b565b604080518082019091526000808252602082015290565b5b80821115610b2b576000815560010161193c565b60006001600160401b0383111561196957611969612704565b61197c601f8401601f1916602001612541565b905082815283838301111561199057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461058157600080fd5b8035801515811461058157600080fd5b6000602082840312156119df578081fd5b6113e3826119a7565b600080604083850312156119fa578081fd5b611a03836119a7565b9150611a11602084016119a7565b90509250929050565b600080600060608486031215611a2e578081fd5b611a37846119a7565b9250611a45602085016119a7565b9150604084013590509250925092565b60008060008060808587031215611a6a578081fd5b611a73856119a7565b9350611a81602086016119a7565b92506040850135915060608501356001600160401b03811115611aa2578182fd5b8501601f81018713611ab2578182fd5b611ac187823560208401611950565b91505092959194509250565b60008060408385031215611adf578182fd5b611ae8836119a7565b9150611a11602084016119be565b60008060408385031215611b08578182fd5b611b11836119a7565b946020939093013593505050565b60006020808385031215611b31578182fd5b82356001600160401b0380821115611b47578384fd5b818501915085601f830112611b5a578384fd5b813581811115611b6c57611b6c612704565b8381029150611b7c848301612541565b8181528481019084860184860187018a1015611b96578788fd5b8795505b83861015611bbf57611bab816119a7565b835260019590950194918601918601611b9a565b5098975050505050505050565b600060208284031215611bdd578081fd5b6113e3826119be565b600060208284031215611bf7578081fd5b81356113e38161271a565b600060208284031215611c13578081fd5b81516113e38161271a565b600060208284031215611c2f578081fd5b81356001600160401b03811115611c44578182fd5b8201601f81018413611c54578182fd5b61150a84823560208401611950565b600060208284031215611c74578081fd5b5035919050565b60008151808452611c9381602086016020860161262b565b601f01601f19169290920160200192915050565b60008151611cb981856020860161262b565b9290920192915050565b8254600090819060028104600180831680611cdf57607f831692505b6020808410821415611cff57634e487b7160e01b87526022600452602487fd5b818015611d135760018114611d2457611d50565b60ff19861689528489019650611d50565b611d2d8b61256a565b885b86811015611d485781548b820152908501908301611d2f565b505084890196505b505050505050611d608185611ca7565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611db090830184611c7b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611df257835183529284019291840191600101611dd6565b50909695505050505050565b901515815260200190565b6000602082526113e36020830184611c7b565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526017908201527f547279696e6720746f206d696e7420746f6f206d756368000000000000000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b6040518181016001600160401b038111828210171561256257612562612704565b604052919050565b60009081526020902090565b60006001600160801b03808316818516808303821115612598576125986126d8565b01949350505050565b600082198211156125b4576125b46126d8565b500190565b6000826125c8576125c86126ee565b500490565b60008160001904831182151516156125e7576125e76126d8565b500290565b60006001600160801b038381169083168181101561260c5761260c6126d8565b039392505050565b600082821015612626576126266126d8565b500390565b60005b8381101561264657818101518382015260200161262e565b83811115610dc65750506000910152565b600081612666576126666126d8565b506000190190565b60028104600182168061268257607f821691505b602082108114156126a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126bd576126bd6126d8565b5060010190565b6000826126d3576126d36126ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cad57600080fdfea264697066735822122068e1041674e2137804069b56ac4620604563ed9d7ad26b975ee1e5dc932727b664736f6c63430008000033

Deployed Bytecode Sourcemap

66177:2352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53937:370;;;;;;;;;;-1:-1:-1;53937:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55663:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57188:204::-;;;;;;;;;;-1:-1:-1;57188:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56751:379::-;;;;;;;;;;-1:-1:-1;56751:379:0;;;;;:::i;:::-;;:::i;:::-;;51664:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;66515:20::-;;;;;;;;;;;;;:::i;58038:150::-;;;;;;;;;;-1:-1:-1;58038:150:0;;;;;:::i;:::-;;:::i;66638:137::-;;;;;;;;;;-1:-1:-1;66638:137:0;;;;;:::i;:::-;;:::i;52292:744::-;;;;;;;;;;-1:-1:-1;52292:744:0;;;;;:::i;:::-;;:::i;66843:131::-;;;;;;;;;;-1:-1:-1;66843:131:0;;;;;:::i;:::-;;:::i;58251:165::-;;;;;;;;;;-1:-1:-1;58251:165:0;;;;;:::i;:::-;;:::i;53042:831::-;;;;;;;;;;-1:-1:-1;53042:831:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67727:321::-;;;;;;;;;;-1:-1:-1;67727:321:0;;;;;:::i;:::-;;:::i;51827:177::-;;;;;;;;;;-1:-1:-1;51827:177:0;;;;;:::i;:::-;;:::i;55486:118::-;;;;;;;;;;-1:-1:-1;55486:118:0;;;;;:::i;:::-;;:::i;66425:38::-;;;;;;;;;;;;;:::i;54363:211::-;;;;;;;;;;-1:-1:-1;54363:211:0;;;;;:::i;:::-;;:::i;2503:94::-;;;;;;;;;;;;;:::i;1852:87::-;;;;;;;;;;;;;:::i;67139:498::-;;;;;;:::i;:::-;;:::i;55818:98::-;;;;;;;;;;;;;:::i;57456:274::-;;;;;;;;;;-1:-1:-1;57456:274:0;;;;;:::i;:::-;;:::i;66470:27::-;;;;;;;;;;;;;:::i;58479:319::-;;;;;;;;;;-1:-1:-1;58479:319:0;;;;;:::i;:::-;;:::i;68192:328::-;;;;;;;;;;-1:-1:-1;68192:328:0;;;;;:::i;:::-;;:::i;62818:43::-;;;;;;;;;;;;;:::i;57793:186::-;;;;;;;;;;-1:-1:-1;57793:186:0;;;;;:::i;:::-;;:::i;2752:192::-;;;;;;;;;;-1:-1:-1;2752:192:0;;;;;:::i;:::-;;:::i;53937:370::-;54064:4;-1:-1:-1;;;;;;54094:40:0;;-1:-1:-1;;;54094:40:0;;:99;;-1:-1:-1;;;;;;;54145:48:0;;-1:-1:-1;;;54145:48:0;54094:99;:160;;;-1:-1:-1;;;;;;;54204:50:0;;-1:-1:-1;;;54204:50:0;54094:160;:207;;;;54265:36;54289:11;54265:23;:36::i;:::-;54080:221;;53937:370;;;;:::o;55663:94::-;55717:13;55746:5;55739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55663:94;:::o;57188:204::-;57256:7;57280:16;57288:7;57280;:16::i;:::-;57272:74;;;;-1:-1:-1;;;57272:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;57362:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57362:24:0;;57188:204::o;56751:379::-;56820:13;56836:24;56852:7;56836:15;:24::i;:::-;56820:40;;56881:5;-1:-1:-1;;;;;56875:11:0;:2;-1:-1:-1;;;;;56875:11:0;;;56867:58;;;;-1:-1:-1;;;56867:58:0;;;;;;;:::i;:::-;56966:5;-1:-1:-1;;;;;56950:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;56950:21:0;;:62;;;;56975:37;56992:5;56999:12;:10;:12::i;56975:37::-;56934:153;;;;-1:-1:-1;;;56934:153:0;;;;;;;:::i;:::-;57096:28;57105:2;57109:7;57118:5;57096:8;:28::i;:::-;56751:379;;;:::o;51664:94::-;51717:7;51740:12;51664:94;:::o;66515:20::-;;;;;;:::o;58038:150::-;58154:28;58164:4;58170:2;58174:7;58154:9;:28::i;66638:137::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;66747:8:::1;:20:::0;;-1:-1:-1;;66747:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66638:137::o;52292:744::-;52401:7;52436:16;52446:5;52436:9;:16::i;:::-;52428:5;:24;52420:71;;;;-1:-1:-1;;;52420:71:0;;;;;;;:::i;:::-;52498:22;52523:13;:11;:13::i;:::-;52498:38;;52543:19;52573:25;52623:9;52618:350;52642:14;52638:1;:18;52618:350;;;52672:31;52706:14;;;:11;:14;;;;;;;;;52672:48;;;;;;;;;-1:-1:-1;;;;;52672:48:0;;;;;-1:-1:-1;;;52672:48:0;;;-1:-1:-1;;;;;52672:48:0;;;;;;;;52733:28;52729:89;;52794:14;;;-1:-1:-1;52729:89:0;52851:5;-1:-1:-1;;;;;52830:26:0;:17;-1:-1:-1;;;;;52830:26:0;;52826:135;;;52888:5;52873:11;:20;52869:59;;;-1:-1:-1;52915:1:0;-1:-1:-1;52908:8:0;;-1:-1:-1;;;52908:8:0;52869:59;52938:13;;;;:::i;:::-;;;;52826:135;-1:-1:-1;52658:3:0;;;;:::i;:::-;;;;52618:350;;;;52974:56;;-1:-1:-1;;;52974:56:0;;;;;;;:::i;52292:744::-;;;;;:::o;66843:131::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;66952:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;66843:131:::0;:::o;58251:165::-;58371:39;58388:4;58394:2;58398:7;58371:39;;;;;;;;;;;;:16;:39::i;53042:831::-;53100:16;53125:18;53146:16;53156:5;53146:9;:16::i;:::-;53125:37;;53171:25;53213:10;-1:-1:-1;;;;;53199:25:0;;;;;-1:-1:-1;;;53199:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53199:25:0;-1:-1:-1;53171:53:0;-1:-1:-1;53235:15:0;53231:58;;53273:8;-1:-1:-1;53266:15:0;;-1:-1:-1;53266:15:0;53231:58;53297:22;53322:13;:11;:13::i;:::-;53297:38;;53342:19;53372:25;53422:9;53417:398;53441:14;53437:1;:18;53417:398;;;53471:31;53505:14;;;:11;:14;;;;;;;;;53471:48;;;;;;;;;-1:-1:-1;;;;;53471:48:0;;;;;-1:-1:-1;;;53471:48:0;;;-1:-1:-1;;;;;53471:48:0;;;;;;;;53532:28;53528:89;;53593:14;;;-1:-1:-1;53528:89:0;53650:5;-1:-1:-1;;;;;53629:26:0;:17;-1:-1:-1;;;;;53629:26:0;;53625:183;;;53692:1;53668:8;53677:11;53668:21;;;;;;-1:-1:-1;;;53668:21:0;;;;;;;;;;;;;;;;;;:25;53704:13;;;;:::i;:::-;;;;53747:10;53732:11;:25;53728:71;;;53779:8;53772:15;;;;;;;;;;;53728:71;-1:-1:-1;53457:3:0;;;;:::i;:::-;;;;53417:398;;;;53821:46;;-1:-1:-1;;;53821:46:0;;;;;;;:::i;67727:321::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67849:9:::1;67845:196;67868:3;:10;67864:1;:14;67845:196;;;66459:4;67907:13;:11;:13::i;:::-;:15;::::0;67921:1:::1;67907:15;:::i;:::-;:26;;67899:95;;;;-1:-1:-1::0;;;67899:95:0::1;;;;;;;:::i;:::-;68009:20;68019:3;68023:1;68019:6;;;;;;-1:-1:-1::0;;;68019:6:0::1;;;;;;;;;;;;;;;68027:1;68009:9;:20::i;:::-;67880:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67845:196;;51827:177:::0;51894:7;51926:13;:11;:13::i;:::-;51918:5;:21;51910:69;;;;-1:-1:-1;;;51910:69:0;;;;;;;:::i;:::-;-1:-1:-1;51993:5:0;51827:177::o;55486:118::-;55550:7;55573:20;55585:7;55573:11;:20::i;:::-;:25;;55486:118;-1:-1:-1;;55486:118:0:o;66425:38::-;66459:4;66425:38;:::o;54363:211::-;54427:7;-1:-1:-1;;;;;54451:19:0;;54443:75;;;;-1:-1:-1;;;54443:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;54540:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54540:27:0;;54363:211::o;2503:94::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;2568:21:::1;2586:1;2568:9;:21::i;:::-;2503:94::o:0;1852:87::-;1925:6;;-1:-1:-1;;;;;1925:6:0;1852:87;:::o;67139:498::-;67251:8;;;;67243:43;;;;-1:-1:-1;;;67243:43:0;;;;;;;:::i;:::-;67341:1;67327:12;67305:21;67315:10;67305:9;:21::i;:::-;:34;;;;:::i;:::-;:37;;67297:72;;;;-1:-1:-1;;;67297:72:0;;;;;;;:::i;:::-;66414:4;67388:31;67406:12;67388:13;:11;:13::i;:::-;:17;;:31::i;:::-;:49;;67380:109;;;;-1:-1:-1;;;67380:109:0;;;;;;;:::i;:::-;67508:8;;67538:9;;67508:26;;67521:12;67508;:26::i;:::-;:39;67500:83;;;;-1:-1:-1;;;67500:83:0;;;;;;;:::i;:::-;67594:35;67604:10;67616:12;67594:9;:35::i;:::-;67139:498;:::o;55818:98::-;55874:13;55903:7;55896:14;;;;;:::i;57456:274::-;57559:12;:10;:12::i;:::-;-1:-1:-1;;;;;57547:24:0;:8;-1:-1:-1;;;;;57547:24:0;;;57539:63;;;;-1:-1:-1;;;57539:63:0;;;;;;;:::i;:::-;57656:8;57611:18;:32;57630:12;:10;:12::i;:::-;-1:-1:-1;;;;;57611:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;57611:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;57611:53:0;;;;;;;;;;;57691:12;:10;:12::i;:::-;-1:-1:-1;;;;;57676:48:0;;57715:8;57676:48;;;;;;:::i;:::-;;;;;;;;57456:274;;:::o;66470:27::-;;;;:::o;58479:319::-;58624:28;58634:4;58640:2;58644:7;58624:9;:28::i;:::-;58675:48;58698:4;58704:2;58708:7;58717:5;58675:22;:48::i;:::-;58659:133;;;;-1:-1:-1;;;58659:133:0;;;;;;;:::i;:::-;58479:319;;;;:::o;68192:328::-;68331:13;68371:17;68379:8;68371:7;:17::i;:::-;68363:77;;;;-1:-1:-1;;;68363:77:0;;;;;;;:::i;:::-;68482:7;68491:19;:8;:17;:19::i;:::-;68465:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68451:61;;68192:328;;;:::o;62818:43::-;;;;:::o;57793:186::-;-1:-1:-1;;;;;57938:25:0;;;57915:4;57938:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57793:186::o;2752:192::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2841:22:0;::::1;2833:73;;;;-1:-1:-1::0;;;2833:73:0::1;;;;;;;:::i;:::-;2917:19;2927:8;2917:9;:19::i;21277:157::-:0;-1:-1:-1;;;;;;21386:40:0;;-1:-1:-1;;;21386:40:0;21277:157;;;:::o;59037:105::-;59094:4;59124:12;-1:-1:-1;59114:22:0;59037:105::o;665:98::-;745:10;665:98;:::o;62640:172::-;62737:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62737:29:0;-1:-1:-1;;;;;62737:29:0;;;;;;;;;62778:28;;62737:24;;62778:28;;;;;;;62640:172;;;:::o;61005:1529::-;61102:35;61140:20;61152:7;61140:11;:20::i;:::-;61102:58;;61169:22;61211:13;:18;;;-1:-1:-1;;;;;61195:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;61195:34:0;;:81;;;;61264:12;:10;:12::i;:::-;-1:-1:-1;;;;;61240:36:0;:20;61252:7;61240:11;:20::i;:::-;-1:-1:-1;;;;;61240:36:0;;61195:81;:142;;;-1:-1:-1;61304:18:0;;61287:50;;61324:12;:10;:12::i;61287:50::-;61169:169;;61363:17;61347:101;;;;-1:-1:-1;;;61347:101:0;;;;;;;:::i;:::-;61495:4;-1:-1:-1;;;;;61473:26:0;:13;:18;;;-1:-1:-1;;;;;61473:26:0;;61457:98;;;;-1:-1:-1;;;61457:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61570:16:0;;61562:66;;;;-1:-1:-1;;;61562:66:0;;;;;;;:::i;:::-;61637:43;61659:4;61665:2;61669:7;61678:1;61637:21;:43::i;:::-;61737:49;61754:1;61758:7;61767:13;:18;;;61737:8;:49::i;:::-;-1:-1:-1;;;;;61795:18:0;;;;;;:12;:18;;;;;:31;;61825:1;;61795:18;:31;;61825:1;;-1:-1:-1;;;;;61795:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;61795:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61833:16:0;;-1:-1:-1;61833:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;61833:16:0;;:29;;-1:-1:-1;;61833:29:0;;:::i;:::-;;;-1:-1:-1;;;;;61833:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61892:43:0;;;;;;;;-1:-1:-1;;;;;61892:43:0;;;;;-1:-1:-1;;;;;61918:15:0;61892:43;;;;;;;;;-1:-1:-1;61869:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;61869:66:0;-1:-1:-1;;;;61869:66:0;;;;-1:-1:-1;;;;;;61869:66:0;;;;;;;;62185:11;61881:7;-1:-1:-1;62185:11:0;:::i;:::-;62248:1;62207:24;;;:11;:24;;;;;:29;62163:33;;-1:-1:-1;;;;;;62207:29:0;62203:236;;62265:20;62273:11;62265:7;:20::i;:::-;62261:171;;;62325:97;;;;;;;;62352:18;;-1:-1:-1;;;;;62325:97:0;;;;;;62383:28;;;;-1:-1:-1;;;;;62325:97:0;;;;;;;;;-1:-1:-1;62298:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;62298:124:0;;;;;;;;;-1:-1:-1;;;;62298:124:0;-1:-1:-1;;;62298:124:0;;;;;;;;;;;;;;62261:171;62471:7;62467:2;-1:-1:-1;;;;;62452:27:0;62461:4;-1:-1:-1;;;;;62452:27:0;;;;;;;;;;;62486:42;62507:4;62513:2;62517:7;62526:1;62486:20;:42::i;:::-;61005:1529;;;;;;:::o;59148:98::-;59213:27;59223:2;59227:8;59213:27;;;;;;;;;;;;:9;:27::i;54826:606::-;54902:21;;:::i;:::-;54943:16;54951:7;54943;:16::i;:::-;54935:71;;;;-1:-1:-1;;;54935:71:0;;;;;;;:::i;:::-;55015:26;55063:12;55052:7;:23;55048:93;;55107:22;55117:12;55107:7;:22;:::i;:::-;:26;;55132:1;55107:26;:::i;:::-;55086:47;;55048:93;55169:7;55149:212;55186:18;55178:4;:26;55149:212;;55223:31;55257:17;;;:11;:17;;;;;;;;;55223:51;;;;;;;;;-1:-1:-1;;;;;55223:51:0;;;;;-1:-1:-1;;;55223:51:0;;;-1:-1:-1;;;;;55223:51:0;;;;;;;;55287:28;55283:71;;55335:9;-1:-1:-1;55328:16:0;;-1:-1:-1;;55328:16:0;55283:71;-1:-1:-1;55206:6:0;;;;:::i;:::-;;;;55149:212;;;;55369:57;;-1:-1:-1;;;55369:57:0;;;;;;;:::i;2952:173::-;3027:6;;;-1:-1:-1;;;;;3044:17:0;;;-1:-1:-1;;;;;;3044:17:0;;;;;;;3077:40;;3027:6;;;3044:17;3027:6;;3077:40;;3008:16;;3077:40;2952:173;;:::o;45649:98::-;45707:7;45734:5;45738:1;45734;:5;:::i;:::-;45727:12;45649:98;-1:-1:-1;;;45649:98:0:o;46387:::-;46445:7;46472:5;46476:1;46472;:5;:::i;64351:690::-;64488:4;64505:15;:2;-1:-1:-1;;;;;64505:13:0;;:15::i;:::-;64501:535;;;64560:2;-1:-1:-1;;;;;64544:36:0;;64581:12;:10;:12::i;:::-;64595:4;64601:7;64610:5;64544:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64544:72:0;;;;;;;;-1:-1:-1;;64544:72:0;;;;;;;;;;;;:::i;:::-;;;64531:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64775:13:0;;64771:215;;64808:61;;-1:-1:-1;;;64808:61:0;;;;;;;:::i;64771:215::-;64954:6;64948:13;64939:6;64935:2;64931:15;64924:38;64531:464;-1:-1:-1;;;;;;64666:55:0;-1:-1:-1;;;64666:55:0;;-1:-1:-1;64659:62:0;;64501:535;-1:-1:-1;65024:4:0;64501:535;64351:690;;;;;;:::o;18745:723::-;18801:13;19022:10;19018:53;;-1:-1:-1;19049:10:0;;;;;;;;;;;;-1:-1:-1;;;19049:10:0;;;;;;19018:53;19096:5;19081:12;19137:78;19144:9;;19137:78;;19170:8;;;;:::i;:::-;;-1:-1:-1;19193:10:0;;-1:-1:-1;19201:2:0;19193:10;;:::i;:::-;;;19137:78;;;19225:19;19257:6;-1:-1:-1;;;;;19247:17:0;;;;;-1:-1:-1;;;19247:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19247:17:0;;19225:39;;19275:154;19282:10;;19275:154;;19309:11;19319:1;19309:11;;:::i;:::-;;-1:-1:-1;19378:10:0;19386:2;19378:5;:10;:::i;:::-;19365:24;;:2;:24;:::i;:::-;19352:39;;19335:6;19342;19335:14;;;;;;-1:-1:-1;;;19335:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19335:56:0;;;;;;;;-1:-1:-1;19406:11:0;19415:2;19406:11;;:::i;:::-;;;19275:154;;59501:1272;59606:20;59629:12;-1:-1:-1;;;;;59656:16:0;;59648:62;;;;-1:-1:-1;;;59648:62:0;;;;;;;:::i;:::-;59847:21;59855:12;59847:7;:21::i;:::-;59846:22;59838:64;;;;-1:-1:-1;;;59838:64:0;;;;;;;:::i;:::-;59929:12;59917:8;:24;;59909:71;;;;-1:-1:-1;;;59909:71:0;;;;;;;:::i;:::-;59989:61;60019:1;60023:2;60027:12;60041:8;59989:21;:61::i;:::-;-1:-1:-1;;;;;60092:16:0;;60059:30;60092:16;;;:12;:16;;;;;;;;;60059:49;;;;;;;;;-1:-1:-1;;;;;60059:49:0;;;;;-1:-1:-1;;;60059:49:0;;;;;;;;;;;60134:119;;;;;;;;60154:19;;60059:49;;60134:119;;;60154:39;;60184:8;;60154:39;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;60237:8;60202:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;;-1:-1:-1;;;;;60115:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;60115:138:0;;;;-1:-1:-1;;60115:138:0;;;;;;;;;;;;;;;;;60288:43;;;;;;;;;;-1:-1:-1;;;;;60314:15:0;60288:43;;;;;;;;60260:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;60260:71:0;-1:-1:-1;;;;60260:71:0;;;;-1:-1:-1;;;;;;60260:71:0;;;;;;;;;;;;;;;60272:12;;60384:281;60408:8;60404:1;:12;60384:281;;;60437:38;;60462:12;;-1:-1:-1;;;;;60437:38:0;;;60454:1;;60437:38;;60454:1;;60437:38;60502:59;60533:1;60537:2;60541:12;60555:5;60502:22;:59::i;:::-;60484:150;;;;-1:-1:-1;;;60484:150:0;;;;;;;:::i;:::-;60643:14;;;;:::i;:::-;;;;60418:3;;;;;:::i;:::-;;;;60384:281;;;-1:-1:-1;60673:12:0;:27;;;60707:60;;60740:2;60744:12;60758:8;60707:20;:60::i;11128:387::-;11451:20;11499:8;;;11128:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;-1:-1:-1;;;;;106:6:1;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:162;675:20;;731:13;;724:21;714:32;;704:2;;760:1;757;750:12;775:198;;887:2;875:9;866:7;862:23;858:32;855:2;;;908:6;900;893:22;855:2;936:31;957:9;936:31;:::i;978:274::-;;;1107:2;1095:9;1086:7;1082:23;1078:32;1075:2;;;1128:6;1120;1113:22;1075:2;1156:31;1177:9;1156:31;:::i;:::-;1146:41;;1206:40;1242:2;1231:9;1227:18;1206:40;:::i;:::-;1196:50;;1065:187;;;;;:::o;1257:342::-;;;;1403:2;1391:9;1382:7;1378:23;1374:32;1371:2;;;1424:6;1416;1409:22;1371:2;1452:31;1473:9;1452:31;:::i;:::-;1442:41;;1502:40;1538:2;1527:9;1523:18;1502:40;:::i;:::-;1492:50;;1589:2;1578:9;1574:18;1561:32;1551:42;;1361:238;;;;;:::o;1604:702::-;;;;;1776:3;1764:9;1755:7;1751:23;1747:33;1744:2;;;1798:6;1790;1783:22;1744:2;1826:31;1847:9;1826:31;:::i;:::-;1816:41;;1876:40;1912:2;1901:9;1897:18;1876:40;:::i;:::-;1866:50;;1963:2;1952:9;1948:18;1935:32;1925:42;;2018:2;2007:9;2003:18;1990:32;-1:-1:-1;;;;;2037:6:1;2034:30;2031:2;;;2082:6;2074;2067:22;2031:2;2110:22;;2163:4;2155:13;;2151:27;-1:-1:-1;2141:2:1;;2197:6;2189;2182:22;2141:2;2225:75;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2225:75;:::i;:::-;2215:85;;;1734:572;;;;;;;:::o;2311:268::-;;;2437:2;2425:9;2416:7;2412:23;2408:32;2405:2;;;2458:6;2450;2443:22;2405:2;2486:31;2507:9;2486:31;:::i;:::-;2476:41;;2536:37;2569:2;2558:9;2554:18;2536:37;:::i;2584:266::-;;;2713:2;2701:9;2692:7;2688:23;2684:32;2681:2;;;2734:6;2726;2719:22;2681:2;2762:31;2783:9;2762:31;:::i;:::-;2752:41;2840:2;2825:18;;;;2812:32;;-1:-1:-1;;;2671:179:1:o;2855:1010::-;;2970:2;3013;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3079:9;3066:23;-1:-1:-1;;;;;3149:2:1;3141:6;3138:14;3135:2;;;3170:6;3162;3155:22;3135:2;3213:6;3202:9;3198:22;3188:32;;3258:7;3251:4;3247:2;3243:13;3239:27;3229:2;;3285:6;3277;3270:22;3229:2;3326;3313:16;3348:2;3344;3341:10;3338:2;;;3354:18;;:::i;:::-;3401:2;3397;3393:11;3383:21;;3424:27;3447:2;3443;3439:11;3424:27;:::i;:::-;3485:15;;;3516:12;;;;3548:11;;;3578;;;3574:20;;3571:33;-1:-1:-1;3568:2:1;;;3622:6;3614;3607:22;3568:2;3649:6;3640:15;;3664:171;3678:2;3675:1;3672:9;3664:171;;;3735:25;3756:3;3735:25;:::i;:::-;3723:38;;3696:1;3689:9;;;;;3781:12;;;;3813;;3664:171;;;-1:-1:-1;3854:5:1;2950:915;-1:-1:-1;;;;;;;;2950:915:1:o;3870:192::-;;3979:2;3967:9;3958:7;3954:23;3950:32;3947:2;;;4000:6;3992;3985:22;3947:2;4028:28;4046:9;4028:28;:::i;4067:257::-;;4178:2;4166:9;4157:7;4153:23;4149:32;4146:2;;;4199:6;4191;4184:22;4146:2;4243:9;4230:23;4262:32;4288:5;4262:32;:::i;4329:261::-;;4451:2;4439:9;4430:7;4426:23;4422:32;4419:2;;;4472:6;4464;4457:22;4419:2;4509:9;4503:16;4528:32;4554:5;4528:32;:::i;4595:482::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4738:6;4730;4723:22;4685:2;4783:9;4770:23;-1:-1:-1;;;;;4808:6:1;4805:30;4802:2;;;4853:6;4845;4838:22;4802:2;4881:22;;4934:4;4926:13;;4922:27;-1:-1:-1;4912:2:1;;4968:6;4960;4953:22;4912:2;4996:75;5063:7;5058:2;5045:16;5040:2;5036;5032:11;4996:75;:::i;5082:190::-;;5194:2;5182:9;5173:7;5169:23;5165:32;5162:2;;;5215:6;5207;5200:22;5162:2;-1:-1:-1;5243:23:1;;5152:120;-1:-1:-1;5152:120:1:o;5277:259::-;;5358:5;5352:12;5385:6;5380:3;5373:19;5401:63;5457:6;5450:4;5445:3;5441:14;5434:4;5427:5;5423:16;5401:63;:::i;:::-;5518:2;5497:15;-1:-1:-1;;5493:29:1;5484:39;;;;5525:4;5480:50;;5328:208;-1:-1:-1;;5328:208:1:o;5541:187::-;;5623:5;5617:12;5638:52;5683:6;5678:3;5671:4;5664:5;5660:16;5638:52;:::i;:::-;5706:16;;;;;5593:135;-1:-1:-1;;5593:135:1:o;5733:1181::-;5967:13;;5733:1181;;;;6040:1;6025:17;;6061:1;6097:18;;;;6124:2;;6178:4;6170:6;6166:17;6156:27;;6124:2;6204;6252;6244:6;6241:14;6221:18;6218:38;6215:2;;;-1:-1:-1;;;6279:33:1;;6335:4;6332:1;6325:15;6365:4;6286:3;6353:17;6215:2;6396:18;6423:104;;;;6541:1;6536:324;;;;6389:471;;6423:104;-1:-1:-1;;6456:24:1;;6444:37;;6501:16;;;;-1:-1:-1;6423:104:1;;6536:324;6572:39;6604:6;6572:39;:::i;:::-;6633:3;6649:165;6663:6;6660:1;6657:13;6649:165;;;6741:14;;6728:11;;;6721:35;6784:16;;;;6678:10;;6649:165;;;6653:3;;6843:6;6838:3;6834:16;6827:23;;6389:471;;;;;;;6876:32;6904:3;6896:6;6876:32;:::i;:::-;6869:39;5917:997;-1:-1:-1;;;;;5917:997:1:o;6919:203::-;-1:-1:-1;;;;;7083:32:1;;;;7065:51;;7053:2;7038:18;;7020:102::o;7127:490::-;-1:-1:-1;;;;;7396:15:1;;;7378:34;;7448:15;;7443:2;7428:18;;7421:43;7495:2;7480:18;;7473:34;;;7543:3;7538:2;7523:18;;7516:31;;;7127:490;;7564:47;;7591:19;;7583:6;7564:47;:::i;:::-;7556:55;7330:287;-1:-1:-1;;;;;;7330:287:1:o;7622:635::-;7793:2;7845:21;;;7915:13;;7818:18;;;7937:22;;;7622:635;;7793:2;8016:15;;;;7990:2;7975:18;;;7622:635;8062:169;8076:6;8073:1;8070:13;8062:169;;;8137:13;;8125:26;;8206:15;;;;8171:12;;;;8098:1;8091:9;8062:169;;;-1:-1:-1;8248:3:1;;7773:484;-1:-1:-1;;;;;;7773:484:1:o;8262:187::-;8427:14;;8420:22;8402:41;;8390:2;8375:18;;8357:92::o;8454:221::-;;8603:2;8592:9;8585:21;8623:46;8665:2;8654:9;8650:18;8642:6;8623:46;:::i;8680:398::-;8882:2;8864:21;;;8921:2;8901:18;;;8894:30;8960:34;8955:2;8940:18;;8933:62;-1:-1:-1;;;9026:2:1;9011:18;;9004:32;9068:3;9053:19;;8854:224::o;9083:402::-;9285:2;9267:21;;;9324:2;9304:18;;;9297:30;9363:34;9358:2;9343:18;;9336:62;-1:-1:-1;;;9429:2:1;9414:18;;9407:36;9475:3;9460:19;;9257:228::o;9490:406::-;9692:2;9674:21;;;9731:2;9711:18;;;9704:30;9770:34;9765:2;9750:18;;9743:62;-1:-1:-1;;;9836:2:1;9821:18;;9814:40;9886:3;9871:19;;9664:232::o;9901:399::-;10103:2;10085:21;;;10142:2;10122:18;;;10115:30;10181:34;10176:2;10161:18;;10154:62;-1:-1:-1;;;10247:2:1;10232:18;;10225:33;10290:3;10275:19;;10075:225::o;10305:400::-;10507:2;10489:21;;;10546:2;10526:18;;;10519:30;10585:34;10580:2;10565:18;;10558:62;-1:-1:-1;;;10651:2:1;10636:18;;10629:34;10695:3;10680:19;;10479:226::o;10710:401::-;10912:2;10894:21;;;10951:2;10931:18;;;10924:30;10990:34;10985:2;10970:18;;10963:62;-1:-1:-1;;;11056:2:1;11041:18;;11034:35;11101:3;11086:19;;10884:227::o;11116:355::-;11318:2;11300:21;;;11357:2;11337:18;;;11330:30;11396:33;11391:2;11376:18;;11369:61;11462:2;11447:18;;11290:181::o;11476:347::-;11678:2;11660:21;;;11717:2;11697:18;;;11690:30;11756:25;11751:2;11736:18;;11729:53;11814:2;11799:18;;11650:173::o;11828:421::-;12030:2;12012:21;;;12069:2;12049:18;;;12042:30;12108:34;12103:2;12088:18;;12081:62;12179:27;12174:2;12159:18;;12152:55;12239:3;12224:19;;12002:247::o;12254:420::-;12456:2;12438:21;;;12495:2;12475:18;;;12468:30;12534:34;12529:2;12514:18;;12507:62;12605:26;12600:2;12585:18;;12578:54;12664:3;12649:19;;12428:246::o;12679:407::-;12881:2;12863:21;;;12920:2;12900:18;;;12893:30;12959:34;12954:2;12939:18;;12932:62;-1:-1:-1;;;13025:2:1;13010:18;;13003:41;13076:3;13061:19;;12853:233::o;13091:346::-;13293:2;13275:21;;;13332:2;13312:18;;;13305:30;-1:-1:-1;;;13366:2:1;13351:18;;13344:52;13428:2;13413:18;;13265:172::o;13442:402::-;13644:2;13626:21;;;13683:2;13663:18;;;13656:30;13722:34;13717:2;13702:18;;13695:62;-1:-1:-1;;;13788:2:1;13773:18;;13766:36;13834:3;13819:19;;13616:228::o;13849:356::-;14051:2;14033:21;;;14070:18;;;14063:30;14129:34;14124:2;14109:18;;14102:62;14196:2;14181:18;;14023:182::o;14210:411::-;14412:2;14394:21;;;14451:2;14431:18;;;14424:30;14490:34;14485:2;14470:18;;14463:62;-1:-1:-1;;;14556:2:1;14541:18;;14534:45;14611:3;14596:19;;14384:237::o;14626:350::-;14828:2;14810:21;;;14867:2;14847:18;;;14840:30;14906:28;14901:2;14886:18;;14879:56;14967:2;14952:18;;14800:176::o;14981:414::-;15183:2;15165:21;;;15222:2;15202:18;;;15195:30;15261:34;15256:2;15241:18;;15234:62;-1:-1:-1;;;15327:2:1;15312:18;;15305:48;15385:3;15370:19;;15155:240::o;15400:411::-;15602:2;15584:21;;;15641:2;15621:18;;;15614:30;15680:34;15675:2;15660:18;;15653:62;-1:-1:-1;;;15746:2:1;15731:18;;15724:45;15801:3;15786:19;;15574:237::o;15816:398::-;16018:2;16000:21;;;16057:2;16037:18;;;16030:30;16096:34;16091:2;16076:18;;16069:62;-1:-1:-1;;;16162:2:1;16147:18;;16140:32;16204:3;16189:19;;15990:224::o;16219:415::-;16421:2;16403:21;;;16460:2;16440:18;;;16433:30;16499:34;16494:2;16479:18;;16472:62;-1:-1:-1;;;16565:2:1;16550:18;;16543:49;16624:3;16609:19;;16393:241::o;16639:353::-;16841:2;16823:21;;;16880:2;16860:18;;;16853:30;16919:31;16914:2;16899:18;;16892:59;16983:2;16968:18;;16813:179::o;16997:397::-;17199:2;17181:21;;;17238:2;17218:18;;;17211:30;17277:34;17272:2;17257:18;;17250:62;-1:-1:-1;;;17343:2:1;17328:18;;17321:31;17384:3;17369:19;;17171:223::o;17399:410::-;17601:2;17583:21;;;17640:2;17620:18;;;17613:30;17679:34;17674:2;17659:18;;17652:62;-1:-1:-1;;;17745:2:1;17730:18;;17723:44;17799:3;17784:19;;17573:236::o;17814:411::-;18016:2;17998:21;;;18055:2;18035:18;;;18028:30;18094:34;18089:2;18074:18;;18067:62;-1:-1:-1;;;18160:2:1;18145:18;;18138:45;18215:3;18200:19;;17988:237::o;18230:409::-;18432:2;18414:21;;;18471:2;18451:18;;;18444:30;18510:34;18505:2;18490:18;;18483:62;-1:-1:-1;;;18576:2:1;18561:18;;18554:43;18629:3;18614:19;;18404:235::o;18644:398::-;18846:2;18828:21;;;18885:2;18865:18;;;18858:30;18924:34;18919:2;18904:18;;18897:62;-1:-1:-1;;;18990:2:1;18975:18;;18968:32;19032:3;19017:19;;18818:224::o;19047:177::-;19193:25;;;19181:2;19166:18;;19148:76::o;19229:251::-;19299:2;19293:9;19329:17;;;-1:-1:-1;;;;;19361:34:1;;19397:22;;;19358:62;19355:2;;;19423:18;;:::i;:::-;19459:2;19452:22;19273:207;;-1:-1:-1;19273:207:1:o;19485:129::-;;19553:17;;;19603:4;19587:21;;;19543:71::o;19619:253::-;;-1:-1:-1;;;;;19748:2:1;19745:1;19741:10;19778:2;19775:1;19771:10;19809:3;19805:2;19801:12;19796:3;19793:21;19790:2;;;19817:18;;:::i;:::-;19853:13;;19667:205;-1:-1:-1;;;;19667:205:1:o;19877:128::-;;19948:1;19944:6;19941:1;19938:13;19935:2;;;19954:18;;:::i;:::-;-1:-1:-1;19990:9:1;;19925:80::o;20010:120::-;;20076:1;20066:2;;20081:18;;:::i;:::-;-1:-1:-1;20115:9:1;;20056:74::o;20135:168::-;;20241:1;20237;20233:6;20229:14;20226:1;20223:21;20218:1;20211:9;20204:17;20200:45;20197:2;;;20248:18;;:::i;:::-;-1:-1:-1;20288:9:1;;20187:116::o;20308:246::-;;-1:-1:-1;;;;;20461:10:1;;;;20431;;20483:12;;;20480:2;;;20498:18;;:::i;:::-;20535:13;;20357:197;-1:-1:-1;;;20357:197:1:o;20559:125::-;;20627:1;20624;20621:8;20618:2;;;20632:18;;:::i;:::-;-1:-1:-1;20669:9:1;;20608:76::o;20689:258::-;20761:1;20771:113;20785:6;20782:1;20779:13;20771:113;;;20861:11;;;20855:18;20842:11;;;20835:39;20807:2;20800:10;20771:113;;;20902:6;20899:1;20896:13;20893:2;;;-1:-1:-1;;20937:1:1;20919:16;;20912:27;20742:205::o;20952:136::-;;21019:5;21009:2;;21028:18;;:::i;:::-;-1:-1:-1;;;21064:18:1;;20999:89::o;21093:380::-;21178:1;21168:12;;21225:1;21215:12;;;21236:2;;21290:4;21282:6;21278:17;21268:27;;21236:2;21343;21335:6;21332:14;21312:18;21309:38;21306:2;;;21389:10;21384:3;21380:20;21377:1;21370:31;21424:4;21421:1;21414:15;21452:4;21449:1;21442:15;21306:2;;21148:325;;;:::o;21478:135::-;;-1:-1:-1;;21538:17:1;;21535:2;;;21558:18;;:::i;:::-;-1:-1:-1;21605:1:1;21594:13;;21525:88::o;21618:112::-;;21676:1;21666:2;;21681:18;;:::i;:::-;-1:-1:-1;21715:9:1;;21656:74::o;21735:127::-;21796:10;21791:3;21787:20;21784:1;21777:31;21827:4;21824:1;21817:15;21851:4;21848:1;21841:15;21867:127;21928:10;21923:3;21919:20;21916:1;21909:31;21959:4;21956:1;21949:15;21983:4;21980:1;21973:15;21999:127;22060:10;22055:3;22051:20;22048:1;22041:31;22091:4;22088:1;22081:15;22115:4;22112:1;22105:15;22131:133;-1:-1:-1;;;;;;22207:32:1;;22197:43;;22187:2;;22254:1;22251;22244:12

Swarm Source

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