ETH Price: $3,442.73 (-1.09%)
Gas: 9 Gwei

Token

Initium Official Project (Initium)
 

Overview

Max Total Supply

764 Initium

Holders

312

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 Initium
0xb898ae2c6951d0cb3c2c3e7ab96a8f72b6863733
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:
Initium

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-13
*/

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




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

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

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


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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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




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

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


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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




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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

contract Initium is ERC721A, Ownable {
  constructor() ERC721A("Initium Official Project", "Initium",50) {}

using SafeMath for uint256;
    using Strings for uint256;

    string private baseURI;
    string private blindURI;
    uint256 public constant BUY_LIMIT_PER_TX = 50;
    uint256 public constant MAX_NFT_PUBLIC = 4344;
    uint256 private constant MAX_NFT = 4444;
    uint256 public NFTPrice = 88000000000000000;  // 0.088 ETH
    bool public reveal;
    bool public isActive;
    bool public isPresaleActive;
    bool private freeMintActive;
    bytes32 public root;
    uint256 public WHITELIST_MAX_MINT = 4;
    mapping(address => uint256) public whiteListClaimed;
    mapping(address => bool) private giveawayMintClaimed;


    /*
     * Function to reveal all Initium
    */
    function revealNow() 
        external 
        onlyOwner 
    {
        reveal = true;
    }
    
    
    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isActive = _isActive;
    }
    
    /*
     * Function setPresaleActive to activate/desactivate the whitelist/raffle presale  
    */
    function setPresaleActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isPresaleActive = _isActive;
    }

    /*
     * Function setFreeMintActive to activate/desactivate the free mint capability  
    */
    function setFreeMintActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        freeMintActive = _isActive;
    }
    
    /*
     * Function to set Base and Blind URI 
    */
    function setURIs(
        string memory _blindURI, 
        string memory _URI
    ) 
        external 
        onlyOwner 
    {
        blindURI = _blindURI;
        baseURI = _URI;
    }
    
    /*
     * Function to withdraw collected amount during minting by the owner
    */
    function withdraw(
    ) 
        public 
        onlyOwner 
    {
        uint balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(address(0xAC6E43B727d1F0f2e31aB275229E7e00d313e6c3)).transfer(balance);
    }
    
    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFT(
        uint256 _numOfTokens
    )
        public
        payable
    {
        require(isActive, 'Contract is not active');
        require(!isPresaleActive, 'Presale is still active');
        require(_numOfTokens <= BUY_LIMIT_PER_TX, "Cannot mint above limit");
        require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        
            _safeMint(msg.sender, _numOfTokens);
    }

    /*
     * Function to mint new NFTs during the presale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */ 
    function mintNFTDuringPresale(
        uint256 _numOfTokens,
        bytes32[] memory _proof
    ) 
        public 
        payable
    {
        require(isActive, 'Sale is not active');
        require(isPresaleActive, 'Whitelist is not active');
        require(verify(_proof, bytes32(uint256(uint160(msg.sender)))), "Not whitelisted");
        if (!freeMintActive){
            require(totalSupply() < MAX_NFT_PUBLIC, 'All public tokens have been minted');
            require(_numOfTokens <= WHITELIST_MAX_MINT, 'Cannot purchase this many tokens');
            require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, 'Purchase would exceed max public supply of NFTs');
            require(whiteListClaimed[msg.sender].add(_numOfTokens) <= WHITELIST_MAX_MINT, 'Purchase exceeds max whitelisted');
            require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
            whiteListClaimed[msg.sender] += _numOfTokens;
            _safeMint(msg.sender, _numOfTokens);
        }
        else{
            require(totalSupply() <= MAX_NFT, 'All tokens have been minted');
            require(_numOfTokens == 1, 'Cannot purchase this many tokens');
            require(!giveawayMintClaimed[msg.sender], 'Already claimed giveaway');
            giveawayMintClaimed[msg.sender] = true;
            _safeMint(msg.sender, _numOfTokens);
        }
    }
    
    /*
     * Function to mint NFTs for giveaway and partnerships
    */
    function mintByOwner(
        address _to
    )
        public 
        onlyOwner
    {
        require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(_to, 1);
    }
    

    /*
     * Function to set NFT Price
    */
    function setNFTPrice(uint256 _price) external onlyOwner {
        NFTPrice = _price;
    }

    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to
    )
        public
        onlyOwner
    {
  
        for(uint256 i = 0; i < _to.length; i++){
            require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], 1);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    )
        public 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!reveal) {
            return string(abi.encodePacked(blindURI));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }
    
    // Set Root for whitelist and raffle to participate in presale
    function setRootAndMax(uint256 _root,uint256 _max) onlyOwner() public {
        root = bytes32(_root);
        WHITELIST_MAX_MINT=_max;
    }

    // Verify MerkleProof
    function verify(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = sha256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = sha256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }

   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintMultipleByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_root","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setRootAndMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600080556000600755670138a388a43c0000600b556004600e553480156200002b57600080fd5b506040518060400160405280601881526020017f496e697469756d204f6666696369616c2050726f6a656374000000000000000081525060405180604001604052806007815260200166496e697469756d60c81b815250603260008111620000b05760405162461bcd60e51b8152600401620000a790620001f8565b60405180910390fd5b8251620000c590600190602086019062000152565b508151620000db90600290602085019062000152565b5060805250620000f69050620000f0620000fc565b62000100565b6200027c565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000160906200023f565b90600052602060002090601f016020900481019282620001845760008555620001cf565b82601f106200019f57805160ff1916838001178555620001cf565b82800160010185558215620001cf579182015b82811115620001cf578251825591602001919060010190620001b2565b50620001dd929150620001e1565b5090565b5b80821115620001dd5760008155600101620001e2565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6002810460018216806200025457607f821691505b602082108114156200027657634e487b7160e01b600052602260045260246000fd5b50919050565b6080516133e6620002a660003960008181611b8301528181611bad0152611f5c01526133e66000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063b533731d116100b6578063e748e07c1161007a578063e748e07c14610699578063e8254174146106ae578063e985e9c5146106ce578063ebf0c717146106ee578063f2fde38b14610703578063f37484e3146107235761025c565b8063b533731d1461060f578063b88d4fde1461062f578063c87b56dd1461064f578063d1d80f301461066f578063d7224ba0146106845761025c565b806395d89b411161010857806395d89b411461057b578063972a2a6214610590578063a22cb465146105b0578063a38bffda146105d0578063a475b5dd146105e5578063aeb16768146105fa5761025c565b8063715018a61461050b57806381530b68146105205780638da5cb5b146105405780638f76696c1461055557806392642744146105685761025c565b80633ccfd60b116101dd5780634f6ccce7116101a15780634f6ccce7146104615780634f9b563c146104815780635f0f45b2146104a157806360d938dc146104b65780636352211e146104cb57806370a08231146104eb5761025c565b80633ccfd60b146103bf5780633f8121a2146103d457806342842e0e146103f4578063438b6300146104145780634cdb4400146104415761025c565b806322f3e2d41161022457806322f3e2d41461032a5780632333f3c41461033f57806323b872dd1461035f5780632750fc781461037f5780632f745c591461039f5761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063095ea7b3146102e657806318160ddd14610308575b600080fd5b34801561026d57600080fd5b5061028161027c366004612593565b610743565b60405161028e9190612852565b60405180910390f35b3480156102a357600080fd5b506102ac6107a6565b60405161028e9190612866565b3480156102c557600080fd5b506102d96102d436600461262b565b610838565b60405161028e91906127bd565b3480156102f257600080fd5b50610306610301366004612460565b610884565b005b34801561031457600080fd5b5061031d61091d565b60405161028e919061285d565b34801561033657600080fd5b50610281610923565b34801561034b57600080fd5b5061031d61035a366004612338565b610931565b34801561036b57600080fd5b5061030661037a366004612384565b610943565b34801561038b57600080fd5b5061030661039a366004612561565b61094e565b3480156103ab57600080fd5b5061031d6103ba366004612460565b6109a7565b3480156103cb57600080fd5b50610306610aa2565b3480156103e057600080fd5b506103066103ef366004612561565b610b44565b34801561040057600080fd5b5061030661040f366004612384565b610b9f565b34801561042057600080fd5b5061043461042f366004612338565b610bba565b60405161028e919061280e565b34801561044d57600080fd5b5061030661045c366004612489565b610d25565b34801561046d57600080fd5b5061031d61047c36600461262b565b610de8565b34801561048d57600080fd5b5061030661049c366004612561565b610e14565b3480156104ad57600080fd5b50610306610e71565b3480156104c257600080fd5b50610281610ebf565b3480156104d757600080fd5b506102d96104e636600461262b565b610ece565b3480156104f757600080fd5b5061031d610506366004612338565b610ee0565b34801561051757600080fd5b50610306610f2d565b34801561052c57600080fd5b5061030661053b36600461262b565b610f78565b34801561054c57600080fd5b506102d9610fbc565b610306610563366004612643565b610fcb565b61030661057636600461262b565b611206565b34801561058757600080fd5b506102ac6112dd565b34801561059c57600080fd5b506102816105ab36600461251f565b6112ec565b3480156105bc57600080fd5b506103066105cb366004612437565b611434565b3480156105dc57600080fd5b5061031d611502565b3480156105f157600080fd5b50610281611508565b34801561060657600080fd5b5061031d611511565b34801561061b57600080fd5b5061030661062a366004612338565b611517565b34801561063b57600080fd5b5061030661064a3660046123bf565b611595565b34801561065b57600080fd5b506102ac61066a36600461262b565b6115ce565b34801561067b57600080fd5b5061031d611643565b34801561069057600080fd5b5061031d611649565b3480156106a557600080fd5b5061031d61164f565b3480156106ba57600080fd5b506103066106c93660046125cb565b611654565b3480156106da57600080fd5b506102816106e9366004612352565b6116ba565b3480156106fa57600080fd5b5061031d6116e8565b34801561070f57600080fd5b5061030661071e366004612338565b6116ee565b34801561072f57600080fd5b5061030661073e36600461267d565b61175c565b60006001600160e01b031982166380ac58cd60e01b148061077457506001600160e01b03198216635b5e139f60e01b145b8061078f57506001600160e01b0319821663780e9d6360e01b145b8061079e575061079e826117a6565b90505b919050565b6060600180546107b5906132ee565b80601f01602080910402602001604051908101604052809291908181526020018280546107e1906132ee565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b6000610843826117bf565b6108685760405162461bcd60e51b815260040161085f906130ac565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061088f82610ece565b9050806001600160a01b0316836001600160a01b031614156108c35760405162461bcd60e51b815260040161085f90612e1d565b806001600160a01b03166108d56117c6565b6001600160a01b031614806108f157506108f1816106e96117c6565b61090d5760405162461bcd60e51b815260040161085f90612b46565b6109188383836117ca565b505050565b60005490565b600c54610100900460ff1681565b600f6020526000908152604090205481565b610918838383611826565b6109566117c6565b6001600160a01b0316610967610fbc565b6001600160a01b03161461098d5760405162461bcd60e51b815260040161085f90612cc1565b600c80549115156101000261ff0019909216919091179055565b60006109b283610ee0565b82106109d05760405162461bcd60e51b815260040161085f90612879565b60006109da61091d565b905060008060005b83811015610a83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a3457805192505b876001600160a01b0316836001600160a01b03161415610a705786841415610a6257509350610a9c92505050565b83610a6c81613329565b9450505b5080610a7b81613329565b9150506109e2565b5060405162461bcd60e51b815260040161085f90612f5f565b92915050565b610aaa6117c6565b6001600160a01b0316610abb610fbc565b6001600160a01b031614610ae15760405162461bcd60e51b815260040161085f90612cc1565b4780610aff5760405162461bcd60e51b815260040161085f90612ae8565b60405173ac6e43b727d1f0f2e31ab275229e7e00d313e6c39082156108fc029083906000818181858888f19350505050158015610b40573d6000803e3d6000fd5b5050565b610b4c6117c6565b6001600160a01b0316610b5d610fbc565b6001600160a01b031614610b835760405162461bcd60e51b815260040161085f90612cc1565b600c8054911515620100000262ff000019909216919091179055565b61091883838360405180602001604052806000815250611595565b60606000610bc783610ee0565b90506000816001600160401b03811115610bf157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c1a578160200160208202803683370190505b50905081610c2b5791506107a19050565b6000610c3561091d565b905060008060005b83811015610d0c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c8f57805192505b886001600160a01b0316836001600160a01b03161415610cf95781868581518110610cca57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cdf81613329565b94505086841415610cf957859750505050505050506107a1565b5080610d0481613329565b915050610c3d565b5060405162461bcd60e51b815260040161085f906129fc565b610d2d6117c6565b6001600160a01b0316610d3e610fbc565b6001600160a01b031614610d645760405162461bcd60e51b815260040161085f90612cc1565b60005b8151811015610b405761115c610d7b61091d565b610d86906001613221565b1115610da45760405162461bcd60e51b815260040161085f90612ba3565b610dd6828281518110610dc757634e487b7160e01b600052603260045260246000fd5b60200260200101516001611b38565b80610de081613329565b915050610d67565b6000610df261091d565b8210610e105760405162461bcd60e51b815260040161085f906129b9565b5090565b610e1c6117c6565b6001600160a01b0316610e2d610fbc565b6001600160a01b031614610e535760405162461bcd60e51b815260040161085f90612cc1565b600c805491151563010000000263ff00000019909216919091179055565b610e796117c6565b6001600160a01b0316610e8a610fbc565b6001600160a01b031614610eb05760405162461bcd60e51b815260040161085f90612cc1565b600c805460ff19166001179055565b600c5462010000900460ff1681565b6000610ed982611b52565b5192915050565b60006001600160a01b038216610f085760405162461bcd60e51b815260040161085f90612c00565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f356117c6565b6001600160a01b0316610f46610fbc565b6001600160a01b031614610f6c5760405162461bcd60e51b815260040161085f90612cc1565b610f766000611c64565b565b610f806117c6565b6001600160a01b0316610f91610fbc565b6001600160a01b031614610fb75760405162461bcd60e51b815260040161085f90612cc1565b600b55565b6008546001600160a01b031690565b600c54610100900460ff16610ff25760405162461bcd60e51b815260040161085f90612a85565b600c5462010000900460ff1661101a5760405162461bcd60e51b815260040161085f906128bb565b61102481336112ec565b6110405760405162461bcd60e51b815260040161085f90612b1d565b600c546301000000900460ff16611169576110f861105c61091d565b106110795760405162461bcd60e51b815260040161085f90612fe4565b600e5482111561109b5760405162461bcd60e51b815260040161085f90613172565b6110f86110b0836110aa61091d565b90611cb6565b11156110ce5760405162461bcd60e51b815260040161085f90612dce565b600e54336000908152600f60205260409020546110eb9084611cb6565b11156111095760405162461bcd60e51b815260040161085f90612ee9565b600b5434906111189084611cc9565b146111355760405162461bcd60e51b815260040161085f90612ab1565b336000908152600f602052604081208054849290611154908490613221565b9091555061116490503383611b38565b610b40565b61115c61117461091d565b11156111925760405162461bcd60e51b815260040161085f90613075565b816001146111b25760405162461bcd60e51b815260040161085f90613172565b3360009081526010602052604090205460ff16156111e25760405162461bcd60e51b815260040161085f9061313b565b336000818152601060205260409020805460ff19166001179055610b409083611b38565b600c54610100900460ff1661122d5760405162461bcd60e51b815260040161085f90612c4b565b600c5462010000900460ff16156112565760405162461bcd60e51b815260040161085f90612fad565b60328111156112775760405162461bcd60e51b815260040161085f90612982565b6110f8611286826110aa61091d565b11156112a45760405162461bcd60e51b815260040161085f90612dce565b600b5434906112b39083611cc9565b146112d05760405162461bcd60e51b815260040161085f90612ab1565b6112da3382611b38565b50565b6060600280546107b5906132ee565b600081815b845181101561142857600085828151811061131c57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116113a35760028382604051602001611342929190612762565b60408051601f198184030181529082905261135c91612770565b602060405180830381855afa158015611379573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061139c919061257b565b9250611415565b600281846040516020016113b8929190612762565b60408051601f19818403018152908290526113d291612770565b602060405180830381855afa1580156113ef573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611412919061257b565b92505b508061142081613329565b9150506112f1565b50600d54149392505050565b61143c6117c6565b6001600160a01b0316826001600160a01b0316141561146d5760405162461bcd60e51b815260040161085f90612d45565b806006600061147a6117c6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114be6117c6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f69190612852565b60405180910390a35050565b600b5481565b600c5460ff1681565b600e5481565b61151f6117c6565b6001600160a01b0316611530610fbc565b6001600160a01b0316146115565760405162461bcd60e51b815260040161085f90612cc1565b61115c61156161091d565b61156c906001613221565b111561158a5760405162461bcd60e51b815260040161085f90612ba3565b6112da816001611b38565b6115a0848484611826565b6115ac84848484611cd5565b6115c85760405162461bcd60e51b815260040161085f90612e5f565b50505050565b60606115d9826117bf565b6115f55760405162461bcd60e51b815260040161085f90612cf6565b600c5460ff1661162757600a604051602001611611919061278c565b60405160208183030381529060405290506107a1565b600961163283611df1565b604051602001611611929190612798565b6110f881565b60075481565b603281565b61165c6117c6565b6001600160a01b031661166d610fbc565b6001600160a01b0316146116935760405162461bcd60e51b815260040161085f90612cc1565b81516116a690600a906020850190612183565b508051610918906009906020840190612183565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600d5481565b6116f66117c6565b6001600160a01b0316611707610fbc565b6001600160a01b03161461172d5760405162461bcd60e51b815260040161085f90612cc1565b6001600160a01b0381166117535760405162461bcd60e51b815260040161085f906128f2565b6112da81611c64565b6117646117c6565b6001600160a01b0316611775610fbc565b6001600160a01b03161461179b5760405162461bcd60e51b815260040161085f90612cc1565b600d91909155600e55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061183182611b52565b9050600081600001516001600160a01b031661184b6117c6565b6001600160a01b0316148061188057506118636117c6565b6001600160a01b031661187584610838565b6001600160a01b0316145b8061189457508151611894906106e96117c6565b9050806118b35760405162461bcd60e51b815260040161085f90612d7c565b846001600160a01b031682600001516001600160a01b0316146118e85760405162461bcd60e51b815260040161085f90612c7b565b6001600160a01b03841661190e5760405162461bcd60e51b815260040161085f90612a40565b61191b85858560016115c8565b61192b60008484600001516117ca565b6001600160a01b038516600090815260046020526040812080546001929061195d9084906001600160801b031661326c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119a9918591166131ff565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611a3e846001613221565b6000818152600360205260409020549091506001600160a01b0316611ae257611a66816117bf565b15611ae25760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3086868660016115c8565b505050505050565b610b40828260405180602001604052806000815250611f0b565b611b5a612203565b611b63826117bf565b611b7f5760405162461bcd60e51b815260040161085f90612938565b60007f00000000000000000000000000000000000000000000000000000000000000008310611be057611bd27f000000000000000000000000000000000000000000000000000000000000000084613294565b611bdd906001613221565b90505b825b818110611c4b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c385792506107a1915050565b5080611c43816132d7565b915050611be2565b5060405162461bcd60e51b815260040161085f90613026565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cc28284613221565b9392505050565b6000611cc2828461324d565b6000611ce9846001600160a01b031661217d565b15611de557836001600160a01b031663150b7a02611d056117c6565b8786866040518563ffffffff1660e01b8152600401611d2794939291906127d1565b602060405180830381600087803b158015611d4157600080fd5b505af1925050508015611d71575060408051601f3d908101601f19168201909252611d6e918101906125af565b60015b611dcb573d808015611d9f576040519150601f19603f3d011682016040523d82523d6000602084013e611da4565b606091505b508051611dc35760405162461bcd60e51b815260040161085f90612e5f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611de9565b5060015b949350505050565b606081611e1657506040805180820190915260018152600360fc1b60208201526107a1565b8160005b8115611e405780611e2a81613329565b9150611e399050600a83613239565b9150611e1a565b6000816001600160401b03811115611e6857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e92576020820181803683370190505b5090505b8415611de957611ea7600183613294565b9150611eb4600a86613344565b611ebf906030613221565b60f81b818381518110611ee257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f04600a86613239565b9450611e96565b6000546001600160a01b038416611f345760405162461bcd60e51b815260040161085f90612f1e565b611f3d816117bf565b15611f5a5760405162461bcd60e51b815260040161085f90612eb2565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f9a5760405162461bcd60e51b815260040161085f906130f9565b611fa760008583866115c8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120039087906131ff565b6001600160801b0316815260200185836020015161202191906131ff565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b8581101561216b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212f6000888488611cd5565b61214b5760405162461bcd60e51b815260040161085f90612e5f565b8161215581613329565b925050808061216390613329565b9150506120e2565b506000818155611b30908785886115c8565b3b151590565b82805461218f906132ee565b90600052602060002090601f0160209004810192826121b157600085556121f7565b82601f106121ca57805160ff19168380011785556121f7565b828001600101855582156121f7579182015b828111156121f75782518255916020019190600101906121dc565b50610e1092915061221a565b604080518082019091526000808252602082015290565b5b80821115610e10576000815560010161221b565b60006001600160401b0383111561224857612248613384565b61225b601f8401601f19166020016131a7565b905082815283838301111561226f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107a157600080fd5b600082601f8301126122ad578081fd5b813560206122c26122bd836131d0565b6131a7565b82815281810190858301838502870184018810156122de578586fd5b855b858110156122fc578135845292840192908401906001016122e0565b5090979650505050505050565b803580151581146107a157600080fd5b600082601f830112612329578081fd5b611cc28383356020850161222f565b600060208284031215612349578081fd5b611cc282612286565b60008060408385031215612364578081fd5b61236d83612286565b915061237b60208401612286565b90509250929050565b600080600060608486031215612398578081fd5b6123a184612286565b92506123af60208501612286565b9150604084013590509250925092565b600080600080608085870312156123d4578081fd5b6123dd85612286565b93506123eb60208601612286565b92506040850135915060608501356001600160401b0381111561240c578182fd5b8501601f8101871361241c578182fd5b61242b8782356020840161222f565b91505092959194509250565b60008060408385031215612449578182fd5b61245283612286565b915061237b60208401612309565b60008060408385031215612472578182fd5b61247b83612286565b946020939093013593505050565b6000602080838503121561249b578182fd5b82356001600160401b038111156124b0578283fd5b8301601f810185136124c0578283fd5b80356124ce6122bd826131d0565b81815283810190838501858402850186018910156124ea578687fd5b8694505b83851015612513576124ff81612286565b8352600194909401939185019185016124ee565b50979650505050505050565b60008060408385031215612531578182fd5b82356001600160401b03811115612546578283fd5b6125528582860161229d565b95602094909401359450505050565b600060208284031215612572578081fd5b611cc282612309565b60006020828403121561258c578081fd5b5051919050565b6000602082840312156125a4578081fd5b8135611cc28161339a565b6000602082840312156125c0578081fd5b8151611cc28161339a565b600080604083850312156125dd578182fd5b82356001600160401b03808211156125f3578384fd5b6125ff86838701612319565b93506020850135915080821115612614578283fd5b5061262185828601612319565b9150509250929050565b60006020828403121561263c578081fd5b5035919050565b60008060408385031215612655578182fd5b8235915060208301356001600160401b03811115612671578182fd5b6126218582860161229d565b6000806040838503121561268f578182fd5b50508035926020909101359150565b600081518084526126b68160208601602086016132ab565b601f01601f19169290920160200192915050565b8054600090600281046001808316806126e457607f831692505b602080841082141561270457634e487b7160e01b86526022600452602486fd5b818015612718576001811461272957612756565b60ff19861689528489019650612756565b612732886131f3565b60005b8681101561274e5781548b820152908501908301612735565b505084890196505b50505050505092915050565b918252602082015260400190565b600082516127828184602087016132ab565b9190910192915050565b6000611cc282846126ca565b60006127a482856126ca565b83516127b48183602088016132ab565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128049083018461269e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128465783518352928401929184019160010161282a565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611cc2602083018461269e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b03811182821017156131c8576131c8613384565b604052919050565b60006001600160401b038211156131e9576131e9613384565b5060209081020190565b60009081526020902090565b60006001600160801b038083168185168083038211156127b4576127b4613358565b6000821982111561323457613234613358565b500190565b6000826132485761324861336e565b500490565b600081600019048311821515161561326757613267613358565b500290565b60006001600160801b038381169083168181101561328c5761328c613358565b039392505050565b6000828210156132a6576132a6613358565b500390565b60005b838110156132c65781810151838201526020016132ae565b838111156115c85750506000910152565b6000816132e6576132e6613358565b506000190190565b60028104600182168061330257607f821691505b6020821081141561332357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561333d5761333d613358565b5060010190565b6000826133535761335361336e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112da57600080fdfea26469706673582212203a72f4418962b0b05f35647c90bcb2e2047ff5194f942d6f7ddcfdba0b00129d64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063b533731d116100b6578063e748e07c1161007a578063e748e07c14610699578063e8254174146106ae578063e985e9c5146106ce578063ebf0c717146106ee578063f2fde38b14610703578063f37484e3146107235761025c565b8063b533731d1461060f578063b88d4fde1461062f578063c87b56dd1461064f578063d1d80f301461066f578063d7224ba0146106845761025c565b806395d89b411161010857806395d89b411461057b578063972a2a6214610590578063a22cb465146105b0578063a38bffda146105d0578063a475b5dd146105e5578063aeb16768146105fa5761025c565b8063715018a61461050b57806381530b68146105205780638da5cb5b146105405780638f76696c1461055557806392642744146105685761025c565b80633ccfd60b116101dd5780634f6ccce7116101a15780634f6ccce7146104615780634f9b563c146104815780635f0f45b2146104a157806360d938dc146104b65780636352211e146104cb57806370a08231146104eb5761025c565b80633ccfd60b146103bf5780633f8121a2146103d457806342842e0e146103f4578063438b6300146104145780634cdb4400146104415761025c565b806322f3e2d41161022457806322f3e2d41461032a5780632333f3c41461033f57806323b872dd1461035f5780632750fc781461037f5780632f745c591461039f5761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063095ea7b3146102e657806318160ddd14610308575b600080fd5b34801561026d57600080fd5b5061028161027c366004612593565b610743565b60405161028e9190612852565b60405180910390f35b3480156102a357600080fd5b506102ac6107a6565b60405161028e9190612866565b3480156102c557600080fd5b506102d96102d436600461262b565b610838565b60405161028e91906127bd565b3480156102f257600080fd5b50610306610301366004612460565b610884565b005b34801561031457600080fd5b5061031d61091d565b60405161028e919061285d565b34801561033657600080fd5b50610281610923565b34801561034b57600080fd5b5061031d61035a366004612338565b610931565b34801561036b57600080fd5b5061030661037a366004612384565b610943565b34801561038b57600080fd5b5061030661039a366004612561565b61094e565b3480156103ab57600080fd5b5061031d6103ba366004612460565b6109a7565b3480156103cb57600080fd5b50610306610aa2565b3480156103e057600080fd5b506103066103ef366004612561565b610b44565b34801561040057600080fd5b5061030661040f366004612384565b610b9f565b34801561042057600080fd5b5061043461042f366004612338565b610bba565b60405161028e919061280e565b34801561044d57600080fd5b5061030661045c366004612489565b610d25565b34801561046d57600080fd5b5061031d61047c36600461262b565b610de8565b34801561048d57600080fd5b5061030661049c366004612561565b610e14565b3480156104ad57600080fd5b50610306610e71565b3480156104c257600080fd5b50610281610ebf565b3480156104d757600080fd5b506102d96104e636600461262b565b610ece565b3480156104f757600080fd5b5061031d610506366004612338565b610ee0565b34801561051757600080fd5b50610306610f2d565b34801561052c57600080fd5b5061030661053b36600461262b565b610f78565b34801561054c57600080fd5b506102d9610fbc565b610306610563366004612643565b610fcb565b61030661057636600461262b565b611206565b34801561058757600080fd5b506102ac6112dd565b34801561059c57600080fd5b506102816105ab36600461251f565b6112ec565b3480156105bc57600080fd5b506103066105cb366004612437565b611434565b3480156105dc57600080fd5b5061031d611502565b3480156105f157600080fd5b50610281611508565b34801561060657600080fd5b5061031d611511565b34801561061b57600080fd5b5061030661062a366004612338565b611517565b34801561063b57600080fd5b5061030661064a3660046123bf565b611595565b34801561065b57600080fd5b506102ac61066a36600461262b565b6115ce565b34801561067b57600080fd5b5061031d611643565b34801561069057600080fd5b5061031d611649565b3480156106a557600080fd5b5061031d61164f565b3480156106ba57600080fd5b506103066106c93660046125cb565b611654565b3480156106da57600080fd5b506102816106e9366004612352565b6116ba565b3480156106fa57600080fd5b5061031d6116e8565b34801561070f57600080fd5b5061030661071e366004612338565b6116ee565b34801561072f57600080fd5b5061030661073e36600461267d565b61175c565b60006001600160e01b031982166380ac58cd60e01b148061077457506001600160e01b03198216635b5e139f60e01b145b8061078f57506001600160e01b0319821663780e9d6360e01b145b8061079e575061079e826117a6565b90505b919050565b6060600180546107b5906132ee565b80601f01602080910402602001604051908101604052809291908181526020018280546107e1906132ee565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b6000610843826117bf565b6108685760405162461bcd60e51b815260040161085f906130ac565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061088f82610ece565b9050806001600160a01b0316836001600160a01b031614156108c35760405162461bcd60e51b815260040161085f90612e1d565b806001600160a01b03166108d56117c6565b6001600160a01b031614806108f157506108f1816106e96117c6565b61090d5760405162461bcd60e51b815260040161085f90612b46565b6109188383836117ca565b505050565b60005490565b600c54610100900460ff1681565b600f6020526000908152604090205481565b610918838383611826565b6109566117c6565b6001600160a01b0316610967610fbc565b6001600160a01b03161461098d5760405162461bcd60e51b815260040161085f90612cc1565b600c80549115156101000261ff0019909216919091179055565b60006109b283610ee0565b82106109d05760405162461bcd60e51b815260040161085f90612879565b60006109da61091d565b905060008060005b83811015610a83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a3457805192505b876001600160a01b0316836001600160a01b03161415610a705786841415610a6257509350610a9c92505050565b83610a6c81613329565b9450505b5080610a7b81613329565b9150506109e2565b5060405162461bcd60e51b815260040161085f90612f5f565b92915050565b610aaa6117c6565b6001600160a01b0316610abb610fbc565b6001600160a01b031614610ae15760405162461bcd60e51b815260040161085f90612cc1565b4780610aff5760405162461bcd60e51b815260040161085f90612ae8565b60405173ac6e43b727d1f0f2e31ab275229e7e00d313e6c39082156108fc029083906000818181858888f19350505050158015610b40573d6000803e3d6000fd5b5050565b610b4c6117c6565b6001600160a01b0316610b5d610fbc565b6001600160a01b031614610b835760405162461bcd60e51b815260040161085f90612cc1565b600c8054911515620100000262ff000019909216919091179055565b61091883838360405180602001604052806000815250611595565b60606000610bc783610ee0565b90506000816001600160401b03811115610bf157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c1a578160200160208202803683370190505b50905081610c2b5791506107a19050565b6000610c3561091d565b905060008060005b83811015610d0c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c8f57805192505b886001600160a01b0316836001600160a01b03161415610cf95781868581518110610cca57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cdf81613329565b94505086841415610cf957859750505050505050506107a1565b5080610d0481613329565b915050610c3d565b5060405162461bcd60e51b815260040161085f906129fc565b610d2d6117c6565b6001600160a01b0316610d3e610fbc565b6001600160a01b031614610d645760405162461bcd60e51b815260040161085f90612cc1565b60005b8151811015610b405761115c610d7b61091d565b610d86906001613221565b1115610da45760405162461bcd60e51b815260040161085f90612ba3565b610dd6828281518110610dc757634e487b7160e01b600052603260045260246000fd5b60200260200101516001611b38565b80610de081613329565b915050610d67565b6000610df261091d565b8210610e105760405162461bcd60e51b815260040161085f906129b9565b5090565b610e1c6117c6565b6001600160a01b0316610e2d610fbc565b6001600160a01b031614610e535760405162461bcd60e51b815260040161085f90612cc1565b600c805491151563010000000263ff00000019909216919091179055565b610e796117c6565b6001600160a01b0316610e8a610fbc565b6001600160a01b031614610eb05760405162461bcd60e51b815260040161085f90612cc1565b600c805460ff19166001179055565b600c5462010000900460ff1681565b6000610ed982611b52565b5192915050565b60006001600160a01b038216610f085760405162461bcd60e51b815260040161085f90612c00565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f356117c6565b6001600160a01b0316610f46610fbc565b6001600160a01b031614610f6c5760405162461bcd60e51b815260040161085f90612cc1565b610f766000611c64565b565b610f806117c6565b6001600160a01b0316610f91610fbc565b6001600160a01b031614610fb75760405162461bcd60e51b815260040161085f90612cc1565b600b55565b6008546001600160a01b031690565b600c54610100900460ff16610ff25760405162461bcd60e51b815260040161085f90612a85565b600c5462010000900460ff1661101a5760405162461bcd60e51b815260040161085f906128bb565b61102481336112ec565b6110405760405162461bcd60e51b815260040161085f90612b1d565b600c546301000000900460ff16611169576110f861105c61091d565b106110795760405162461bcd60e51b815260040161085f90612fe4565b600e5482111561109b5760405162461bcd60e51b815260040161085f90613172565b6110f86110b0836110aa61091d565b90611cb6565b11156110ce5760405162461bcd60e51b815260040161085f90612dce565b600e54336000908152600f60205260409020546110eb9084611cb6565b11156111095760405162461bcd60e51b815260040161085f90612ee9565b600b5434906111189084611cc9565b146111355760405162461bcd60e51b815260040161085f90612ab1565b336000908152600f602052604081208054849290611154908490613221565b9091555061116490503383611b38565b610b40565b61115c61117461091d565b11156111925760405162461bcd60e51b815260040161085f90613075565b816001146111b25760405162461bcd60e51b815260040161085f90613172565b3360009081526010602052604090205460ff16156111e25760405162461bcd60e51b815260040161085f9061313b565b336000818152601060205260409020805460ff19166001179055610b409083611b38565b600c54610100900460ff1661122d5760405162461bcd60e51b815260040161085f90612c4b565b600c5462010000900460ff16156112565760405162461bcd60e51b815260040161085f90612fad565b60328111156112775760405162461bcd60e51b815260040161085f90612982565b6110f8611286826110aa61091d565b11156112a45760405162461bcd60e51b815260040161085f90612dce565b600b5434906112b39083611cc9565b146112d05760405162461bcd60e51b815260040161085f90612ab1565b6112da3382611b38565b50565b6060600280546107b5906132ee565b600081815b845181101561142857600085828151811061131c57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116113a35760028382604051602001611342929190612762565b60408051601f198184030181529082905261135c91612770565b602060405180830381855afa158015611379573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061139c919061257b565b9250611415565b600281846040516020016113b8929190612762565b60408051601f19818403018152908290526113d291612770565b602060405180830381855afa1580156113ef573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611412919061257b565b92505b508061142081613329565b9150506112f1565b50600d54149392505050565b61143c6117c6565b6001600160a01b0316826001600160a01b0316141561146d5760405162461bcd60e51b815260040161085f90612d45565b806006600061147a6117c6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114be6117c6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f69190612852565b60405180910390a35050565b600b5481565b600c5460ff1681565b600e5481565b61151f6117c6565b6001600160a01b0316611530610fbc565b6001600160a01b0316146115565760405162461bcd60e51b815260040161085f90612cc1565b61115c61156161091d565b61156c906001613221565b111561158a5760405162461bcd60e51b815260040161085f90612ba3565b6112da816001611b38565b6115a0848484611826565b6115ac84848484611cd5565b6115c85760405162461bcd60e51b815260040161085f90612e5f565b50505050565b60606115d9826117bf565b6115f55760405162461bcd60e51b815260040161085f90612cf6565b600c5460ff1661162757600a604051602001611611919061278c565b60405160208183030381529060405290506107a1565b600961163283611df1565b604051602001611611929190612798565b6110f881565b60075481565b603281565b61165c6117c6565b6001600160a01b031661166d610fbc565b6001600160a01b0316146116935760405162461bcd60e51b815260040161085f90612cc1565b81516116a690600a906020850190612183565b508051610918906009906020840190612183565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600d5481565b6116f66117c6565b6001600160a01b0316611707610fbc565b6001600160a01b03161461172d5760405162461bcd60e51b815260040161085f90612cc1565b6001600160a01b0381166117535760405162461bcd60e51b815260040161085f906128f2565b6112da81611c64565b6117646117c6565b6001600160a01b0316611775610fbc565b6001600160a01b03161461179b5760405162461bcd60e51b815260040161085f90612cc1565b600d91909155600e55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061183182611b52565b9050600081600001516001600160a01b031661184b6117c6565b6001600160a01b0316148061188057506118636117c6565b6001600160a01b031661187584610838565b6001600160a01b0316145b8061189457508151611894906106e96117c6565b9050806118b35760405162461bcd60e51b815260040161085f90612d7c565b846001600160a01b031682600001516001600160a01b0316146118e85760405162461bcd60e51b815260040161085f90612c7b565b6001600160a01b03841661190e5760405162461bcd60e51b815260040161085f90612a40565b61191b85858560016115c8565b61192b60008484600001516117ca565b6001600160a01b038516600090815260046020526040812080546001929061195d9084906001600160801b031661326c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119a9918591166131ff565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611a3e846001613221565b6000818152600360205260409020549091506001600160a01b0316611ae257611a66816117bf565b15611ae25760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3086868660016115c8565b505050505050565b610b40828260405180602001604052806000815250611f0b565b611b5a612203565b611b63826117bf565b611b7f5760405162461bcd60e51b815260040161085f90612938565b60007f00000000000000000000000000000000000000000000000000000000000000328310611be057611bd27f000000000000000000000000000000000000000000000000000000000000003284613294565b611bdd906001613221565b90505b825b818110611c4b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c385792506107a1915050565b5080611c43816132d7565b915050611be2565b5060405162461bcd60e51b815260040161085f90613026565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cc28284613221565b9392505050565b6000611cc2828461324d565b6000611ce9846001600160a01b031661217d565b15611de557836001600160a01b031663150b7a02611d056117c6565b8786866040518563ffffffff1660e01b8152600401611d2794939291906127d1565b602060405180830381600087803b158015611d4157600080fd5b505af1925050508015611d71575060408051601f3d908101601f19168201909252611d6e918101906125af565b60015b611dcb573d808015611d9f576040519150601f19603f3d011682016040523d82523d6000602084013e611da4565b606091505b508051611dc35760405162461bcd60e51b815260040161085f90612e5f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611de9565b5060015b949350505050565b606081611e1657506040805180820190915260018152600360fc1b60208201526107a1565b8160005b8115611e405780611e2a81613329565b9150611e399050600a83613239565b9150611e1a565b6000816001600160401b03811115611e6857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e92576020820181803683370190505b5090505b8415611de957611ea7600183613294565b9150611eb4600a86613344565b611ebf906030613221565b60f81b818381518110611ee257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f04600a86613239565b9450611e96565b6000546001600160a01b038416611f345760405162461bcd60e51b815260040161085f90612f1e565b611f3d816117bf565b15611f5a5760405162461bcd60e51b815260040161085f90612eb2565b7f0000000000000000000000000000000000000000000000000000000000000032831115611f9a5760405162461bcd60e51b815260040161085f906130f9565b611fa760008583866115c8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120039087906131ff565b6001600160801b0316815260200185836020015161202191906131ff565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b8581101561216b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212f6000888488611cd5565b61214b5760405162461bcd60e51b815260040161085f90612e5f565b8161215581613329565b925050808061216390613329565b9150506120e2565b506000818155611b30908785886115c8565b3b151590565b82805461218f906132ee565b90600052602060002090601f0160209004810192826121b157600085556121f7565b82601f106121ca57805160ff19168380011785556121f7565b828001600101855582156121f7579182015b828111156121f75782518255916020019190600101906121dc565b50610e1092915061221a565b604080518082019091526000808252602082015290565b5b80821115610e10576000815560010161221b565b60006001600160401b0383111561224857612248613384565b61225b601f8401601f19166020016131a7565b905082815283838301111561226f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107a157600080fd5b600082601f8301126122ad578081fd5b813560206122c26122bd836131d0565b6131a7565b82815281810190858301838502870184018810156122de578586fd5b855b858110156122fc578135845292840192908401906001016122e0565b5090979650505050505050565b803580151581146107a157600080fd5b600082601f830112612329578081fd5b611cc28383356020850161222f565b600060208284031215612349578081fd5b611cc282612286565b60008060408385031215612364578081fd5b61236d83612286565b915061237b60208401612286565b90509250929050565b600080600060608486031215612398578081fd5b6123a184612286565b92506123af60208501612286565b9150604084013590509250925092565b600080600080608085870312156123d4578081fd5b6123dd85612286565b93506123eb60208601612286565b92506040850135915060608501356001600160401b0381111561240c578182fd5b8501601f8101871361241c578182fd5b61242b8782356020840161222f565b91505092959194509250565b60008060408385031215612449578182fd5b61245283612286565b915061237b60208401612309565b60008060408385031215612472578182fd5b61247b83612286565b946020939093013593505050565b6000602080838503121561249b578182fd5b82356001600160401b038111156124b0578283fd5b8301601f810185136124c0578283fd5b80356124ce6122bd826131d0565b81815283810190838501858402850186018910156124ea578687fd5b8694505b83851015612513576124ff81612286565b8352600194909401939185019185016124ee565b50979650505050505050565b60008060408385031215612531578182fd5b82356001600160401b03811115612546578283fd5b6125528582860161229d565b95602094909401359450505050565b600060208284031215612572578081fd5b611cc282612309565b60006020828403121561258c578081fd5b5051919050565b6000602082840312156125a4578081fd5b8135611cc28161339a565b6000602082840312156125c0578081fd5b8151611cc28161339a565b600080604083850312156125dd578182fd5b82356001600160401b03808211156125f3578384fd5b6125ff86838701612319565b93506020850135915080821115612614578283fd5b5061262185828601612319565b9150509250929050565b60006020828403121561263c578081fd5b5035919050565b60008060408385031215612655578182fd5b8235915060208301356001600160401b03811115612671578182fd5b6126218582860161229d565b6000806040838503121561268f578182fd5b50508035926020909101359150565b600081518084526126b68160208601602086016132ab565b601f01601f19169290920160200192915050565b8054600090600281046001808316806126e457607f831692505b602080841082141561270457634e487b7160e01b86526022600452602486fd5b818015612718576001811461272957612756565b60ff19861689528489019650612756565b612732886131f3565b60005b8681101561274e5781548b820152908501908301612735565b505084890196505b50505050505092915050565b918252602082015260400190565b600082516127828184602087016132ab565b9190910192915050565b6000611cc282846126ca565b60006127a482856126ca565b83516127b48183602088016132ab565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128049083018461269e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128465783518352928401929184019160010161282a565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611cc2602083018461269e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b03811182821017156131c8576131c8613384565b604052919050565b60006001600160401b038211156131e9576131e9613384565b5060209081020190565b60009081526020902090565b60006001600160801b038083168185168083038211156127b4576127b4613358565b6000821982111561323457613234613358565b500190565b6000826132485761324861336e565b500490565b600081600019048311821515161561326757613267613358565b500290565b60006001600160801b038381169083168181101561328c5761328c613358565b039392505050565b6000828210156132a6576132a6613358565b500390565b60005b838110156132c65781810151838201526020016132ae565b838111156115c85750506000910152565b6000816132e6576132e6613358565b506000190190565b60028104600182168061330257607f821691505b6020821081141561332357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561333d5761333d613358565b5060010190565b6000826133535761335361336e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112da57600080fdfea26469706673582212203a72f4418962b0b05f35647c90bcb2e2047ff5194f942d6f7ddcfdba0b00129d64736f6c63430008000033

Deployed Bytecode Sourcemap

66177:7169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53937:370;;;;;;;;;;-1:-1:-1;53937:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55663:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57188:204::-;;;;;;;;;;-1:-1:-1;57188:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56751:379::-;;;;;;;;;;-1:-1:-1;56751:379:0;;;;;:::i;:::-;;:::i;:::-;;51664:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;66654:20::-;;;;;;;;;;;;;:::i;66819:51::-;;;;;;;;;;-1:-1:-1;66819:51:0;;;;;:::i;:::-;;:::i;58038:150::-;;;;;;;;;;-1:-1:-1;58038:150:0;;;;;:::i;:::-;;:::i;67199:137::-;;;;;;;;;;-1:-1:-1;67199:137:0;;;;;:::i;:::-;;:::i;52292:744::-;;;;;;;;;;-1:-1:-1;52292:744:0;;;;;:::i;:::-;;:::i;68232:280::-;;;;;;;;;;;;;:::i;67453:149::-;;;;;;;;;;-1:-1:-1;67453:149:0;;;;;:::i;:::-;;:::i;58251:165::-;;;;;;;;;;-1:-1:-1;58251:165:0;;;;;:::i;:::-;;:::i;53042:831::-;;;;;;;;;;-1:-1:-1;53042:831:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71381:325::-;;;;;;;;;;-1:-1:-1;71381:325:0;;;;;:::i;:::-;;:::i;51827:177::-;;;;;;;;;;-1:-1:-1;51827:177:0;;;;;:::i;:::-;;:::i;67712:149::-;;;;;;;;;;-1:-1:-1;67712:149:0;;;;;:::i;:::-;;:::i;66995:98::-;;;;;;;;;;;;;:::i;66681:27::-;;;;;;;;;;;;;:::i;55486:118::-;;;;;;;;;;-1:-1:-1;55486:118:0;;;;;:::i;:::-;;:::i;54363:211::-;;;;;;;;;;-1:-1:-1;54363:211:0;;;;;:::i;:::-;;:::i;2503:94::-;;;;;;;;;;;;;:::i;71201:92::-;;;;;;;;;;-1:-1:-1;71201:92:0;;;;;:::i;:::-;;:::i;1852:87::-;;;;;;;;;;;;;:::i;69406:1410::-;;;;;;:::i;:::-;;:::i;68677:571::-;;;;;;:::i;:::-;;:::i;55818:98::-;;;;;;;;;;;;;:::i;72550:786::-;;;;;;;;;;-1:-1:-1;72550:786:0;;;;;:::i;:::-;;:::i;57456:274::-;;;;;;;;;;-1:-1:-1;57456:274:0;;;;;:::i;:::-;;:::i;66565:43::-;;;;;;;;;;;;;:::i;66629:18::-;;;;;;;;;;;;;:::i;66775:37::-;;;;;;;;;;;;;:::i;70904:233::-;;;;;;;;;;-1:-1:-1;70904:233:0;;;;;:::i;:::-;;:::i;58479:319::-;;;;;;;;;;-1:-1:-1;58479:319:0;;;;;:::i;:::-;;:::i;71850:441::-;;;;;;;;;;-1:-1:-1;71850:441:0;;;;;:::i;:::-;;:::i;66467:45::-;;;;;;;;;;;;;:::i;62818:43::-;;;;;;;;;;;;;:::i;66415:45::-;;;;;;;;;;;;;:::i;67933:197::-;;;;;;;;;;-1:-1:-1;67933:197:0;;;;;:::i;:::-;;:::i;57793:186::-;;;;;;;;;;-1:-1:-1;57793:186:0;;;;;:::i;:::-;;:::i;66749:19::-;;;;;;;;;;;;;:::i;2752:192::-;;;;;;;;;;-1:-1:-1;2752:192:0;;;;;:::i;:::-;;:::i;72371:144::-;;;;;;;;;;-1:-1:-1;72371:144:0;;;;;:::i;:::-;;:::i;53937:370::-;54064:4;-1:-1:-1;;;;;;54094:40:0;;-1:-1:-1;;;54094:40:0;;:99;;-1:-1:-1;;;;;;;54145:48:0;;-1:-1:-1;;;54145:48:0;54094:99;:160;;;-1:-1:-1;;;;;;;54204:50:0;;-1:-1:-1;;;54204:50:0;54094:160;:207;;;;54265:36;54289:11;54265:23;:36::i;:::-;54080:221;;53937:370;;;;:::o;55663:94::-;55717:13;55746:5;55739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55663:94;:::o;57188:204::-;57256:7;57280:16;57288:7;57280;:16::i;:::-;57272:74;;;;-1:-1:-1;;;57272:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;57362:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57362:24:0;;57188:204::o;56751:379::-;56820:13;56836:24;56852:7;56836:15;:24::i;:::-;56820:40;;56881:5;-1:-1:-1;;;;;56875:11:0;:2;-1:-1:-1;;;;;56875:11:0;;;56867:58;;;;-1:-1:-1;;;56867:58:0;;;;;;;:::i;:::-;56966:5;-1:-1:-1;;;;;56950:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;56950:21:0;;:62;;;;56975:37;56992:5;56999:12;:10;:12::i;56975:37::-;56934:153;;;;-1:-1:-1;;;56934:153:0;;;;;;;:::i;:::-;57096:28;57105:2;57109:7;57118:5;57096:8;:28::i;:::-;56751:379;;;:::o;51664:94::-;51717:7;51740:12;51664:94;:::o;66654:20::-;;;;;;;;;:::o;66819:51::-;;;;;;;;;;;;;:::o;58038:150::-;58154:28;58164:4;58170:2;58174:7;58154:9;:28::i;67199:137::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67308:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;67308:20:0;;::::1;::::0;;;::::1;::::0;;67199:137::o;52292:744::-;52401:7;52436:16;52446:5;52436:9;:16::i;:::-;52428:5;:24;52420:71;;;;-1:-1:-1;;;52420:71:0;;;;;;;:::i;:::-;52498:22;52523:13;:11;:13::i;:::-;52498:38;;52543:19;52573:25;52623:9;52618:350;52642:14;52638:1;:18;52618:350;;;52672:31;52706:14;;;:11;:14;;;;;;;;;52672:48;;;;;;;;;-1:-1:-1;;;;;52672:48:0;;;;;-1:-1:-1;;;52672:48:0;;;-1:-1:-1;;;;;52672:48:0;;;;;;;;52733:28;52729:89;;52794:14;;;-1:-1:-1;52729:89:0;52851:5;-1:-1:-1;;;;;52830:26:0;:17;-1:-1:-1;;;;;52830:26:0;;52826:135;;;52888:5;52873:11;:20;52869:59;;;-1:-1:-1;52915:1:0;-1:-1:-1;52908:8:0;;-1:-1:-1;;;52908:8:0;52869:59;52938:13;;;;:::i;:::-;;;;52826:135;-1:-1:-1;52658:3:0;;;;:::i;:::-;;;;52618:350;;;;52974:56;;-1:-1:-1;;;52974:56:0;;;;;;;:::i;52292:744::-;;;;;:::o;68232:280::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;68327:21:::1;68367:11:::0;68359:56:::1;;;;-1:-1:-1::0;;;68359:56:0::1;;;;;;;:::i;:::-;68426:78;::::0;68442:42:::1;::::0;68426:78;::::1;;;::::0;68496:7;;68426:78:::1;::::0;;;68496:7;68442:42;68426:78;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2143:1;68232:280::o:0;67453:149::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67567:15:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67567:27:0;;::::1;::::0;;;::::1;::::0;;67453:149::o;58251:165::-;58371:39;58388:4;58394:2;58398:7;58371:39;;;;;;;;;;;;:16;:39::i;53042:831::-;53100:16;53125:18;53146:16;53156:5;53146:9;:16::i;:::-;53125:37;;53171:25;53213:10;-1:-1:-1;;;;;53199:25:0;;;;;-1:-1:-1;;;53199:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53199:25:0;-1:-1:-1;53171:53:0;-1:-1:-1;53235:15:0;53231:58;;53273:8;-1:-1:-1;53266:15:0;;-1:-1:-1;53266:15:0;53231:58;53297:22;53322:13;:11;:13::i;:::-;53297:38;;53342:19;53372:25;53422:9;53417:398;53441:14;53437:1;:18;53417:398;;;53471:31;53505:14;;;:11;:14;;;;;;;;;53471:48;;;;;;;;;-1:-1:-1;;;;;53471:48:0;;;;;-1:-1:-1;;;53471:48:0;;;-1:-1:-1;;;;;53471:48:0;;;;;;;;53532:28;53528:89;;53593:14;;;-1:-1:-1;53528:89:0;53650:5;-1:-1:-1;;;;;53629:26:0;:17;-1:-1:-1;;;;;53629:26:0;;53625:183;;;53692:1;53668:8;53677:11;53668:21;;;;;;-1:-1:-1;;;53668:21:0;;;;;;;;;;;;;;;;;;:25;53704:13;;;;:::i;:::-;;;;53747:10;53732:11;:25;53728:71;;;53779:8;53772:15;;;;;;;;;;;53728:71;-1:-1:-1;53457:3:0;;;;:::i;:::-;;;;53417:398;;;;53821:46;;-1:-1:-1;;;53821:46:0;;;;;;;:::i;71381:325::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;71507:9:::1;71503:196;71526:3;:10;71522:1;:14;71503:196;;;66554:4;71565:13;:11;:13::i;:::-;:15;::::0;71579:1:::1;71565:15;:::i;:::-;:26;;71557:95;;;;-1:-1:-1::0;;;71557:95:0::1;;;;;;;:::i;:::-;71667:20;71677:3;71681:1;71677:6;;;;;;-1:-1:-1::0;;;71677:6:0::1;;;;;;;;;;;;;;;71685:1;71667:9;:20::i;:::-;71538:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71503:196;;51827:177:::0;51894:7;51926:13;:11;:13::i;:::-;51918:5;:21;51910:69;;;;-1:-1:-1;;;51910:69:0;;;;;;;:::i;:::-;-1:-1:-1;51993:5:0;51827:177::o;67712:149::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67827:14:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67827:26:0;;::::1;::::0;;;::::1;::::0;;67712:149::o;66995:98::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67072:6:::1;:13:::0;;-1:-1:-1;;67072:13:0::1;67081:4;67072:13;::::0;;66995:98::o;66681:27::-;;;;;;;;;:::o;55486:118::-;55550:7;55573:20;55585:7;55573:11;:20::i;:::-;:25;;55486:118;-1:-1:-1;;55486:118:0:o;54363:211::-;54427:7;-1:-1:-1;;;;;54451:19:0;;54443:75;;;;-1:-1:-1;;;54443:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;54540:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54540:27:0;;54363:211::o;2503:94::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;2568:21:::1;2586:1;2568:9;:21::i;:::-;2503:94::o:0;71201:92::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;71268:8:::1;:17:::0;71201:92::o;1852:87::-;1925:6;;-1:-1:-1;;;;;1925:6:0;1852:87;:::o;69406:1410::-;69567:8;;;;;;;69559:39;;;;-1:-1:-1;;;69559:39:0;;;;;;;:::i;:::-;69617:15;;;;;;;69609:51;;;;-1:-1:-1;;;69609:51:0;;;;;;;:::i;:::-;69679:53;69686:6;69718:10;69679:6;:53::i;:::-;69671:81;;;;-1:-1:-1;;;69671:81:0;;;;;;;:::i;:::-;69768:14;;;;;;;69763:1046;;66508:4;69806:13;:11;:13::i;:::-;:30;69798:77;;;;-1:-1:-1;;;69798:77:0;;;;;;;:::i;:::-;69914:18;;69898:12;:34;;69890:79;;;;-1:-1:-1;;;69890:79:0;;;;;;;:::i;:::-;66508:4;69992:31;70010:12;69992:13;:11;:13::i;:::-;:17;;:31::i;:::-;:49;;69984:109;;;;-1:-1:-1;;;69984:109:0;;;;;;;:::i;:::-;70166:18;;70133:10;70116:28;;;;:16;:28;;;;;;:46;;70149:12;70116:32;:46::i;:::-;:68;;70108:113;;;;-1:-1:-1;;;70108:113:0;;;;;;;:::i;:::-;70244:8;;70274:9;;70244:26;;70257:12;70244;:26::i;:::-;:39;70236:83;;;;-1:-1:-1;;;70236:83:0;;;;;;;:::i;:::-;70351:10;70334:28;;;;:16;:28;;;;;:44;;70366:12;;70334:28;:44;;70366:12;;70334:44;:::i;:::-;;;;-1:-1:-1;70393:35:0;;-1:-1:-1;70403:10:0;70415:12;70393:9;:35::i;:::-;69763:1046;;;66554:4;70477:13;:11;:13::i;:::-;:24;;70469:64;;;;-1:-1:-1;;;70469:64:0;;;;;;;:::i;:::-;70556:12;70572:1;70556:17;70548:62;;;;-1:-1:-1;;;70548:62:0;;;;;;;:::i;:::-;70654:10;70634:31;;;;:19;:31;;;;;;;;70633:32;70625:69;;;;-1:-1:-1;;;70625:69:0;;;;;;;:::i;:::-;70729:10;70709:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;70709:38:0;70743:4;70709:38;;;70762:35;;70784:12;70762:9;:35::i;68677:571::-;68789:8;;;;;;;68781:43;;;;-1:-1:-1;;;68781:43:0;;;;;;;:::i;:::-;68844:15;;;;;;;68843:16;68835:52;;;;-1:-1:-1;;;68835:52:0;;;;;;;:::i;:::-;66458:2;68906:12;:32;;68898:68;;;;-1:-1:-1;;;68898:68:0;;;;;;;:::i;:::-;66508:4;68985:31;69003:12;68985:13;:11;:13::i;:31::-;:49;;68977:109;;;;-1:-1:-1;;;68977:109:0;;;;;;;:::i;:::-;69105:8;;69135:9;;69105:26;;69118:12;69105;:26::i;:::-;:39;69097:83;;;;-1:-1:-1;;;69097:83:0;;;;;;;:::i;:::-;69205:35;69215:10;69227:12;69205:9;:35::i;:::-;68677:571;:::o;55818:98::-;55874:13;55903:7;55896:14;;;;;:::i;72550:786::-;72625:4;72665;72625;72682:531;72706:5;:12;72702:1;:16;72682:531;;;72740:20;72763:5;72769:1;72763:8;;;;;;-1:-1:-1;;;72763:8:0;;;;;;;;;;;;;;;72740:31;;72820:12;72804;:28;72800:402;;72947:52;72971:12;72985;72954:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;72954:44:0;;;;;;;;;;72947:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72932:67;;72800:402;;;73134:52;73158:12;73172;73141:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;73141:44:0;;;;;;;;;;73134:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73119:67;;72800:402;-1:-1:-1;72720:3:0;;;;:::i;:::-;;;;72682:531;;;-1:-1:-1;73324:4:0;;73308:20;;72550:786;-1:-1:-1;;;72550:786:0:o;57456:274::-;57559:12;:10;:12::i;:::-;-1:-1:-1;;;;;57547:24:0;:8;-1:-1:-1;;;;;57547:24:0;;;57539:63;;;;-1:-1:-1;;;57539:63:0;;;;;;;:::i;:::-;57656:8;57611:18;:32;57630:12;:10;:12::i;:::-;-1:-1:-1;;;;;57611:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;57611:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;57611:53:0;;;;;;;;;;;57691:12;:10;:12::i;:::-;-1:-1:-1;;;;;57676:48:0;;57715:8;57676:48;;;;;;:::i;:::-;;;;;;;;57456:274;;:::o;66565:43::-;;;;:::o;66629:18::-;;;;;;:::o;66775:37::-;;;;:::o;70904:233::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;66554:4:::1;71014:13;:11;:13::i;:::-;:15;::::0;71028:1:::1;71014:15;:::i;:::-;:26;;71006:95;;;;-1:-1:-1::0;;;71006:95:0::1;;;;;;;:::i;:::-;71112:17;71122:3;71127:1;71112:9;:17::i;58479:319::-:0;58624:28;58634:4;58640:2;58644:7;58624:9;:28::i;:::-;58675:48;58698:4;58704:2;58708:7;58717:5;58675:22;:48::i;:::-;58659:133;;;;-1:-1:-1;;;58659:133:0;;;;;;;:::i;:::-;58479:319;;;;:::o;71850:441::-;71989:13;72029:17;72037:8;72029:7;:17::i;:::-;72021:77;;;;-1:-1:-1;;;72021:77:0;;;;;;;:::i;:::-;72114:6;;;;72109:175;;72168:8;72151:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;72137:41;;;;72109:175;72242:7;72251:19;:8;:17;:19::i;:::-;72225:46;;;;;;;;;:::i;66467:45::-;66508:4;66467:45;:::o;62818:43::-;;;;:::o;66415:45::-;66458:2;66415:45;:::o;67933:197::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;68077:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68108:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;57793:186::-:0;-1:-1:-1;;;;;57938:25:0;;;57915:4;57938:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57793:186::o;66749:19::-;;;;:::o;2752:192::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2841:22:0;::::1;2833:73;;;;-1:-1:-1::0;;;2833:73:0::1;;;;;;;:::i;:::-;2917:19;2927:8;2917:9;:19::i;72371:144::-:0;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;72452:4:::1;:21:::0;;;;72484:18:::1;:23:::0;72371:144::o;21277:157::-;-1:-1:-1;;;;;;21386:40:0;;-1:-1:-1;;;21386:40:0;21277:157;;;:::o;59037:105::-;59094:4;59124:12;-1:-1:-1;59114:22:0;59037:105::o;665:98::-;745:10;665:98;:::o;62640:172::-;62737:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62737:29:0;-1:-1:-1;;;;;62737:29:0;;;;;;;;;62778:28;;62737:24;;62778:28;;;;;;;62640:172;;;:::o;61005:1529::-;61102:35;61140:20;61152:7;61140:11;:20::i;:::-;61102:58;;61169:22;61211:13;:18;;;-1:-1:-1;;;;;61195:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;61195:34:0;;:81;;;;61264:12;:10;:12::i;:::-;-1:-1:-1;;;;;61240:36:0;:20;61252:7;61240:11;:20::i;:::-;-1:-1:-1;;;;;61240:36:0;;61195:81;:142;;;-1:-1:-1;61304:18:0;;61287:50;;61324:12;:10;:12::i;61287:50::-;61169:169;;61363:17;61347:101;;;;-1:-1:-1;;;61347:101:0;;;;;;;:::i;:::-;61495:4;-1:-1:-1;;;;;61473:26:0;:13;:18;;;-1:-1:-1;;;;;61473:26:0;;61457:98;;;;-1:-1:-1;;;61457:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61570:16:0;;61562:66;;;;-1:-1:-1;;;61562:66:0;;;;;;;:::i;:::-;61637:43;61659:4;61665:2;61669:7;61678:1;61637:21;:43::i;:::-;61737:49;61754:1;61758:7;61767:13;:18;;;61737:8;:49::i;:::-;-1:-1:-1;;;;;61795:18:0;;;;;;:12;:18;;;;;:31;;61825:1;;61795:18;:31;;61825:1;;-1:-1:-1;;;;;61795:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;61795:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61833:16:0;;-1:-1:-1;61833:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;61833:16:0;;:29;;-1:-1:-1;;61833:29:0;;:::i;:::-;;;-1:-1:-1;;;;;61833:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61892:43:0;;;;;;;;-1:-1:-1;;;;;61892:43:0;;;;;-1:-1:-1;;;;;61918:15:0;61892:43;;;;;;;;;-1:-1:-1;61869:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;61869:66:0;-1:-1:-1;;;;61869:66:0;;;;-1:-1:-1;;;;;;61869:66:0;;;;;;;;62185:11;61881:7;-1:-1:-1;62185:11:0;:::i;:::-;62248:1;62207:24;;;:11;:24;;;;;:29;62163:33;;-1:-1:-1;;;;;;62207:29:0;62203:236;;62265:20;62273:11;62265:7;:20::i;:::-;62261:171;;;62325:97;;;;;;;;62352:18;;-1:-1:-1;;;;;62325:97:0;;;;;;62383:28;;;;-1:-1:-1;;;;;62325:97:0;;;;;;;;;-1:-1:-1;62298:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;62298:124:0;;;;;;;;;-1:-1:-1;;;;62298:124:0;-1:-1:-1;;;62298:124:0;;;;;;;;;;;;;;62261:171;62471:7;62467:2;-1:-1:-1;;;;;62452:27:0;62461:4;-1:-1:-1;;;;;62452:27:0;;;;;;;;;;;62486:42;62507:4;62513:2;62517:7;62526:1;62486:20;:42::i;:::-;61005:1529;;;;;;:::o;59148:98::-;59213:27;59223:2;59227:8;59213:27;;;;;;;;;;;;:9;:27::i;54826:606::-;54902:21;;:::i;:::-;54943:16;54951:7;54943;:16::i;:::-;54935:71;;;;-1:-1:-1;;;54935:71:0;;;;;;;:::i;:::-;55015:26;55063:12;55052:7;:23;55048:93;;55107:22;55117:12;55107:7;:22;:::i;:::-;:26;;55132:1;55107:26;:::i;:::-;55086:47;;55048:93;55169:7;55149:212;55186:18;55178:4;:26;55149:212;;55223:31;55257:17;;;:11;:17;;;;;;;;;55223:51;;;;;;;;;-1:-1:-1;;;;;55223:51:0;;;;;-1:-1:-1;;;55223:51:0;;;-1:-1:-1;;;;;55223:51:0;;;;;;;;55287:28;55283:71;;55335:9;-1:-1:-1;55328:16:0;;-1:-1:-1;;55328:16:0;55283:71;-1:-1:-1;55206:6:0;;;;:::i;:::-;;;;55149:212;;;;55369:57;;-1:-1:-1;;;55369:57:0;;;;;;;:::i;2952:173::-;3027:6;;;-1:-1:-1;;;;;3044:17:0;;;-1:-1:-1;;;;;;3044:17:0;;;;;;;3077:40;;3027:6;;;3044:17;3027:6;;3077:40;;3008:16;;3077:40;2952:173;;:::o;45649:98::-;45707:7;45734:5;45738:1;45734;:5;:::i;:::-;45727:12;45649:98;-1:-1:-1;;;45649:98:0:o;46387:::-;46445:7;46472:5;46476:1;46472;:5;:::i;64351:690::-;64488:4;64505:15;:2;-1:-1:-1;;;;;64505:13:0;;:15::i;:::-;64501:535;;;64560:2;-1:-1:-1;;;;;64544:36:0;;64581:12;:10;:12::i;:::-;64595:4;64601:7;64610:5;64544:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64544:72:0;;;;;;;;-1:-1:-1;;64544:72:0;;;;;;;;;;;;:::i;:::-;;;64531:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64775:13:0;;64771:215;;64808:61;;-1:-1:-1;;;64808:61:0;;;;;;;:::i;64771:215::-;64954:6;64948:13;64939:6;64935:2;64931:15;64924:38;64531:464;-1:-1:-1;;;;;;64666:55:0;-1:-1:-1;;;64666:55:0;;-1:-1:-1;64659:62:0;;64501:535;-1:-1:-1;65024:4:0;64501:535;64351:690;;;;;;:::o;18745:723::-;18801:13;19022:10;19018:53;;-1:-1:-1;19049:10:0;;;;;;;;;;;;-1:-1:-1;;;19049:10:0;;;;;;19018:53;19096:5;19081:12;19137:78;19144:9;;19137:78;;19170:8;;;;:::i;:::-;;-1:-1:-1;19193:10:0;;-1:-1:-1;19201:2:0;19193:10;;:::i;:::-;;;19137:78;;;19225:19;19257:6;-1:-1:-1;;;;;19247:17:0;;;;;-1:-1:-1;;;19247:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19247:17:0;;19225:39;;19275:154;19282:10;;19275:154;;19309:11;19319:1;19309:11;;:::i;:::-;;-1:-1:-1;19378:10:0;19386:2;19378:5;:10;:::i;:::-;19365:24;;:2;:24;:::i;:::-;19352:39;;19335:6;19342;19335:14;;;;;;-1:-1:-1;;;19335:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19335:56:0;;;;;;;;-1:-1:-1;19406:11:0;19415:2;19406:11;;:::i;:::-;;;19275:154;;59501:1272;59606:20;59629:12;-1:-1:-1;;;;;59656:16:0;;59648:62;;;;-1:-1:-1;;;59648:62:0;;;;;;;:::i;:::-;59847:21;59855:12;59847:7;:21::i;:::-;59846:22;59838:64;;;;-1:-1:-1;;;59838:64:0;;;;;;;:::i;:::-;59929:12;59917:8;:24;;59909:71;;;;-1:-1:-1;;;59909:71:0;;;;;;;:::i;:::-;59989:61;60019:1;60023:2;60027:12;60041:8;59989:21;:61::i;:::-;-1:-1:-1;;;;;60092:16:0;;60059:30;60092:16;;;:12;:16;;;;;;;;;60059:49;;;;;;;;;-1:-1:-1;;;;;60059:49:0;;;;;-1:-1:-1;;;60059:49:0;;;;;;;;;;;60134:119;;;;;;;;60154:19;;60059:49;;60134:119;;;60154:39;;60184:8;;60154:39;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;60237:8;60202:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;;-1:-1:-1;;;;;60115:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;60115:138:0;;;;-1:-1:-1;;60115:138:0;;;;;;;;;;;;;;;;;60288:43;;;;;;;;;;-1:-1:-1;;;;;60314:15:0;60288:43;;;;;;;;60260:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;60260:71:0;-1:-1:-1;;;;60260:71:0;;;;-1:-1:-1;;;;;;60260:71:0;;;;;;;;;;;;;;;60272:12;;60384:281;60408:8;60404:1;:12;60384:281;;;60437:38;;60462:12;;-1:-1:-1;;;;;60437:38:0;;;60454:1;;60437:38;;60454:1;;60437:38;60502:59;60533:1;60537:2;60541:12;60555:5;60502:22;:59::i;:::-;60484:150;;;;-1:-1:-1;;;60484:150:0;;;;;;;:::i;:::-;60643:14;;;;:::i;:::-;;;;60418:3;;;;;:::i;:::-;;;;60384:281;;;-1:-1:-1;60673:12:0;:27;;;60707:60;;60740:2;60744:12;60758:8;60707:20;:60::i;11128:387::-;11451:20;11499:8;;;11128:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;-1:-1:-1;;;;;106:6:1;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:162::-;1385:20;;1441:13;;1434:21;1424:32;;1414:2;;1470:1;1467;1460:12;1485:233;;1583:3;1576:4;1568:6;1564:17;1560:27;1550:2;;1605:5;1598;1591:20;1550:2;1631:81;1708:3;1699:6;1686:20;1679:4;1671:6;1667:17;1631:81;:::i;1723:198::-;;1835:2;1823:9;1814:7;1810:23;1806:32;1803:2;;;1856:6;1848;1841:22;1803:2;1884:31;1905:9;1884:31;:::i;1926:274::-;;;2055:2;2043:9;2034:7;2030:23;2026:32;2023:2;;;2076:6;2068;2061:22;2023:2;2104:31;2125:9;2104:31;:::i;:::-;2094:41;;2154:40;2190:2;2179:9;2175:18;2154:40;:::i;:::-;2144:50;;2013:187;;;;;:::o;2205:342::-;;;;2351:2;2339:9;2330:7;2326:23;2322:32;2319:2;;;2372:6;2364;2357:22;2319:2;2400:31;2421:9;2400:31;:::i;:::-;2390:41;;2450:40;2486:2;2475:9;2471:18;2450:40;:::i;:::-;2440:50;;2537:2;2526:9;2522:18;2509:32;2499:42;;2309:238;;;;;:::o;2552:702::-;;;;;2724:3;2712:9;2703:7;2699:23;2695:33;2692:2;;;2746:6;2738;2731:22;2692:2;2774:31;2795:9;2774:31;:::i;:::-;2764:41;;2824:40;2860:2;2849:9;2845:18;2824:40;:::i;:::-;2814:50;;2911:2;2900:9;2896:18;2883:32;2873:42;;2966:2;2955:9;2951:18;2938:32;-1:-1:-1;;;;;2985:6:1;2982:30;2979:2;;;3030:6;3022;3015:22;2979:2;3058:22;;3111:4;3103:13;;3099:27;-1:-1:-1;3089:2:1;;3145:6;3137;3130:22;3089:2;3173:75;3240:7;3235:2;3222:16;3217:2;3213;3209:11;3173:75;:::i;:::-;3163:85;;;2682:572;;;;;;;:::o;3259:268::-;;;3385:2;3373:9;3364:7;3360:23;3356:32;3353:2;;;3406:6;3398;3391:22;3353:2;3434:31;3455:9;3434:31;:::i;:::-;3424:41;;3484:37;3517:2;3506:9;3502:18;3484:37;:::i;3532:266::-;;;3661:2;3649:9;3640:7;3636:23;3632:32;3629:2;;;3682:6;3674;3667:22;3629:2;3710:31;3731:9;3710:31;:::i;:::-;3700:41;3788:2;3773:18;;;;3760:32;;-1:-1:-1;;;3619:179:1:o;3803:961::-;;3918:2;3961;3949:9;3940:7;3936:23;3932:32;3929:2;;;3982:6;3974;3967:22;3929:2;4027:9;4014:23;-1:-1:-1;;;;;4052:6:1;4049:30;4046:2;;;4097:6;4089;4082:22;4046:2;4125:22;;4178:4;4170:13;;4166:27;-1:-1:-1;4156:2:1;;4212:6;4204;4197:22;4156:2;4253;4240:16;4276:65;4291:49;4337:2;4291:49;:::i;4276:65::-;4375:15;;;4406:12;;;;4438:11;;;4476;;;4468:20;;4464:29;;4461:42;-1:-1:-1;4458:2:1;;;4521:6;4513;4506:22;4458:2;4548:6;4539:15;;4563:171;4577:2;4574:1;4571:9;4563:171;;;4634:25;4655:3;4634:25;:::i;:::-;4622:38;;4595:1;4588:9;;;;;4680:12;;;;4712;;4563:171;;;-1:-1:-1;4753:5:1;3898:866;-1:-1:-1;;;;;;;3898:866:1:o;4769:442::-;;;4923:2;4911:9;4902:7;4898:23;4894:32;4891:2;;;4944:6;4936;4929:22;4891:2;4989:9;4976:23;-1:-1:-1;;;;;5014:6:1;5011:30;5008:2;;;5059:6;5051;5044:22;5008:2;5087:67;5146:7;5137:6;5126:9;5122:22;5087:67;:::i;:::-;5077:77;5201:2;5186:18;;;;5173:32;;-1:-1:-1;;;;4881:330:1:o;5216:192::-;;5325:2;5313:9;5304:7;5300:23;5296:32;5293:2;;;5346:6;5338;5331:22;5293:2;5374:28;5392:9;5374:28;:::i;5413:194::-;;5536:2;5524:9;5515:7;5511:23;5507:32;5504:2;;;5557:6;5549;5542:22;5504:2;-1:-1:-1;5585:16:1;;5494:113;-1:-1:-1;5494:113:1:o;5612:257::-;;5723:2;5711:9;5702:7;5698:23;5694:32;5691:2;;;5744:6;5736;5729:22;5691:2;5788:9;5775:23;5807:32;5833:5;5807:32;:::i;5874:261::-;;5996:2;5984:9;5975:7;5971:23;5967:32;5964:2;;;6017:6;6009;6002:22;5964:2;6054:9;6048:16;6073:32;6099:5;6073:32;:::i;6140:577::-;;;6289:2;6277:9;6268:7;6264:23;6260:32;6257:2;;;6310:6;6302;6295:22;6257:2;6355:9;6342:23;-1:-1:-1;;;;;6425:2:1;6417:6;6414:14;6411:2;;;6446:6;6438;6431:22;6411:2;6474:52;6518:7;6509:6;6498:9;6494:22;6474:52;:::i;:::-;6464:62;;6579:2;6568:9;6564:18;6551:32;6535:48;;6608:2;6598:8;6595:16;6592:2;;;6629:6;6621;6614:22;6592:2;;6657:54;6703:7;6692:8;6681:9;6677:24;6657:54;:::i;:::-;6647:64;;;6247:470;;;;;:::o;6722:190::-;;6834:2;6822:9;6813:7;6809:23;6805:32;6802:2;;;6855:6;6847;6840:22;6802:2;-1:-1:-1;6883:23:1;;6792:120;-1:-1:-1;6792:120:1:o;6917:442::-;;;7071:2;7059:9;7050:7;7046:23;7042:32;7039:2;;;7092:6;7084;7077:22;7039:2;7133:9;7120:23;7110:33;;7194:2;7183:9;7179:18;7166:32;-1:-1:-1;;;;;7213:6:1;7210:30;7207:2;;;7258:6;7250;7243:22;7207:2;7286:67;7345:7;7336:6;7325:9;7321:22;7286:67;:::i;7364:258::-;;;7493:2;7481:9;7472:7;7468:23;7464:32;7461:2;;;7514:6;7506;7499:22;7461:2;-1:-1:-1;;7542:23:1;;;7612:2;7597:18;;;7584:32;;-1:-1:-1;7451:171:1:o;7627:259::-;;7708:5;7702:12;7735:6;7730:3;7723:19;7751:63;7807:6;7800:4;7795:3;7791:14;7784:4;7777:5;7773:16;7751:63;:::i;:::-;7868:2;7847:15;-1:-1:-1;;7843:29:1;7834:39;;;;7875:4;7830:50;;7678:208;-1:-1:-1;;7678:208:1:o;7891:982::-;7978:12;;7891:982;;8050:1;8035:17;;8071:1;8107:18;;;;8134:2;;8188:4;8180:6;8176:17;8166:27;;8134:2;8214;8262;8254:6;8251:14;8231:18;8228:38;8225:2;;;-1:-1:-1;;;8289:33:1;;8345:4;8342:1;8335:15;8375:4;8296:3;8363:17;8225:2;8406:18;8433:104;;;;8551:1;8546:321;;;;8399:468;;8433:104;-1:-1:-1;;8466:24:1;;8454:37;;8511:16;;;;-1:-1:-1;8433:104:1;;8546:321;8582:38;8614:5;8582:38;:::i;:::-;8642:1;8656:165;8670:6;8667:1;8664:13;8656:165;;;8748:14;;8735:11;;;8728:35;8791:16;;;;8685:10;;8656:165;;;8660:3;;8850:6;8845:3;8841:16;8834:23;;8399:468;;;;;;;7951:922;;;;:::o;8878:247::-;9035:19;;;9079:2;9070:12;;9063:28;9116:2;9107:12;;9025:100::o;9130:274::-;;9297:6;9291:13;9313:53;9359:6;9354:3;9347:4;9339:6;9335:17;9313:53;:::i;:::-;9382:16;;;;;9267:137;-1:-1:-1;;9267:137:1:o;9409:199::-;;9562:40;9598:3;9590:6;9562:40;:::i;9613:378::-;;9817:40;9853:3;9845:6;9817:40;:::i;:::-;9886:6;9880:13;9902:52;9947:6;9943:2;9936:4;9928:6;9924:17;9902:52;:::i;:::-;9970:15;;9797:194;-1:-1:-1;;;;9797:194:1:o;9996:203::-;-1:-1:-1;;;;;10160:32:1;;;;10142:51;;10130:2;10115:18;;10097:102::o;10204:490::-;-1:-1:-1;;;;;10473:15:1;;;10455:34;;10525:15;;10520:2;10505:18;;10498:43;10572:2;10557:18;;10550:34;;;10620:3;10615:2;10600:18;;10593:31;;;10204:490;;10641:47;;10668:19;;10660:6;10641:47;:::i;:::-;10633:55;10407:287;-1:-1:-1;;;;;;10407:287:1:o;10699:635::-;10870:2;10922:21;;;10992:13;;10895:18;;;11014:22;;;10699:635;;10870:2;11093:15;;;;11067:2;11052:18;;;10699:635;11139:169;11153:6;11150:1;11147:13;11139:169;;;11214:13;;11202:26;;11283:15;;;;11248:12;;;;11175:1;11168:9;11139:169;;;-1:-1:-1;11325:3:1;;10850:484;-1:-1:-1;;;;;;10850:484:1:o;11339:187::-;11504:14;;11497:22;11479:41;;11467:2;11452:18;;11434:92::o;11531:177::-;11677:25;;;11665:2;11650:18;;11632:76::o;11713:221::-;;11862:2;11851:9;11844:21;11882:46;11924:2;11913:9;11909:18;11901:6;11882:46;:::i;11939:398::-;12141:2;12123:21;;;12180:2;12160:18;;;12153:30;12219:34;12214:2;12199:18;;12192:62;-1:-1:-1;;;12285:2:1;12270:18;;12263:32;12327:3;12312:19;;12113:224::o;12342:347::-;12544:2;12526:21;;;12583:2;12563:18;;;12556:30;12622:25;12617:2;12602:18;;12595:53;12680:2;12665:18;;12516:173::o;12694:402::-;12896:2;12878:21;;;12935:2;12915:18;;;12908:30;12974:34;12969:2;12954:18;;12947:62;-1:-1:-1;;;13040:2:1;13025:18;;13018:36;13086:3;13071:19;;12868:228::o;13101:406::-;13303:2;13285:21;;;13342:2;13322:18;;;13315:30;13381:34;13376:2;13361:18;;13354:62;-1:-1:-1;;;13447:2:1;13432:18;;13425:40;13497:3;13482:19;;13275:232::o;13512:347::-;13714:2;13696:21;;;13753:2;13733:18;;;13726:30;13792:25;13787:2;13772:18;;13765:53;13850:2;13835:18;;13686:173::o;13864:399::-;14066:2;14048:21;;;14105:2;14085:18;;;14078:30;14144:34;14139:2;14124:18;;14117:62;-1:-1:-1;;;14210:2:1;14195:18;;14188:33;14253:3;14238:19;;14038:225::o;14268:400::-;14470:2;14452:21;;;14509:2;14489:18;;;14482:30;14548:34;14543:2;14528:18;;14521:62;-1:-1:-1;;;14614:2:1;14599:18;;14592:34;14658:3;14643:19;;14442:226::o;14673:401::-;14875:2;14857:21;;;14914:2;14894:18;;;14887:30;14953:34;14948:2;14933:18;;14926:62;-1:-1:-1;;;15019:2:1;15004:18;;14997:35;15064:3;15049:19;;14847:227::o;15079:342::-;15281:2;15263:21;;;15320:2;15300:18;;;15293:30;-1:-1:-1;;;15354:2:1;15339:18;;15332:48;15412:2;15397:18;;15253:168::o;15426:355::-;15628:2;15610:21;;;15667:2;15647:18;;;15640:30;15706:33;15701:2;15686:18;;15679:61;15772:2;15757:18;;15600:181::o;15786:356::-;15988:2;15970:21;;;16007:18;;;16000:30;16066:34;16061:2;16046:18;;16039:62;16133:2;16118:18;;15960:182::o;16147:339::-;16349:2;16331:21;;;16388:2;16368:18;;;16361:30;-1:-1:-1;;;16422:2:1;16407:18;;16400:45;16477:2;16462:18;;16321:165::o;16491:421::-;16693:2;16675:21;;;16732:2;16712:18;;;16705:30;16771:34;16766:2;16751:18;;16744:62;16842:27;16837:2;16822:18;;16815:55;16902:3;16887:19;;16665:247::o;16917:420::-;17119:2;17101:21;;;17158:2;17138:18;;;17131:30;17197:34;17192:2;17177:18;;17170:62;17268:26;17263:2;17248:18;;17241:54;17327:3;17312:19;;17091:246::o;17342:407::-;17544:2;17526:21;;;17583:2;17563:18;;;17556:30;17622:34;17617:2;17602:18;;17595:62;-1:-1:-1;;;17688:2:1;17673:18;;17666:41;17739:3;17724:19;;17516:233::o;17754:346::-;17956:2;17938:21;;;17995:2;17975:18;;;17968:30;-1:-1:-1;;;18029:2:1;18014:18;;18007:52;18091:2;18076:18;;17928:172::o;18105:402::-;18307:2;18289:21;;;18346:2;18326:18;;;18319:30;18385:34;18380:2;18365:18;;18358:62;-1:-1:-1;;;18451:2:1;18436:18;;18429:36;18497:3;18482:19;;18279:228::o;18512:356::-;18714:2;18696:21;;;18733:18;;;18726:30;18792:34;18787:2;18772:18;;18765:62;18859:2;18844:18;;18686:182::o;18873:411::-;19075:2;19057:21;;;19114:2;19094:18;;;19087:30;19153:34;19148:2;19133:18;;19126:62;-1:-1:-1;;;19219:2:1;19204:18;;19197:45;19274:3;19259:19;;19047:237::o;19289:350::-;19491:2;19473:21;;;19530:2;19510:18;;;19503:30;19569:28;19564:2;19549:18;;19542:56;19630:2;19615:18;;19463:176::o;19644:414::-;19846:2;19828:21;;;19885:2;19865:18;;;19858:30;19924:34;19919:2;19904:18;;19897:62;-1:-1:-1;;;19990:2:1;19975:18;;19968:48;20048:3;20033:19;;19818:240::o;20063:411::-;20265:2;20247:21;;;20304:2;20284:18;;;20277:30;20343:34;20338:2;20323:18;;20316:62;-1:-1:-1;;;20409:2:1;20394:18;;20387:45;20464:3;20449:19;;20237:237::o;20479:398::-;20681:2;20663:21;;;20720:2;20700:18;;;20693:30;20759:34;20754:2;20739:18;;20732:62;-1:-1:-1;;;20825:2:1;20810:18;;20803:32;20867:3;20852:19;;20653:224::o;20882:415::-;21084:2;21066:21;;;21123:2;21103:18;;;21096:30;21162:34;21157:2;21142:18;;21135:62;-1:-1:-1;;;21228:2:1;21213:18;;21206:49;21287:3;21272:19;;21056:241::o;21302:353::-;21504:2;21486:21;;;21543:2;21523:18;;;21516:30;21582:31;21577:2;21562:18;;21555:59;21646:2;21631:18;;21476:179::o;21660:356::-;21862:2;21844:21;;;21881:18;;;21874:30;21940:34;21935:2;21920:18;;21913:62;22007:2;21992:18;;21834:182::o;22021:397::-;22223:2;22205:21;;;22262:2;22242:18;;;22235:30;22301:34;22296:2;22281:18;;22274:62;-1:-1:-1;;;22367:2:1;22352:18;;22345:31;22408:3;22393:19;;22195:223::o;22423:410::-;22625:2;22607:21;;;22664:2;22644:18;;;22637:30;22703:34;22698:2;22683:18;;22676:62;-1:-1:-1;;;22769:2:1;22754:18;;22747:44;22823:3;22808:19;;22597:236::o;22838:347::-;23040:2;23022:21;;;23079:2;23059:18;;;23052:30;23118:25;23113:2;23098:18;;23091:53;23176:2;23161:18;;23012:173::o;23190:398::-;23392:2;23374:21;;;23431:2;23411:18;;;23404:30;23470:34;23465:2;23450:18;;23443:62;-1:-1:-1;;;23536:2:1;23521:18;;23514:32;23578:3;23563:19;;23364:224::o;23593:411::-;23795:2;23777:21;;;23834:2;23814:18;;;23807:30;23873:34;23868:2;23853:18;;23846:62;-1:-1:-1;;;23939:2:1;23924:18;;23917:45;23994:3;23979:19;;23767:237::o;24009:351::-;24211:2;24193:21;;;24250:2;24230:18;;;24223:30;24289:29;24284:2;24269:18;;24262:57;24351:2;24336:18;;24183:177::o;24365:409::-;24567:2;24549:21;;;24606:2;24586:18;;;24579:30;24645:34;24640:2;24625:18;;24618:62;-1:-1:-1;;;24711:2:1;24696:18;;24689:43;24764:3;24749:19;;24539:235::o;24779:398::-;24981:2;24963:21;;;25020:2;25000:18;;;24993:30;25059:34;25054:2;25039:18;;25032:62;-1:-1:-1;;;25125:2:1;25110:18;;25103:32;25167:3;25152:19;;24953:224::o;25182:348::-;25384:2;25366:21;;;25423:2;25403:18;;;25396:30;25462:26;25457:2;25442:18;;25435:54;25521:2;25506:18;;25356:174::o;25535:356::-;25737:2;25719:21;;;25756:18;;;25749:30;25815:34;25810:2;25795:18;;25788:62;25882:2;25867:18;;25709:182::o;26078:251::-;26148:2;26142:9;26178:17;;;-1:-1:-1;;;;;26210:34:1;;26246:22;;;26207:62;26204:2;;;26272:18;;:::i;:::-;26308:2;26301:22;26122:207;;-1:-1:-1;26122:207:1:o;26334:192::-;;-1:-1:-1;;;;;26425:6:1;26422:30;26419:2;;;26455:18;;:::i;:::-;-1:-1:-1;26515:4:1;26496:17;;;26492:28;;26409:117::o;26531:129::-;;26599:17;;;26649:4;26633:21;;;26589:71::o;26665:253::-;;-1:-1:-1;;;;;26794:2:1;26791:1;26787:10;26824:2;26821:1;26817:10;26855:3;26851:2;26847:12;26842:3;26839:21;26836:2;;;26863:18;;:::i;26923:128::-;;26994:1;26990:6;26987:1;26984:13;26981:2;;;27000:18;;:::i;:::-;-1:-1:-1;27036:9:1;;26971:80::o;27056:120::-;;27122:1;27112:2;;27127:18;;:::i;:::-;-1:-1:-1;27161:9:1;;27102:74::o;27181:168::-;;27287:1;27283;27279:6;27275:14;27272:1;27269:21;27264:1;27257:9;27250:17;27246:45;27243:2;;;27294:18;;:::i;:::-;-1:-1:-1;27334:9:1;;27233:116::o;27354:246::-;;-1:-1:-1;;;;;27507:10:1;;;;27477;;27529:12;;;27526:2;;;27544:18;;:::i;:::-;27581:13;;27403:197;-1:-1:-1;;;27403:197:1:o;27605:125::-;;27673:1;27670;27667:8;27664:2;;;27678:18;;:::i;:::-;-1:-1:-1;27715:9:1;;27654:76::o;27735:258::-;27807:1;27817:113;27831:6;27828:1;27825:13;27817:113;;;27907:11;;;27901:18;27888:11;;;27881:39;27853:2;27846:10;27817:113;;;27948:6;27945:1;27942:13;27939:2;;;-1:-1:-1;;27983:1:1;27965:16;;27958:27;27788:205::o;27998:136::-;;28065:5;28055:2;;28074:18;;:::i;:::-;-1:-1:-1;;;28110:18:1;;28045:89::o;28139:380::-;28224:1;28214:12;;28271:1;28261:12;;;28282:2;;28336:4;28328:6;28324:17;28314:27;;28282:2;28389;28381:6;28378:14;28358:18;28355:38;28352:2;;;28435:10;28430:3;28426:20;28423:1;28416:31;28470:4;28467:1;28460:15;28498:4;28495:1;28488:15;28352:2;;28194:325;;;:::o;28524:135::-;;-1:-1:-1;;28584:17:1;;28581:2;;;28604:18;;:::i;:::-;-1:-1:-1;28651:1:1;28640:13;;28571:88::o;28664:112::-;;28722:1;28712:2;;28727:18;;:::i;:::-;-1:-1:-1;28761:9:1;;28702:74::o;28781:127::-;28842:10;28837:3;28833:20;28830:1;28823:31;28873:4;28870:1;28863:15;28897:4;28894:1;28887:15;28913:127;28974:10;28969:3;28965:20;28962:1;28955:31;29005:4;29002:1;28995:15;29029:4;29026:1;29019:15;29045:127;29106:10;29101:3;29097:20;29094:1;29087:31;29137:4;29134:1;29127:15;29161:4;29158:1;29151:15;29177:133;-1:-1:-1;;;;;;29253:32:1;;29243:43;;29233:2;;29300:1;29297;29290:12

Swarm Source

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