ETH Price: $3,465.45 (+2.20%)
Gas: 9 Gwei

Token

ghostown.wtf (ghost)
 

Overview

Max Total Supply

5,346 ghost

Holders

2,703

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thematnft.eth
Balance
2 ghost
0x133941087f02f74f6a3946b5c1bf220d7a2a2d91
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:
ghostown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-02-26
*/

// SPDX-License-Identifier: MIT

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

//
//                                        .      .%@@(       .                    
//                               .    (@@@@@@@@@@@@@@@@@@@@/   .               
//                           .   ,@@@@@@.                 @@@@@                 
//                            @@@@@                          @@@@  .            
//                         @@@@#                               @@@.             
//                     @@@@/                                   @@@@            
//                   @@@@                            @@         %@@@           
//                 @@@@                    @@@@    @@@@@         @@@           
//            .  #@@@                     @@@@@   (@@@@           @@@          
//           .  @@@*                      @@@@     @@@            @@@  .       
//           .  @@@                                                 @@@         
//             #@@#                                                 @@@         
//            @@@                         @@.   %@@                @@@         
//             @@@                          @@@@@@                  @@@         
//            .@@@                                                 @@@         
//        .  *@@@                                                  @@@         
//       .  @@@#                                                   @@@         
//          @@@                                                     @@@         
//     .  @@@                                                      @@@         
//    .  @@@        (@@                                            @@@         
//     .  @@@     @@@@@@@@@       .@@@@@@@          @@@@           /@@(         
//       @@@@@@@@@&     @@@   @@@@@    @@@       @@@* @@@#        @@@  .       
//      .          .     @@@@@@%     .  @@@   (@@@@    *@@@     @@@@           
//                    .        .     .  &@@@@@@         @@@@@@@@@   .         
//                                     .       .                 .            
                                                                                                                                                               

pragma solidity ^0.8.0;

library Address {

    function isContract(address account) internal view returns (bool) {

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

    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");
    }

    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]
pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File @openzeppelin/contracts/utils/introspection/[email protected]
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
pragma solidity ^0.8.0;

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

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

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





// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

     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");
    }

    /**
     * @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 override {
        _transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

contract ghostown is ERC721A
{
    using Strings for uint256;

    string public baseURI;
    uint256 public cost;
    uint256 public maxSupply;
    uint256 public maxMintAmount = 42;
    uint256 public maxMintPerTransaction = 42;
    address public owner;
    bool public preSaleLive;
    bool public mintLive;

    mapping(address => bool) private whiteList;
    mapping(address => uint256) private mintCount;

    modifier onlyOwner() {
        require(owner == msg.sender, "not owner");
        _;
    }

    modifier preSaleIsLive() {
        require(preSaleLive, "preSale not live");
        _;
    }

    modifier mintIsLive() {
        require(mintLive, "mint not live");
        _;
    }

    constructor(string memory defaultBaseURI) ERC721A("ghostown.wtf", "ghost", maxMintAmount) {
        owner = msg.sender;
        baseURI = defaultBaseURI;
        maxSupply = 10000;
        maxMintPerTransaction;
        cost = 0;
    }

    function isWhiteListed(address _address) public view returns (bool){
        return whiteList[_address];
    }

    function mintedByAddressCount(address _address) public view returns (uint256){
        return mintCount[_address];
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaxSupply(uint256 _newSupply) public onlyOwner {
        maxSupply = _newSupply;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setmaxMintPerTransaction(uint256 _newmaxMintPerTransaction) public onlyOwner {
        maxMintPerTransaction = _newmaxMintPerTransaction;
    }

    // Minting functions
    function mint(uint256 _mintAmount) external payable mintIsLive {
        address _to = msg.sender;
        uint256 minted = mintCount[_to];
        require(minted + _mintAmount <= maxMintAmount, "mint over max");
        require(_mintAmount <= maxMintPerTransaction, "amount must < max");
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");
        require(msg.value >= cost * _mintAmount, "insufficient funds");

        mintCount[_to] = minted + _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function preSaleMint(uint256 _mintAmount) external payable preSaleIsLive {
        address _to = msg.sender;
        uint256 minted = mintCount[_to];
        require(whiteList[_to], "not whitelisted");
        require(minted + _mintAmount <= maxMintAmount, "mint over max");
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");
        require(msg.value >= cost * _mintAmount, "insufficient funds");

        mintCount[_to] = minted + _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    // Only Owner executable functions
    function mintByOwner(address _to, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");
        if (_mintAmount <= maxBatchSize) {
            _safeMint(_to, _mintAmount);
            return;
        }
        
        uint256 leftToMint = _mintAmount;
        while (leftToMint > 0) {
            if (leftToMint <= maxBatchSize) {
                _safeMint(_to, leftToMint);
                return;
            }
            _safeMint(_to, maxBatchSize);
            leftToMint = leftToMint - maxBatchSize;
        }
    }

    function addToWhiteList(address[] calldata _addresses) external onlyOwner {
        for (uint256 i; i < _addresses.length; i++) {
            whiteList[_addresses[i]] = true;
        }
    }

    function togglePreSaleLive() external onlyOwner {
        if (preSaleLive) {
            preSaleLive = false;
            return;
        }
        preSaleLive = true;
    }

    function toggleMintLive() external onlyOwner {
        if (mintLive) {
            mintLive = false;
            return;
        }
        preSaleLive = false;
        mintLive = true;
    }

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

    function withdraw() external payable onlyOwner {

        (bool hs, ) = payable(0xB61c7802302c64E0F52696268Cf8dC36C88bD4CB).call{value: address(this).balance * 15 / 100}("");
        require(hs);

        (bool os, ) = payable(0xe7796e6Daca0aaE1afA6d064Bf20Af3Be630Ee03).call{value: address(this).balance * 15 / 100}("");
        require(os);

        (bool st, ) = payable(0x4067F688AD8ff2D12E465C1af5d1B98F8509ae12).call{value: address(this).balance * 10 / 100}("");
        require(st);

        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed");
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");

        string memory baseTokenURI = _baseURI();
        string memory json = ".json";
        return bytes(baseTokenURI).length > 0
            ? string(abi.encodePacked(baseTokenURI, _tokenId.toString(), json))
            : '';
    }

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

    fallback() external payable { }

    receive() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"defaultBaseURI","type":"string"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[{"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":"_address","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintedByAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"preSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintPerTransaction","type":"uint256"}],"name":"setmaxMintPerTransaction","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":[],"name":"toggleMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSaleLive","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260016000556000600755602a600b55602a600c553480156200002557600080fd5b5060405162002e3a38038062002e3a833981016040819052620000489162000204565b6040518060400160405280600c81526020016b33b437b9ba37bbb7173bba3360a11b8152506040518060400160405280600581526020016419da1bdcdd60da1b815250600b5460008111620000f35760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b8251620001089060019060208601906200015e565b5081516200011e9060029060208501906200015e565b506080525050600d80546001600160a01b0319163317905580516200014b9060089060208401906200015e565b5050612710600a55600060095562000333565b8280546200016c90620002e0565b90600052602060002090601f016020900481019282620001905760008555620001db565b82601f10620001ab57805160ff1916838001178555620001db565b82800160010185558215620001db579182015b82811115620001db578251825591602001919060010190620001be565b50620001e9929150620001ed565b5090565b5b80821115620001e95760008155600101620001ee565b600060208083850312156200021857600080fd5b82516001600160401b03808211156200023057600080fd5b818501915085601f8301126200024557600080fd5b8151818111156200025a576200025a6200031d565b604051601f8201601f19908116603f011681019083821181831017156200028557620002856200031d565b8160405282815288868487010111156200029e57600080fd5b600093505b82841015620002c25784840186015181850187015292850192620002a3565b82841115620002d45760008684830101525b98975050505050505050565b600181811c90821680620002f557607f821691505b602082108114156200031757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051612ac16200037960003960008181610c6701528181610ca401528181610cd901528181610d0201528181611dc301528181611ded01526121c20152612ac16000f3fe6080604052600436106102275760003560e01c80636352211e116101225780638da5cb5b116100a5578063c87b56dd1161006c578063c87b56dd14610676578063d5abeb0114610696578063d7224ba0146106ac578063e8656fcc146106c2578063e985e9c5146106e357005b80638da5cb5b146105ee57806395d89b411461060e578063a0712d6814610623578063a22cb46514610636578063b88d4fde1461065657005b8063740d73f3116100e9578063740d73f3146105665780637835c6351461058657806378835f42146105995780637f00c7a6146105b957806389bdeec6146105d957005b80636352211e146104b85780636c0360eb146104d85780636f8b44b0146104ed5780636f9170f61461050d57806370a082311461054657005b80632d20fb60116101aa57806342842e0e1161017157806342842e0e1461041757806344a0d68a146104375780634f6ccce71461045757806355f804b3146104775780635bd90b761461049757005b80632d20fb60146103795780632f745c59146103995780633542aee2146103b957806337351b0f146103d95780633ccfd60b1461040f57005b8063105739b8116101ee578063105739b81461030357806313faede61461031857806318160ddd1461032e578063239c70ae1461034357806323b872dd1461035957005b806301f569971461023057806301ffc9a71461025957806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e357005b3661022e57005b005b34801561023c57600080fd5b50610246600c5481565b6040519081526020015b60405180910390f35b34801561026557600080fd5b506102796102743660046126ea565b61072c565b6040519015158152602001610250565b34801561029557600080fd5b5061029e610799565b6040516102509190612832565b3480156102b757600080fd5b506102cb6102c636600461276d565b61082b565b6040516001600160a01b039091168152602001610250565b3480156102ef57600080fd5b5061022e6102fe36600461264b565b6108bb565b34801561030f57600080fd5b5061022e6109d3565b34801561032457600080fd5b5061024660095481565b34801561033a57600080fd5b50600054610246565b34801561034f57600080fd5b50610246600b5481565b34801561036557600080fd5b5061022e610374366004612557565b610a34565b34801561038557600080fd5b5061022e61039436600461276d565b610a3f565b3480156103a557600080fd5b506102466103b436600461264b565b610a75565b3480156103c557600080fd5b5061022e6103d436600461264b565b610be3565b3480156103e557600080fd5b506102466103f4366004612502565b6001600160a01b03166000908152600f602052604090205490565b61022e610d2e565b34801561042357600080fd5b5061022e610432366004612557565b610f5f565b34801561044357600080fd5b5061022e61045236600461276d565b610f7a565b34801561046357600080fd5b5061024661047236600461276d565b610fa9565b34801561048357600080fd5b5061022e610492366004612724565b61100b565b3480156104a357600080fd5b50600d5461027990600160a01b900460ff1681565b3480156104c457600080fd5b506102cb6104d336600461276d565b611048565b3480156104e457600080fd5b5061029e61105a565b3480156104f957600080fd5b5061022e61050836600461276d565b6110e8565b34801561051957600080fd5b50610279610528366004612502565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561055257600080fd5b50610246610561366004612502565b611117565b34801561057257600080fd5b5061022e610581366004612675565b6111a8565b61022e61059436600461276d565b611244565b3480156105a557600080fd5b5061022e6105b436600461276d565b61140f565b3480156105c557600080fd5b5061022e6105d436600461276d565b61143e565b3480156105e557600080fd5b5061022e61146d565b3480156105fa57600080fd5b50600d546102cb906001600160a01b031681565b34801561061a57600080fd5b5061029e6114cd565b61022e61063136600461276d565b6114dc565b34801561064257600080fd5b5061022e61065136600461260f565b6115c6565b34801561066257600080fd5b5061022e610671366004612593565b61168b565b34801561068257600080fd5b5061029e61069136600461276d565b6116be565b3480156106a257600080fd5b50610246600a5481565b3480156106b857600080fd5b5061024660075481565b3480156106ce57600080fd5b50600d5461027990600160a81b900460ff1681565b3480156106ef57600080fd5b506102796106fe366004612524565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506001600160e01b0319821663780e9d6360e01b145b8061079357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107a8906129b3565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906129b3565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000610838826000541190565b61089f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108c682611048565b9050806001600160a01b0316836001600160a01b031614156109355760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610896565b336001600160a01b0382161480610951575061095181336106fe565b6109c35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610896565b6109ce838383611791565b505050565b600d546001600160a01b031633146109fd5760405162461bcd60e51b815260040161089690612898565b600d54600160a81b900460ff1615610a1e57600d805460ff60a81b19169055565b600d805461ffff60a01b1916600160a81b179055565b6109ce8383836117ed565b600d546001600160a01b03163314610a695760405162461bcd60e51b815260040161089690612898565b610a7281611b75565b50565b6000610a8083611117565b8210610ad95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610896565b600080549080805b83811015610b83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3457805192505b876001600160a01b0316836001600160a01b03161415610b705786841415610b625750935061079392505050565b83610b6c816129ee565b9450505b5080610b7b816129ee565b915050610ae1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610896565b600d546001600160a01b03163314610c0d5760405162461bcd60e51b815260040161089690612898565b600a5481610c1a60005490565b610c2491906128e6565b1115610c655760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b7f00000000000000000000000000000000000000000000000000000000000000008111610c9a57610c968282611d27565b5050565b805b80156109ce577f00000000000000000000000000000000000000000000000000000000000000008111610cd3576109ce8382611d27565b610cfd837f0000000000000000000000000000000000000000000000000000000000000000611d27565b610d277f000000000000000000000000000000000000000000000000000000000000000082612959565b9050610c9c565b600d546001600160a01b03163314610d585760405162461bcd60e51b815260040161089690612898565b600073b61c7802302c64e0f52696268cf8dc36c88bd4cb6064610d7c47600f612912565b610d8691906128fe565b604051600081818185875af1925050503d8060008114610dc2576040519150601f19603f3d011682016040523d82523d6000602084013e610dc7565b606091505b5050905080610dd557600080fd5b600073e7796e6daca0aae1afa6d064bf20af3be630ee036064610df947600f612912565b610e0391906128fe565b604051600081818185875af1925050503d8060008114610e3f576040519150601f19603f3d011682016040523d82523d6000602084013e610e44565b606091505b5050905080610e5257600080fd5b6000734067f688ad8ff2d12e465c1af5d1b98f8509ae126064610e7647600a612912565b610e8091906128fe565b604051600081818185875af1925050503d8060008114610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b5050905080610ecf57600080fd5b604051600090339047908381818185875af1925050503d8060008114610f11576040519150601f19603f3d011682016040523d82523d6000602084013e610f16565b606091505b5050905080610f595760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610896565b50505050565b6109ce8383836040518060200160405280600081525061168b565b600d546001600160a01b03163314610fa45760405162461bcd60e51b815260040161089690612898565b600955565b6000805482106110075760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610896565b5090565b600d546001600160a01b031633146110355760405162461bcd60e51b815260040161089690612898565b8051610c969060089060208401906123e0565b600061105382611d41565b5192915050565b60088054611067906129b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611093906129b3565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b505050505081565b600d546001600160a01b031633146111125760405162461bcd60e51b815260040161089690612898565b600a55565b60006001600160a01b0382166111835760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610896565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600d546001600160a01b031633146111d25760405162461bcd60e51b815260040161089690612898565b60005b818110156109ce576001600e60008585858181106111f5576111f5612a49565b905060200201602081019061120a9190612502565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061123c816129ee565b9150506111d5565b600d54600160a01b900460ff166112905760405162461bcd60e51b815260206004820152601060248201526f70726553616c65206e6f74206c69766560801b6044820152606401610896565b336000818152600f6020908152604080832054600e9092529091205460ff166112ed5760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610896565b600b546112fa84836128e6565b11156113385760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600a548361134560005490565b61134f91906128e6565b11156113905760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b8260095461139e9190612912565b3410156113e25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610896565b6113ec83826128e6565b6001600160a01b0383166000908152600f60205260409020556109ce3384611d27565b600d546001600160a01b031633146114395760405162461bcd60e51b815260040161089690612898565b600c55565b600d546001600160a01b031633146114685760405162461bcd60e51b815260040161089690612898565b600b55565b600d546001600160a01b031633146114975760405162461bcd60e51b815260040161089690612898565b600d54600160a01b900460ff16156114b857600d805460ff60a01b19169055565b600d805460ff60a01b1916600160a01b179055565b6060600280546107a8906129b3565b600d54600160a81b900460ff166115255760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b6044820152606401610896565b336000818152600f6020526040902054600b5461154284836128e6565b11156115805760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600c548311156113385760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b6044820152606401610896565b6001600160a01b03821633141561161f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610896565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116968484846117ed565b6116a284848484611eeb565b610f595760405162461bcd60e51b815260040161089690612845565b60606116cb826000541190565b6117175760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610896565b6000611721611ff8565b604080518082019091526005815264173539b7b760d91b602082015281519192509061175c5760405180602001604052806000815250611789565b8161176685612007565b82604051602001611779939291906127b2565b6040516020818303038152906040525b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f882611d41565b80519091506000906001600160a01b0316336001600160a01b0316148061182f5750336118248461082b565b6001600160a01b0316145b806118415750815161184190336106fe565b9050806118ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610896565b846001600160a01b031682600001516001600160a01b03161461191f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610896565b6001600160a01b0384166119835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610896565b6119936000848460000151611791565b6001600160a01b03851660009081526004602052604081208054600192906119c59084906001600160801b0316612931565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a11918591166128bb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a998460016128e6565b6000818152600360205260409020549091506001600160a01b0316611b2b57611ac3816000541190565b15611b2b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611bc55760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610896565b60006001611bd384846128e6565b611bdd9190612959565b90506001600054611bee9190612959565b811115611c07576001600054611c049190612959565b90505b611c12816000541190565b611c6d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610896565b815b818111611d13576000818152600360205260409020546001600160a01b0316611d01576000611c9d82611d41565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d0b816129ee565b915050611c6f565b50611d1f8160016128e6565b600755505050565b610c96828260405180602001604052806000815250612105565b6040805180820190915260008082526020820152611d60826000541190565b611dbf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610896565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e2057611e127f000000000000000000000000000000000000000000000000000000000000000084612959565b611e1d9060016128e6565b90505b825b818110611e8a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7757949350505050565b5080611e828161299c565b915050611e22565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610896565b60006001600160a01b0384163b15611fed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2f9033908990889088906004016127f5565b602060405180830381600087803b158015611f4957600080fd5b505af1925050508015611f79575060408051601f3d908101601f19168201909252611f7691810190612707565b60015b611fd3573d808015611fa7576040519150601f19603f3d011682016040523d82523d6000602084013e611fac565b606091505b508051611fcb5760405162461bcd60e51b815260040161089690612845565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611789565b506001949350505050565b6060600880546107a8906129b3565b60608161202b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612055578061203f816129ee565b915061204e9050600a836128fe565b915061202f565b60008167ffffffffffffffff81111561207057612070612a5f565b6040519080825280601f01601f19166020018201604052801561209a576020820181803683370190505b5090505b8415611789576120af600183612959565b91506120bc600a86612a09565b6120c79060306128e6565b60f81b8183815181106120dc576120dc612a49565b60200101906001600160f81b031916908160001a9053506120fe600a866128fe565b945061209e565b6000546001600160a01b0384166121685760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610896565b612173816000541190565b156121c05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610896565b7f000000000000000000000000000000000000000000000000000000000000000083111561223b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610896565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122979087906128bb565b6001600160801b031681526020018583602001516122b591906128bb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123d55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123996000888488611eeb565b6123b55760405162461bcd60e51b815260040161089690612845565b816123bf816129ee565b92505080806123cd906129ee565b91505061234c565b506000819055611b6d565b8280546123ec906129b3565b90600052602060002090601f01602090048101928261240e5760008555612454565b82601f1061242757805160ff1916838001178555612454565b82800160010185558215612454579182015b82811115612454578251825591602001919060010190612439565b506110079291505b80821115611007576000815560010161245c565b600067ffffffffffffffff8084111561248b5761248b612a5f565b604051601f8501601f19908116603f011681019082821181831017156124b3576124b3612a5f565b816040528093508581528686860111156124cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124fd57600080fd5b919050565b60006020828403121561251457600080fd5b61251d826124e6565b9392505050565b6000806040838503121561253757600080fd5b612540836124e6565b915061254e602084016124e6565b90509250929050565b60008060006060848603121561256c57600080fd5b612575846124e6565b9250612583602085016124e6565b9150604084013590509250925092565b600080600080608085870312156125a957600080fd5b6125b2856124e6565b93506125c0602086016124e6565b925060408501359150606085013567ffffffffffffffff8111156125e357600080fd5b8501601f810187136125f457600080fd5b61260387823560208401612470565b91505092959194509250565b6000806040838503121561262257600080fd5b61262b836124e6565b91506020830135801515811461264057600080fd5b809150509250929050565b6000806040838503121561265e57600080fd5b612667836124e6565b946020939093013593505050565b6000806020838503121561268857600080fd5b823567ffffffffffffffff808211156126a057600080fd5b818501915085601f8301126126b457600080fd5b8135818111156126c357600080fd5b8660208260051b85010111156126d857600080fd5b60209290920196919550909350505050565b6000602082840312156126fc57600080fd5b813561251d81612a75565b60006020828403121561271957600080fd5b815161251d81612a75565b60006020828403121561273657600080fd5b813567ffffffffffffffff81111561274d57600080fd5b8201601f8101841361275e57600080fd5b61178984823560208401612470565b60006020828403121561277f57600080fd5b5035919050565b6000815180845261279e816020860160208601612970565b601f01601f19169290920160200192915050565b600084516127c4818460208901612970565b8451908301906127d8818360208901612970565b84519101906127eb818360208801612970565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282890830184612786565b9695505050505050565b60208152600061251d6020830184612786565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b60006001600160801b038083168185168083038211156128dd576128dd612a1d565b01949350505050565b600082198211156128f9576128f9612a1d565b500190565b60008261290d5761290d612a33565b500490565b600081600019048311821515161561292c5761292c612a1d565b500290565b60006001600160801b038381169083168181101561295157612951612a1d565b039392505050565b60008282101561296b5761296b612a1d565b500390565b60005b8381101561298b578181015183820152602001612973565b83811115610f595750506000910152565b6000816129ab576129ab612a1d565b506000190190565b600181811c908216806129c757607f821691505b602082108114156129e857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a0257612a02612a1d565b5060010190565b600082612a1857612a18612a33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7257600080fdfea264697066735822122070e1d7fc8a6675882d35284b82eb869e3386da190cc1f980f71c150cb643658d64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6269487476396a59437a5552475052786f54476275396e48356f6b6e657259596e59625a7369444e44764a412f00000000000000000000

Deployed Bytecode

0x6080604052600436106102275760003560e01c80636352211e116101225780638da5cb5b116100a5578063c87b56dd1161006c578063c87b56dd14610676578063d5abeb0114610696578063d7224ba0146106ac578063e8656fcc146106c2578063e985e9c5146106e357005b80638da5cb5b146105ee57806395d89b411461060e578063a0712d6814610623578063a22cb46514610636578063b88d4fde1461065657005b8063740d73f3116100e9578063740d73f3146105665780637835c6351461058657806378835f42146105995780637f00c7a6146105b957806389bdeec6146105d957005b80636352211e146104b85780636c0360eb146104d85780636f8b44b0146104ed5780636f9170f61461050d57806370a082311461054657005b80632d20fb60116101aa57806342842e0e1161017157806342842e0e1461041757806344a0d68a146104375780634f6ccce71461045757806355f804b3146104775780635bd90b761461049757005b80632d20fb60146103795780632f745c59146103995780633542aee2146103b957806337351b0f146103d95780633ccfd60b1461040f57005b8063105739b8116101ee578063105739b81461030357806313faede61461031857806318160ddd1461032e578063239c70ae1461034357806323b872dd1461035957005b806301f569971461023057806301ffc9a71461025957806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e357005b3661022e57005b005b34801561023c57600080fd5b50610246600c5481565b6040519081526020015b60405180910390f35b34801561026557600080fd5b506102796102743660046126ea565b61072c565b6040519015158152602001610250565b34801561029557600080fd5b5061029e610799565b6040516102509190612832565b3480156102b757600080fd5b506102cb6102c636600461276d565b61082b565b6040516001600160a01b039091168152602001610250565b3480156102ef57600080fd5b5061022e6102fe36600461264b565b6108bb565b34801561030f57600080fd5b5061022e6109d3565b34801561032457600080fd5b5061024660095481565b34801561033a57600080fd5b50600054610246565b34801561034f57600080fd5b50610246600b5481565b34801561036557600080fd5b5061022e610374366004612557565b610a34565b34801561038557600080fd5b5061022e61039436600461276d565b610a3f565b3480156103a557600080fd5b506102466103b436600461264b565b610a75565b3480156103c557600080fd5b5061022e6103d436600461264b565b610be3565b3480156103e557600080fd5b506102466103f4366004612502565b6001600160a01b03166000908152600f602052604090205490565b61022e610d2e565b34801561042357600080fd5b5061022e610432366004612557565b610f5f565b34801561044357600080fd5b5061022e61045236600461276d565b610f7a565b34801561046357600080fd5b5061024661047236600461276d565b610fa9565b34801561048357600080fd5b5061022e610492366004612724565b61100b565b3480156104a357600080fd5b50600d5461027990600160a01b900460ff1681565b3480156104c457600080fd5b506102cb6104d336600461276d565b611048565b3480156104e457600080fd5b5061029e61105a565b3480156104f957600080fd5b5061022e61050836600461276d565b6110e8565b34801561051957600080fd5b50610279610528366004612502565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561055257600080fd5b50610246610561366004612502565b611117565b34801561057257600080fd5b5061022e610581366004612675565b6111a8565b61022e61059436600461276d565b611244565b3480156105a557600080fd5b5061022e6105b436600461276d565b61140f565b3480156105c557600080fd5b5061022e6105d436600461276d565b61143e565b3480156105e557600080fd5b5061022e61146d565b3480156105fa57600080fd5b50600d546102cb906001600160a01b031681565b34801561061a57600080fd5b5061029e6114cd565b61022e61063136600461276d565b6114dc565b34801561064257600080fd5b5061022e61065136600461260f565b6115c6565b34801561066257600080fd5b5061022e610671366004612593565b61168b565b34801561068257600080fd5b5061029e61069136600461276d565b6116be565b3480156106a257600080fd5b50610246600a5481565b3480156106b857600080fd5b5061024660075481565b3480156106ce57600080fd5b50600d5461027990600160a81b900460ff1681565b3480156106ef57600080fd5b506102796106fe366004612524565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506001600160e01b0319821663780e9d6360e01b145b8061079357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107a8906129b3565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906129b3565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000610838826000541190565b61089f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108c682611048565b9050806001600160a01b0316836001600160a01b031614156109355760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610896565b336001600160a01b0382161480610951575061095181336106fe565b6109c35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610896565b6109ce838383611791565b505050565b600d546001600160a01b031633146109fd5760405162461bcd60e51b815260040161089690612898565b600d54600160a81b900460ff1615610a1e57600d805460ff60a81b19169055565b600d805461ffff60a01b1916600160a81b179055565b6109ce8383836117ed565b600d546001600160a01b03163314610a695760405162461bcd60e51b815260040161089690612898565b610a7281611b75565b50565b6000610a8083611117565b8210610ad95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610896565b600080549080805b83811015610b83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3457805192505b876001600160a01b0316836001600160a01b03161415610b705786841415610b625750935061079392505050565b83610b6c816129ee565b9450505b5080610b7b816129ee565b915050610ae1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610896565b600d546001600160a01b03163314610c0d5760405162461bcd60e51b815260040161089690612898565b600a5481610c1a60005490565b610c2491906128e6565b1115610c655760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b7f000000000000000000000000000000000000000000000000000000000000002a8111610c9a57610c968282611d27565b5050565b805b80156109ce577f000000000000000000000000000000000000000000000000000000000000002a8111610cd3576109ce8382611d27565b610cfd837f000000000000000000000000000000000000000000000000000000000000002a611d27565b610d277f000000000000000000000000000000000000000000000000000000000000002a82612959565b9050610c9c565b600d546001600160a01b03163314610d585760405162461bcd60e51b815260040161089690612898565b600073b61c7802302c64e0f52696268cf8dc36c88bd4cb6064610d7c47600f612912565b610d8691906128fe565b604051600081818185875af1925050503d8060008114610dc2576040519150601f19603f3d011682016040523d82523d6000602084013e610dc7565b606091505b5050905080610dd557600080fd5b600073e7796e6daca0aae1afa6d064bf20af3be630ee036064610df947600f612912565b610e0391906128fe565b604051600081818185875af1925050503d8060008114610e3f576040519150601f19603f3d011682016040523d82523d6000602084013e610e44565b606091505b5050905080610e5257600080fd5b6000734067f688ad8ff2d12e465c1af5d1b98f8509ae126064610e7647600a612912565b610e8091906128fe565b604051600081818185875af1925050503d8060008114610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b5050905080610ecf57600080fd5b604051600090339047908381818185875af1925050503d8060008114610f11576040519150601f19603f3d011682016040523d82523d6000602084013e610f16565b606091505b5050905080610f595760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610896565b50505050565b6109ce8383836040518060200160405280600081525061168b565b600d546001600160a01b03163314610fa45760405162461bcd60e51b815260040161089690612898565b600955565b6000805482106110075760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610896565b5090565b600d546001600160a01b031633146110355760405162461bcd60e51b815260040161089690612898565b8051610c969060089060208401906123e0565b600061105382611d41565b5192915050565b60088054611067906129b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611093906129b3565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b505050505081565b600d546001600160a01b031633146111125760405162461bcd60e51b815260040161089690612898565b600a55565b60006001600160a01b0382166111835760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610896565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600d546001600160a01b031633146111d25760405162461bcd60e51b815260040161089690612898565b60005b818110156109ce576001600e60008585858181106111f5576111f5612a49565b905060200201602081019061120a9190612502565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061123c816129ee565b9150506111d5565b600d54600160a01b900460ff166112905760405162461bcd60e51b815260206004820152601060248201526f70726553616c65206e6f74206c69766560801b6044820152606401610896565b336000818152600f6020908152604080832054600e9092529091205460ff166112ed5760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610896565b600b546112fa84836128e6565b11156113385760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600a548361134560005490565b61134f91906128e6565b11156113905760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b8260095461139e9190612912565b3410156113e25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610896565b6113ec83826128e6565b6001600160a01b0383166000908152600f60205260409020556109ce3384611d27565b600d546001600160a01b031633146114395760405162461bcd60e51b815260040161089690612898565b600c55565b600d546001600160a01b031633146114685760405162461bcd60e51b815260040161089690612898565b600b55565b600d546001600160a01b031633146114975760405162461bcd60e51b815260040161089690612898565b600d54600160a01b900460ff16156114b857600d805460ff60a01b19169055565b600d805460ff60a01b1916600160a01b179055565b6060600280546107a8906129b3565b600d54600160a81b900460ff166115255760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b6044820152606401610896565b336000818152600f6020526040902054600b5461154284836128e6565b11156115805760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600c548311156113385760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b6044820152606401610896565b6001600160a01b03821633141561161f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610896565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116968484846117ed565b6116a284848484611eeb565b610f595760405162461bcd60e51b815260040161089690612845565b60606116cb826000541190565b6117175760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610896565b6000611721611ff8565b604080518082019091526005815264173539b7b760d91b602082015281519192509061175c5760405180602001604052806000815250611789565b8161176685612007565b82604051602001611779939291906127b2565b6040516020818303038152906040525b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f882611d41565b80519091506000906001600160a01b0316336001600160a01b0316148061182f5750336118248461082b565b6001600160a01b0316145b806118415750815161184190336106fe565b9050806118ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610896565b846001600160a01b031682600001516001600160a01b03161461191f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610896565b6001600160a01b0384166119835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610896565b6119936000848460000151611791565b6001600160a01b03851660009081526004602052604081208054600192906119c59084906001600160801b0316612931565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a11918591166128bb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a998460016128e6565b6000818152600360205260409020549091506001600160a01b0316611b2b57611ac3816000541190565b15611b2b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611bc55760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610896565b60006001611bd384846128e6565b611bdd9190612959565b90506001600054611bee9190612959565b811115611c07576001600054611c049190612959565b90505b611c12816000541190565b611c6d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610896565b815b818111611d13576000818152600360205260409020546001600160a01b0316611d01576000611c9d82611d41565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d0b816129ee565b915050611c6f565b50611d1f8160016128e6565b600755505050565b610c96828260405180602001604052806000815250612105565b6040805180820190915260008082526020820152611d60826000541190565b611dbf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610896565b60007f000000000000000000000000000000000000000000000000000000000000002a8310611e2057611e127f000000000000000000000000000000000000000000000000000000000000002a84612959565b611e1d9060016128e6565b90505b825b818110611e8a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7757949350505050565b5080611e828161299c565b915050611e22565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610896565b60006001600160a01b0384163b15611fed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2f9033908990889088906004016127f5565b602060405180830381600087803b158015611f4957600080fd5b505af1925050508015611f79575060408051601f3d908101601f19168201909252611f7691810190612707565b60015b611fd3573d808015611fa7576040519150601f19603f3d011682016040523d82523d6000602084013e611fac565b606091505b508051611fcb5760405162461bcd60e51b815260040161089690612845565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611789565b506001949350505050565b6060600880546107a8906129b3565b60608161202b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612055578061203f816129ee565b915061204e9050600a836128fe565b915061202f565b60008167ffffffffffffffff81111561207057612070612a5f565b6040519080825280601f01601f19166020018201604052801561209a576020820181803683370190505b5090505b8415611789576120af600183612959565b91506120bc600a86612a09565b6120c79060306128e6565b60f81b8183815181106120dc576120dc612a49565b60200101906001600160f81b031916908160001a9053506120fe600a866128fe565b945061209e565b6000546001600160a01b0384166121685760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610896565b612173816000541190565b156121c05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610896565b7f000000000000000000000000000000000000000000000000000000000000002a83111561223b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610896565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122979087906128bb565b6001600160801b031681526020018583602001516122b591906128bb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123d55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123996000888488611eeb565b6123b55760405162461bcd60e51b815260040161089690612845565b816123bf816129ee565b92505080806123cd906129ee565b91505061234c565b506000819055611b6d565b8280546123ec906129b3565b90600052602060002090601f01602090048101928261240e5760008555612454565b82601f1061242757805160ff1916838001178555612454565b82800160010185558215612454579182015b82811115612454578251825591602001919060010190612439565b506110079291505b80821115611007576000815560010161245c565b600067ffffffffffffffff8084111561248b5761248b612a5f565b604051601f8501601f19908116603f011681019082821181831017156124b3576124b3612a5f565b816040528093508581528686860111156124cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124fd57600080fd5b919050565b60006020828403121561251457600080fd5b61251d826124e6565b9392505050565b6000806040838503121561253757600080fd5b612540836124e6565b915061254e602084016124e6565b90509250929050565b60008060006060848603121561256c57600080fd5b612575846124e6565b9250612583602085016124e6565b9150604084013590509250925092565b600080600080608085870312156125a957600080fd5b6125b2856124e6565b93506125c0602086016124e6565b925060408501359150606085013567ffffffffffffffff8111156125e357600080fd5b8501601f810187136125f457600080fd5b61260387823560208401612470565b91505092959194509250565b6000806040838503121561262257600080fd5b61262b836124e6565b91506020830135801515811461264057600080fd5b809150509250929050565b6000806040838503121561265e57600080fd5b612667836124e6565b946020939093013593505050565b6000806020838503121561268857600080fd5b823567ffffffffffffffff808211156126a057600080fd5b818501915085601f8301126126b457600080fd5b8135818111156126c357600080fd5b8660208260051b85010111156126d857600080fd5b60209290920196919550909350505050565b6000602082840312156126fc57600080fd5b813561251d81612a75565b60006020828403121561271957600080fd5b815161251d81612a75565b60006020828403121561273657600080fd5b813567ffffffffffffffff81111561274d57600080fd5b8201601f8101841361275e57600080fd5b61178984823560208401612470565b60006020828403121561277f57600080fd5b5035919050565b6000815180845261279e816020860160208601612970565b601f01601f19169290920160200192915050565b600084516127c4818460208901612970565b8451908301906127d8818360208901612970565b84519101906127eb818360208801612970565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282890830184612786565b9695505050505050565b60208152600061251d6020830184612786565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b60006001600160801b038083168185168083038211156128dd576128dd612a1d565b01949350505050565b600082198211156128f9576128f9612a1d565b500190565b60008261290d5761290d612a33565b500490565b600081600019048311821515161561292c5761292c612a1d565b500290565b60006001600160801b038381169083168181101561295157612951612a1d565b039392505050565b60008282101561296b5761296b612a1d565b500390565b60005b8381101561298b578181015183820152602001612973565b83811115610f595750506000910152565b6000816129ab576129ab612a1d565b506000190190565b600181811c908216806129c757607f821691505b602082108114156129e857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a0257612a02612a1d565b5060010190565b600082612a1857612a18612a33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7257600080fdfea264697066735822122070e1d7fc8a6675882d35284b82eb869e3386da190cc1f980f71c150cb643658d64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6269487476396a59437a5552475052786f54476275396e48356f6b6e657259596e59625a7369444e44764a412f00000000000000000000

-----Decoded View---------------
Arg [0] : defaultBaseURI (string): ipfs://QmbiHtv9jYCzURGPRxoTGbu9nH5oknerYYnYbZsiDNDvJA/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6269487476396a59437a5552475052786f54476275396e
Arg [3] : 48356f6b6e657259596e59625a7369444e44764a412f00000000000000000000


Deployed Bytecode Sourcemap

58578:5564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58774:41;;;;;;;;;;;;;;;;;;;18153:25:1;;;18141:2;18126:18;58774:41:0;;;;;;;;45534:372;;;;;;;;;;-1:-1:-1;45534:372:0;;;;;:::i;:::-;;:::i;:::-;;;6670:14:1;;6663:22;6645:41;;6633:2;6618:18;45534:372:0;6505:187:1;47339:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48900:214::-;;;;;;;;;;-1:-1:-1;48900:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5968:32:1;;;5950:51;;5938:2;5923:18;48900:214:0;5804:203:1;48421:413:0;;;;;;;;;;-1:-1:-1;48421:413:0;;;;;:::i;:::-;;:::i;62469:197::-;;;;;;;;;;;;;:::i;58677:19::-;;;;;;;;;;;;;;;;43975:100;;;;;;;;;;-1:-1:-1;44028:7:0;44055:12;43975:100;;58734:33;;;;;;;;;;;;;;;;49776:162;;;;;;;;;;-1:-1:-1;49776:162:0;;;;;:::i;:::-;;:::i;63420:111::-;;;;;;;;;;-1:-1:-1;63420:111:0;;;;;:::i;:::-;;:::i;44639:823::-;;;;;;;;;;-1:-1:-1;44639:823:0;;;;;:::i;:::-;;:::i;61466:606::-;;;;;;;;;;-1:-1:-1;61466:606:0;;;;;:::i;:::-;;:::i;59680:122::-;;;;;;;;;;-1:-1:-1;59680:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;59775:19:0;59749:7;59775:19;;;:9;:19;;;;;;;59680:122;62780:632;;;:::i;50009:177::-;;;;;;;;;;-1:-1:-1;50009:177:0;;;;;:::i;:::-;;:::i;59810:86::-;;;;;;;;;;-1:-1:-1;59810:86:0;;;;;:::i;:::-;;:::i;44152:187::-;;;;;;;;;;-1:-1:-1;44152:187:0;;;;;:::i;:::-;;:::i;62674:98::-;;;;;;;;;;-1:-1:-1;62674:98:0;;;;;:::i;:::-;;:::i;58849:23::-;;;;;;;;;;-1:-1:-1;58849:23:0;;;;-1:-1:-1;;;58849:23:0;;;;;;47148:124;;;;;;;;;;-1:-1:-1;47148:124:0;;;;;:::i;:::-;;:::i;58649:21::-;;;;;;;;;;;;;:::i;59904:100::-;;;;;;;;;;-1:-1:-1;59904:100:0;;;;;:::i;:::-;;:::i;59560:112::-;;;;;;;;;;-1:-1:-1;59560:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;59645:19:0;59622:4;59645:19;;;:9;:19;;;;;;;;;59560:112;45970:221;;;;;;;;;;-1:-1:-1;45970:221:0;;;;;:::i;:::-;;:::i;62080:194::-;;;;;;;;;;-1:-1:-1;62080:194:0;;;;;:::i;:::-;;:::i;60885:533::-;;;;;;:::i;:::-;;:::i;60142:154::-;;;;;;;;;;-1:-1:-1;60142:154:0;;;;;:::i;:::-;;:::i;60012:122::-;;;;;;;;;;-1:-1:-1;60012:122:0;;;;;:::i;:::-;;:::i;62282:179::-;;;;;;;;;;;;;:::i;58822:20::-;;;;;;;;;;-1:-1:-1;58822:20:0;;;;-1:-1:-1;;;;;58822:20:0;;;47508:104;;;;;;;;;;;;;:::i;60330:547::-;;;;;;:::i;:::-;;:::i;49186:288::-;;;;;;;;;;-1:-1:-1;49186:288:0;;;;;:::i;:::-;;:::i;50257:355::-;;;;;;;;;;-1:-1:-1;50257:355:0;;;;;:::i;:::-;;:::i;63539:407::-;;;;;;;;;;-1:-1:-1;63539:407:0;;;;;:::i;:::-;;:::i;58703:24::-;;;;;;;;;;;;;;;;54917:43;;;;;;;;;;;;;;;;58879:20;;;;;;;;;;-1:-1:-1;58879:20:0;;;;-1:-1:-1;;;58879:20:0;;;;;;49545:164;;;;;;;;;;-1:-1:-1;49545:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;49666:25:0;;;49642:4;49666:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49545:164;45534:372;45636:4;-1:-1:-1;;;;;;45673:40:0;;-1:-1:-1;;;45673:40:0;;:105;;-1:-1:-1;;;;;;;45730:48:0;;-1:-1:-1;;;45730:48:0;45673:105;:172;;;-1:-1:-1;;;;;;;45795:50:0;;-1:-1:-1;;;45795:50:0;45673:172;:225;;;-1:-1:-1;;;;;;;;;;20463:40:0;;;45862:36;45653:245;45534:372;-1:-1:-1;;45534:372:0:o;47339:100::-;47393:13;47426:5;47419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47339:100;:::o;48900:214::-;48968:7;48996:16;49004:7;50924:4;50958:12;-1:-1:-1;50948:22:0;50867:111;48996:16;48988:74;;;;-1:-1:-1;;;48988:74:0;;17392:2:1;48988:74:0;;;17374:21:1;17431:2;17411:18;;;17404:30;17470:34;17450:18;;;17443:62;-1:-1:-1;;;17521:18:1;;;17514:43;17574:19;;48988:74:0;;;;;;;;;-1:-1:-1;49082:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49082:24:0;;48900:214::o;48421:413::-;48494:13;48510:24;48526:7;48510:15;:24::i;:::-;48494:40;;48559:5;-1:-1:-1;;;;;48553:11:0;:2;-1:-1:-1;;;;;48553:11:0;;;48545:58;;;;-1:-1:-1;;;48545:58:0;;12853:2:1;48545:58:0;;;12835:21:1;12892:2;12872:18;;;12865:30;12931:34;12911:18;;;12904:62;-1:-1:-1;;;12982:18:1;;;12975:32;13024:19;;48545:58:0;12651:398:1;48545:58:0;19422:10;-1:-1:-1;;;;;48638:21:0;;;;:62;;-1:-1:-1;48663:37:0;48680:5;19422:10;49545:164;:::i;48663:37::-;48616:169;;;;-1:-1:-1;;;48616:169:0;;9793:2:1;48616:169:0;;;9775:21:1;9832:2;9812:18;;;9805:30;9871:34;9851:18;;;9844:62;9942:27;9922:18;;;9915:55;9987:19;;48616:169:0;9591:421:1;48616:169:0;48798:28;48807:2;48811:7;48820:5;48798:8;:28::i;:::-;48483:351;48421:413;;:::o;62469:197::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;62529:8:::1;::::0;-1:-1:-1;;;62529:8:0;::::1;;;62525:78;;;62554:8;:16:::0;;-1:-1:-1;;;;62554:16:0::1;::::0;;62469:197::o;62525:78::-:1;62613:11;:19:::0;;-1:-1:-1;;;;62643:15:0;-1:-1:-1;;;62643:15:0::1;::::0;;62469:197::o;49776:162::-;49902:28;49912:4;49918:2;49922:7;49902:9;:28::i;63420:111::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;63495:28:::1;63514:8;63495:18;:28::i;:::-;63420:111:::0;:::o;44639:823::-;44728:7;44764:16;44774:5;44764:9;:16::i;:::-;44756:5;:24;44748:71;;;;-1:-1:-1;;;44748:71:0;;7123:2:1;44748:71:0;;;7105:21:1;7162:2;7142:18;;;7135:30;7201:34;7181:18;;;7174:62;-1:-1:-1;;;7252:18:1;;;7245:32;7294:19;;44748:71:0;6921:398:1;44748:71:0;44830:22;44055:12;;;44830:22;;44962:426;44986:14;44982:1;:18;44962:426;;;45022:31;45056:14;;;:11;:14;;;;;;;;;45022:48;;;;;;;;;-1:-1:-1;;;;;45022:48:0;;;;;-1:-1:-1;;;45022:48:0;;;;;;;;;;;;45089:28;45085:103;;45158:14;;;-1:-1:-1;45085:103:0;45227:5;-1:-1:-1;;;;;45206:26:0;:17;-1:-1:-1;;;;;45206:26:0;;45202:175;;;45272:5;45257:11;:20;45253:77;;;-1:-1:-1;45309:1:0;-1:-1:-1;45302:8:0;;-1:-1:-1;;;45302:8:0;45253:77;45348:13;;;;:::i;:::-;;;;45202:175;-1:-1:-1;45002:3:0;;;;:::i;:::-;;;;44962:426;;;-1:-1:-1;45398:56:0;;-1:-1:-1;;;45398:56:0;;15817:2:1;45398:56:0;;;15799:21:1;15856:2;15836:18;;;15829:30;15895:34;15875:18;;;15868:62;-1:-1:-1;;;15946:18:1;;;15939:44;16000:19;;45398:56:0;15615:410:1;61466:606:0;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;61590:9:::1;;61575:11;61559:13;44028:7:::0;44055:12;;43975:100;61559:13:::1;:27;;;;:::i;:::-;:40;;61551:69;;;::::0;-1:-1:-1;;;61551:69:0;;14381:2:1;61551:69:0::1;::::0;::::1;14363:21:1::0;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14439:18:1;;;14432:46;14495:18;;61551:69:0::1;14179:340:1::0;61551:69:0::1;61650:12;61635:11;:27;61631:108;;61679:27;61689:3;61694:11;61679:9;:27::i;:::-;61466:606:::0;;:::o;61631:108::-:1;61780:11:::0;61802:263:::1;61809:14:::0;;61802:263:::1;;61858:12;61844:10;:26;61840:118;;61891:26;61901:3;61906:10;61891:9;:26::i;61840:118::-;61972:28;61982:3;61987:12;61972:9;:28::i;:::-;62028:25;62041:12;62028:10:::0;:25:::1;:::i;:::-;62015:38;;61802:263;;62780:632:::0;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;62841:7:::1;62862:42;62947:3;62918:26;:21;62942:2;62918:26;:::i;:::-;:32;;;;:::i;:::-;62854:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62840:115;;;62974:2;62966:11;;;::::0;::::1;;62991:7;63012:42;63097:3;63068:26;:21;63092:2;63068:26;:::i;:::-;:32;;;;:::i;:::-;63004:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62990:115;;;63124:2;63116:11;;;::::0;::::1;;63141:7;63162:42;63247:3;63218:26;:21;63242:2;63218:26;:::i;:::-;:32;;;;:::i;:::-;63154:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63140:115;;;63274:2;63266:11;;;::::0;::::1;;63309:49;::::0;63291:12:::1;::::0;63309:10:::1;::::0;63332:21:::1;::::0;63291:12;63309:49;63291:12;63309:49;63332:21;63309:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63290:68;;;63377:7;63369:35;;;::::0;-1:-1:-1;;;63369:35:0;;7886:2:1;63369:35:0::1;::::0;::::1;7868:21:1::0;7925:2;7905:18;;;7898:30;-1:-1:-1;;;7944:18:1;;;7937:45;7999:18;;63369:35:0::1;7684:339:1::0;63369:35:0::1;62827:585;;;;62780:632::o:0;50009:177::-;50139:39;50156:4;50162:2;50166:7;50139:39;;;;;;;;;;;;:16;:39::i;59810:86::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;59873:4:::1;:15:::0;59810:86::o;44152:187::-;44219:7;44055:12;;44247:5;:21;44239:69;;;;-1:-1:-1;;;44239:69:0;;8641:2:1;44239:69:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:33;8813:19;;44239:69:0;8439:399:1;44239:69:0;-1:-1:-1;44326:5:0;44152:187::o;62674:98::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;62747:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;47148:124::-:0;47212:7;47239:20;47251:7;47239:11;:20::i;:::-;:25;;47148:124;-1:-1:-1;;47148:124:0:o;58649:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59904:100::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;59974:9:::1;:22:::0;59904:100::o;45970:221::-;46034:7;-1:-1:-1;;;;;46062:19:0;;46054:75;;;;-1:-1:-1;;;46054:75:0;;10572:2:1;46054:75:0;;;10554:21:1;10611:2;10591:18;;;10584:30;10650:34;10630:18;;;10623:62;-1:-1:-1;;;10701:18:1;;;10694:41;10752:19;;46054:75:0;10370:407:1;46054:75:0;-1:-1:-1;;;;;;46155:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;46155:27:0;;45970:221::o;62080:194::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;62170:9:::1;62165:102;62181:21:::0;;::::1;62165:102;;;62251:4;62224:9;:24;62234:10;;62245:1;62234:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;62224:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;62224:24:0;:31;;-1:-1:-1;;62224:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62204:3;::::1;::::0;::::1;:::i;:::-;;;;62165:102;;60885:533:::0;59156:11;;-1:-1:-1;;;59156:11:0;;;;59148:40;;;;-1:-1:-1;;;59148:40:0;;15472:2:1;59148:40:0;;;15454:21:1;15511:2;15491:18;;;15484:30;-1:-1:-1;;;15530:18:1;;;15523:46;15586:18;;59148:40:0;15270:340:1;59148:40:0;60983:10:::1;60969:11;61021:14:::0;;;:9:::1;:14;::::0;;;;;;;;61054:9:::1;:14:::0;;;;;;;::::1;;61046:42;;;::::0;-1:-1:-1;;;61046:42:0;;15128:2:1;61046:42:0::1;::::0;::::1;15110:21:1::0;15167:2;15147:18;;;15140:30;-1:-1:-1;;;15186:18:1;;;15179:45;15241:18;;61046:42:0::1;14926:339:1::0;61046:42:0::1;61131:13;::::0;61107:20:::1;61116:11:::0;61107:6;:20:::1;:::i;:::-;:37;;61099:63;;;::::0;-1:-1:-1;;;61099:63:0;;12511:2:1;61099:63:0::1;::::0;::::1;12493:21:1::0;12550:2;12530:18;;;12523:30;-1:-1:-1;;;12569:18:1;;;12562:43;12622:18;;61099:63:0::1;12309:337:1::0;61099:63:0::1;61212:9;;61197:11;61181:13;44028:7:::0;44055:12;;43975:100;61181:13:::1;:27;;;;:::i;:::-;:40;;61173:69;;;::::0;-1:-1:-1;;;61173:69:0;;14381:2:1;61173:69:0::1;::::0;::::1;14363:21:1::0;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14439:18:1;;;14432:46;14495:18;;61173:69:0::1;14179:340:1::0;61173:69:0::1;61281:11;61274:4;;:18;;;;:::i;:::-;61261:9;:31;;61253:62;;;::::0;-1:-1:-1;;;61253:62:0;;13256:2:1;61253:62:0::1;::::0;::::1;13238:21:1::0;13295:2;13275:18;;;13268:30;-1:-1:-1;;;13314:18:1;;;13307:48;13372:18;;61253:62:0::1;13054:342:1::0;61253:62:0::1;61345:20;61354:11:::0;61345:6;:20:::1;:::i;:::-;-1:-1:-1::0;;;;;61328:14:0;::::1;;::::0;;;:9:::1;:14;::::0;;;;:37;61376:34:::1;61386:10;61398:11:::0;61376:9:::1;:34::i;60142:154::-:0;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;60239:21:::1;:49:::0;60142:154::o;60012:122::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;60093:13:::1;:33:::0;60012:122::o;62282:179::-;59051:5;;-1:-1:-1;;;;;59051:5:0;59060:10;59051:19;59043:41;;;;-1:-1:-1;;;59043:41:0;;;;;;;:::i;:::-;62345:11:::1;::::0;-1:-1:-1;;;62345:11:0;::::1;;;62341:84;;;62373:11;:19:::0;;-1:-1:-1;;;;62373:19:0::1;::::0;;62469:197::o;62341:84::-:1;62435:11;:18:::0;;-1:-1:-1;;;;62435:18:0::1;-1:-1:-1::0;;;62435:18:0::1;::::0;;62282:179::o;47508:104::-;47564:13;47597:7;47590:14;;;;;:::i;60330:547::-;59257:8;;-1:-1:-1;;;59257:8:0;;;;59249:34;;;;-1:-1:-1;;;59249:34:0;;9451:2:1;59249:34:0;;;9433:21:1;9490:2;9470:18;;;9463:30;-1:-1:-1;;;9509:18:1;;;9502:43;9562:18;;59249:34:0;9249:337:1;59249:34:0;60418:10:::1;60404:11;60456:14:::0;;;:9:::1;:14;::::0;;;;;60513:13:::1;::::0;60489:20:::1;60498:11:::0;60456:14;60489:20:::1;:::i;:::-;:37;;60481:63;;;::::0;-1:-1:-1;;;60481:63:0;;12511:2:1;60481:63:0::1;::::0;::::1;12493:21:1::0;12550:2;12530:18;;;12523:30;-1:-1:-1;;;12569:18:1;;;12562:43;12622:18;;60481:63:0::1;12309:337:1::0;60481:63:0::1;60578:21;;60563:11;:36;;60555:66;;;::::0;-1:-1:-1;;;60555:66:0;;11391:2:1;60555:66:0::1;::::0;::::1;11373:21:1::0;11430:2;11410:18;;;11403:30;-1:-1:-1;;;11449:18:1;;;11442:47;11506:18;;60555:66:0::1;11189:341:1::0;49186:288:0;-1:-1:-1;;;;;49281:24:0;;19422:10;49281:24;;49273:63;;;;-1:-1:-1;;;49273:63:0;;11737:2:1;49273:63:0;;;11719:21:1;11776:2;11756:18;;;11749:30;11815:28;11795:18;;;11788:56;11861:18;;49273:63:0;11535:350:1;49273:63:0;19422:10;49349:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;49349:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;49349:53:0;;;;;;;;;;49418:48;;6645:41:1;;;49349:42:0;;19422:10;49418:48;;6618:18:1;49418:48:0;;;;;;;49186:288;;:::o;50257:355::-;50416:28;50426:4;50432:2;50436:7;50416:9;:28::i;:::-;50477:48;50500:4;50506:2;50510:7;50519:5;50477:22;:48::i;:::-;50455:149;;;;-1:-1:-1;;;50455:149:0;;;;;;;:::i;63539:407::-;63613:13;63647:17;63655:8;50924:4;50958:12;-1:-1:-1;50948:22:0;50867:111;63647:17;63639:61;;;;-1:-1:-1;;;63639:61:0;;7526:2:1;63639:61:0;;;7508:21:1;7565:2;7545:18;;;7538:30;7604:33;7584:18;;;7577:61;7655:18;;63639:61:0;7324:355:1;63639:61:0;63713:26;63742:10;:8;:10::i;:::-;63763:28;;;;;;;;;;;;-1:-1:-1;;;63763:28:0;;;;63809:26;;63713:39;;-1:-1:-1;63763:28:0;63809:129;;;;;;;;;;;;;;;;;63879:12;63893:19;:8;:17;:19::i;:::-;63914:4;63862:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63809:129;63802:136;63539:407;-1:-1:-1;;;;63539:407:0:o;54713:196::-;54828:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;54828:29:0;-1:-1:-1;;;;;54828:29:0;;;;;;;;;54873:28;;54828:24;;54873:28;;;;;;;54713:196;;;:::o;53021:1574::-;53136:35;53174:20;53186:7;53174:11;:20::i;:::-;53249:18;;53136:58;;-1:-1:-1;53207:22:0;;-1:-1:-1;;;;;53233:34:0;19422:10;-1:-1:-1;;;;;53233:34:0;;:87;;;-1:-1:-1;19422:10:0;53284:20;53296:7;53284:11;:20::i;:::-;-1:-1:-1;;;;;53284:36:0;;53233:87;:154;;;-1:-1:-1;53354:18:0;;53337:50;;19422:10;49545:164;:::i;53337:50::-;53207:181;;53409:17;53401:80;;;;-1:-1:-1;;;53401:80:0;;12092:2:1;53401:80:0;;;12074:21:1;12131:2;12111:18;;;12104:30;12170:34;12150:18;;;12143:62;-1:-1:-1;;;12221:18:1;;;12214:48;12279:19;;53401:80:0;11890:414:1;53401:80:0;53524:4;-1:-1:-1;;;;;53502:26:0;:13;:18;;;-1:-1:-1;;;;;53502:26:0;;53494:77;;;;-1:-1:-1;;;53494:77:0;;10984:2:1;53494:77:0;;;10966:21:1;11023:2;11003:18;;;10996:30;11062:34;11042:18;;;11035:62;-1:-1:-1;;;11113:18:1;;;11106:36;11159:19;;53494:77:0;10782:402:1;53494:77:0;-1:-1:-1;;;;;53590:16:0;;53582:66;;;;-1:-1:-1;;;53582:66:0;;9045:2:1;53582:66:0;;;9027:21:1;9084:2;9064:18;;;9057:30;9123:34;9103:18;;;9096:62;-1:-1:-1;;;9174:18:1;;;9167:35;9219:19;;53582:66:0;8843:401:1;53582:66:0;53769:49;53786:1;53790:7;53799:13;:18;;;53769:8;:49::i;:::-;-1:-1:-1;;;;;53831:18:0;;;;;;:12;:18;;;;;:31;;53861:1;;53831:18;:31;;53861:1;;-1:-1:-1;;;;;53831:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;53831:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;53873:16:0;;-1:-1:-1;53873:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;53873:16:0;;:29;;-1:-1:-1;;53873:29:0;;:::i;:::-;;;-1:-1:-1;;;;;53873:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53936:43:0;;;;;;;;-1:-1:-1;;;;;53936:43:0;;;;;;53962:15;53936:43;;;;;;;;;-1:-1:-1;53913:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;53913:66:0;-1:-1:-1;;;;;;53913:66:0;;;;;;;;;;;54241:11;53925:7;-1:-1:-1;54241:11:0;:::i;:::-;54308:1;54267:24;;;:11;:24;;;;;:29;54219:33;;-1:-1:-1;;;;;;54267:29:0;54263:227;;54331:20;54339:11;50924:4;50958:12;-1:-1:-1;50948:22:0;50867:111;54331:20;54327:152;;;54399:64;;;;;;;;54414:18;;-1:-1:-1;;;;;54399:64:0;;;;;;54434:28;;;;54399:64;;;;;;;;;;-1:-1:-1;54372:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;54372:91:0;-1:-1:-1;;;;;;54372:91:0;;;;;;;;;;;;54327:152;54526:7;54522:2;-1:-1:-1;;;;;54507:27:0;54516:4;-1:-1:-1;;;;;54507:27:0;;;;;;;;;;;54545:42;53125:1470;;;53021:1574;;;:::o;55073:885::-;55167:24;;55210:12;55202:49;;;;-1:-1:-1;;;55202:49:0;;10219:2:1;55202:49:0;;;10201:21:1;10258:2;10238:18;;;10231:30;10297:26;10277:18;;;10270:54;10341:18;;55202:49:0;10017:348:1;55202:49:0;55262:16;55312:1;55281:28;55301:8;55281:17;:28;:::i;:::-;:32;;;;:::i;:::-;55262:51;;55354:1;55339:12;;:16;;;;:::i;:::-;55328:8;:27;55324:87;;;55398:1;55383:12;;:16;;;;:::i;:::-;55372:27;;55324:87;55534:17;55542:8;50924:4;50958:12;-1:-1:-1;50948:22:0;50867:111;55534:17;55526:68;;;;-1:-1:-1;;;55526:68:0;;16232:2:1;55526:68:0;;;16214:21:1;16271:2;16251:18;;;16244:30;16310:34;16290:18;;;16283:62;-1:-1:-1;;;16361:18:1;;;16354:36;16407:19;;55526:68:0;16030:402:1;55526:68:0;55622:17;55605:296;55646:8;55641:1;:13;55605:296;;55711:1;55680:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;55680:19:0;55676:214;;55734:31;55768:14;55780:1;55768:11;:14::i;:::-;55818:56;;;;;;;;55833:14;;-1:-1:-1;;;;;55818:56:0;;;;;;55849:24;;;;55818:56;;;;;;;;;;-1:-1:-1;55801:14:0;;;:11;:14;;;;;;;:73;;;;;;;;;-1:-1:-1;;;55801:73:0;-1:-1:-1;;;;;;55801:73:0;;;;;;;;;;;;-1:-1:-1;55676:214:0;55656:3;;;;:::i;:::-;;;;55605:296;;;-1:-1:-1;55938:12:0;:8;55949:1;55938:12;:::i;:::-;55911:24;:39;-1:-1:-1;;;55073:885:0:o;50986:104::-;51055:27;51065:2;51069:8;51055:27;;;;;;;;;;;;:9;:27::i;46436:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;46539:16:0;46547:7;50924:4;50958:12;-1:-1:-1;50948:22:0;50867:111;46539:16;46531:71;;;;-1:-1:-1;;;46531:71:0;;8230:2:1;46531:71:0;;;8212:21:1;8269:2;8249:18;;;8242:30;8308:34;8288:18;;;8281:62;-1:-1:-1;;;8359:18:1;;;8352:40;8409:19;;46531:71:0;8028:406:1;46531:71:0;46615:26;46667:12;46656:7;:23;46652:103;;46717:22;46727:12;46717:7;:22;:::i;:::-;:26;;46742:1;46717:26;:::i;:::-;46696:47;;46652:103;46787:7;46767:242;46804:18;46796:4;:26;46767:242;;46847:31;46881:17;;;:11;:17;;;;;;;;;46847:51;;;;;;;;;-1:-1:-1;;;;;46847:51:0;;;;;-1:-1:-1;;;46847:51:0;;;;;;;;;;;;46917:28;46913:85;;46973:9;46436:650;-1:-1:-1;;;;46436:650:0:o;46913:85::-;-1:-1:-1;46824:6:0;;;;:::i;:::-;;;;46767:242;;;-1:-1:-1;47021:57:0;;-1:-1:-1;;;47021:57:0;;16639:2:1;47021:57:0;;;16621:21:1;16678:2;16658:18;;;16651:30;16717:34;16697:18;;;16690:62;-1:-1:-1;;;16768:18:1;;;16761:45;16823:19;;47021:57:0;16437:411:1;56523:804:0;56678:4;-1:-1:-1;;;;;56699:13:0;;2553:20;2601:8;56695:625;;56735:72;;-1:-1:-1;;;56735:72:0;;-1:-1:-1;;;;;56735:36:0;;;;;:72;;19422:10;;56786:4;;56792:7;;56801:5;;56735:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56735:72:0;;;;;;;;-1:-1:-1;;56735:72:0;;;;;;;;;;;;:::i;:::-;;;56731:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56981:13:0;;56977:273;;57024:61;;-1:-1:-1;;;57024:61:0;;;;;;;:::i;56977:273::-;57200:6;57194:13;57185:6;57181:2;57177:15;57170:38;56731:534;-1:-1:-1;;;;;;56858:55:0;-1:-1:-1;;;56858:55:0;;-1:-1:-1;56851:62:0;;56695:625;-1:-1:-1;57304:4:0;56523:804;;;;;;:::o;63954:108::-;64014:13;64047:7;64040:14;;;;;:::i;8191:723::-;8247:13;8468:10;8464:53;;-1:-1:-1;;8495:10:0;;;;;;;;;;;;-1:-1:-1;;;8495:10:0;;;;;8191:723::o;8464:53::-;8542:5;8527:12;8583:78;8590:9;;8583:78;;8616:8;;;;:::i;:::-;;-1:-1:-1;8639:10:0;;-1:-1:-1;8647:2:0;8639:10;;:::i;:::-;;;8583:78;;;8671:19;8703:6;8693:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8693:17:0;;8671:39;;8721:154;8728:10;;8721:154;;8755:11;8765:1;8755:11;;:::i;:::-;;-1:-1:-1;8824:10:0;8832:2;8824:5;:10;:::i;:::-;8811:24;;:2;:24;:::i;:::-;8798:39;;8781:6;8788;8781:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8781:56:0;;;;;;;;-1:-1:-1;8852:11:0;8861:2;8852:11;;:::i;:::-;;;8721:154;;51367:1400;51490:20;51513:12;-1:-1:-1;;;;;51544:16:0;;51536:62;;;;-1:-1:-1;;;51536:62:0;;14726:2:1;51536:62:0;;;14708:21:1;14765:2;14745:18;;;14738:30;14804:34;14784:18;;;14777:62;-1:-1:-1;;;14855:18:1;;;14848:31;14896:19;;51536:62:0;14524:397:1;51536:62:0;51743:21;51751:12;50924:4;50958:12;-1:-1:-1;50948:22:0;50867:111;51743:21;51742:22;51734:64;;;;-1:-1:-1;;;51734:64:0;;14023:2:1;51734:64:0;;;14005:21:1;14062:2;14042:18;;;14035:30;14101:31;14081:18;;;14074:59;14150:18;;51734:64:0;13821:353:1;51734:64:0;51829:12;51817:8;:24;;51809:71;;;;-1:-1:-1;;;51809:71:0;;17806:2:1;51809:71:0;;;17788:21:1;17845:2;17825:18;;;17818:30;17884:34;17864:18;;;17857:62;-1:-1:-1;;;17935:18:1;;;17928:32;17977:19;;51809:71:0;17604:398:1;51809:71:0;-1:-1:-1;;;;;52000:16:0;;51967:30;52000:16;;;:12;:16;;;;;;;;;51967:49;;;;;;;;;-1:-1:-1;;;;;51967:49:0;;;;;-1:-1:-1;;;51967:49:0;;;;;;;;;;;52046:135;;;;;;;;52072:19;;51967:49;;52046:135;;;52072:39;;52102:8;;52072:39;:::i;:::-;-1:-1:-1;;;;;52046:135:0;;;;;52161:8;52126:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;52046:135:0;;;;;;-1:-1:-1;;;;;52027:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;52027:154:0;;;;;;;;;;;;52220:43;;;;;;;;;;;52246:15;52220:43;;;;;;;;52192:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;52192:71:0;-1:-1:-1;;;;;;52192:71:0;;;;;;;;;;;;;;;;;;52204:12;;52324:325;52348:8;52344:1;:12;52324:325;;;52383:38;;52408:12;;-1:-1:-1;;;;;52383:38:0;;;52400:1;;52383:38;;52400:1;;52383:38;52462:59;52493:1;52497:2;52501:12;52515:5;52462:22;:59::i;:::-;52436:172;;;;-1:-1:-1;;;52436:172:0;;;;;;;:::i;:::-;52623:14;;;;:::i;:::-;;;;52358:3;;;;;:::i;:::-;;;;52324:325;;;-1:-1:-1;52661:12:0;:27;;;52699:60;62780:632;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:664::-;5152:3;5190:6;5184:13;5206:53;5252:6;5247:3;5240:4;5232:6;5228:17;5206:53;:::i;:::-;5322:13;;5281:16;;;;5344:57;5322:13;5281:16;5378:4;5366:17;;5344:57;:::i;:::-;5468:13;;5423:20;;;5490:57;5468:13;5423:20;5524:4;5512:17;;5490:57;:::i;:::-;5563:20;;4925:664;-1:-1:-1;;;;;4925:664:1:o;6012:488::-;-1:-1:-1;;;;;6281:15:1;;;6263:34;;6333:15;;6328:2;6313:18;;6306:43;6380:2;6365:18;;6358:34;;;6428:3;6423:2;6408:18;;6401:31;;;6206:4;;6449:45;;6474:19;;6466:6;6449:45;:::i;:::-;6441:53;6012:488;-1:-1:-1;;;;;;6012:488:1:o;6697:219::-;6846:2;6835:9;6828:21;6809:4;6866:44;6906:2;6895:9;6891:18;6883:6;6866:44;:::i;13401:415::-;13603:2;13585:21;;;13642:2;13622:18;;;13615:30;13681:34;13676:2;13661:18;;13654:62;-1:-1:-1;;;13747:2:1;13732:18;;13725:49;13806:3;13791:19;;13401:415::o;16853:332::-;17055:2;17037:21;;;17094:1;17074:18;;;17067:29;-1:-1:-1;;;17127:2:1;17112:18;;17105:39;17176:2;17161:18;;16853:332::o;18189:253::-;18229:3;-1:-1:-1;;;;;18318:2:1;18315:1;18311:10;18348:2;18345:1;18341:10;18379:3;18375:2;18371:12;18366:3;18363:21;18360:47;;;18387:18;;:::i;:::-;18423:13;;18189:253;-1:-1:-1;;;;18189:253:1:o;18447:128::-;18487:3;18518:1;18514:6;18511:1;18508:13;18505:39;;;18524:18;;:::i;:::-;-1:-1:-1;18560:9:1;;18447:128::o;18580:120::-;18620:1;18646;18636:35;;18651:18;;:::i;:::-;-1:-1:-1;18685:9:1;;18580:120::o;18705:168::-;18745:7;18811:1;18807;18803:6;18799:14;18796:1;18793:21;18788:1;18781:9;18774:17;18770:45;18767:71;;;18818:18;;:::i;:::-;-1:-1:-1;18858:9:1;;18705:168::o;18878:246::-;18918:4;-1:-1:-1;;;;;19031:10:1;;;;19001;;19053:12;;;19050:38;;;19068:18;;:::i;:::-;19105:13;;18878:246;-1:-1:-1;;;18878:246:1:o;19129:125::-;19169:4;19197:1;19194;19191:8;19188:34;;;19202:18;;:::i;:::-;-1:-1:-1;19239:9:1;;19129:125::o;19259:258::-;19331:1;19341:113;19355:6;19352:1;19349:13;19341:113;;;19431:11;;;19425:18;19412:11;;;19405:39;19377:2;19370:10;19341:113;;;19472:6;19469:1;19466:13;19463:48;;;-1:-1:-1;;19507:1:1;19489:16;;19482:27;19259:258::o;19522:136::-;19561:3;19589:5;19579:39;;19598:18;;:::i;:::-;-1:-1:-1;;;19634:18:1;;19522:136::o;19663:380::-;19742:1;19738:12;;;;19785;;;19806:61;;19860:4;19852:6;19848:17;19838:27;;19806:61;19913:2;19905:6;19902:14;19882:18;19879:38;19876:161;;;19959:10;19954:3;19950:20;19947:1;19940:31;19994:4;19991:1;19984:15;20022:4;20019:1;20012:15;19876:161;;19663:380;;;:::o;20048:135::-;20087:3;-1:-1:-1;;20108:17:1;;20105:43;;;20128:18;;:::i;:::-;-1:-1:-1;20175:1:1;20164:13;;20048:135::o;20188:112::-;20220:1;20246;20236:35;;20251:18;;:::i;:::-;-1:-1:-1;20285:9:1;;20188:112::o;20305:127::-;20366:10;20361:3;20357:20;20354:1;20347:31;20397:4;20394:1;20387:15;20421:4;20418:1;20411:15;20437:127;20498:10;20493:3;20489:20;20486:1;20479:31;20529:4;20526:1;20519:15;20553:4;20550:1;20543:15;20569:127;20630:10;20625:3;20621:20;20618:1;20611:31;20661:4;20658:1;20651:15;20685:4;20682:1;20675:15;20701:127;20762:10;20757:3;20753:20;20750:1;20743:31;20793:4;20790:1;20783:15;20817:4;20814:1;20807:15;20833:131;-1:-1:-1;;;;;;20907:32:1;;20897:43;;20887:71;;20954:1;20951;20944:12

Swarm Source

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