ETH Price: $2,283.64 (-2.57%)

Token

Yugtker (Yugtker)
 

Overview

Max Total Supply

1,298 Yugtker

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 Yugtker
0x227993ef59963e69fa1a9e1c26a5fa6bba69a558
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:
Yugtker

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

//Yugtker ERC721A CONTRACT

/**
 *██╗   ██╗██╗   ██╗ ██████╗████████╗██╗  ██╗███████╗██████╗ 
 *╚██╗ ██╔╝██║   ██║██╔════╝╚══██╔══╝██║ ██╔╝██╔════╝██╔══██╗
 * ╚████╔╝ ██║   ██║██║  ███╗  ██║   █████╔╝ █████╗  ██████╔╝
 *  ╚██╔╝  ██║   ██║██║   ██║  ██║   ██╔═██╗ ██╔══╝  ██╔══██╗
 *   ██║   ╚██████╔╝╚██████╔╝  ██║   ██║  ██╗███████╗██║  ██║
 *   ╚═╝    ╚═════╝  ╚═════╝   ╚═╝   ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝
 */
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

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

        uint256 size;
        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);
            }
        }
    }
}
pragma solidity ^0.8.0;

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

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


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}
pragma solidity ^0.8.0;


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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex = 1;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return (_currentIndex - _burnCounter) - 1;    
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

contract Yugtker is Ownable, ERC721A {

    uint256 public adoptionLimit =10;
    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = false;
    string public baseURI = "ipfs://QmdcZcFMwtN3mE5EQS74Ha6J5jQGNX2T5uiC5TYGaHJ868/";
    string public _extension = "";
    uint256 public price = 0 ether;
    uint256 public maxSupply = 11000;

    constructor() ERC721A("Yugtker", "Yugtker"){}
    
    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= adoptionLimit, "Wrong Quantity.");
        require(totalSupply() + _quantity <= maxSupply, "Reaching max supply");
        require(msg.value == price * _quantity, "Needs to send more eth");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimit, "Exceed max minting amount");
        require(publicSaleOpen, "Public Sale Not Started Yet!");

        _safeMint(msg.sender, _quantity);

    }


    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
               require(totalSupply() + _num <= maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));
    }

    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

    function getBaseURI() external view returns(string memory) {
        return baseURI;
    }

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }
    function setAdoptionlimits(uint256 _adoptionLimit) public onlyOwner() {
        adoptionLimit = _adoptionLimit;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        maxSupply = _supply;
    }

    function toggleSale() public onlyOwner() {
        publicSaleOpen = !publicSaleOpen;
    }


    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(owner()).transfer(_balance); //Owner
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptionLimit","type":"uint256"}],"name":"setAdoptionlimits","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60018055600a600955600b805460ff1916905560e060405260366080818152906200226f60a03980516200003c91600c9160209091019062000159565b506040805160208101918290526000908190526200005d91600d9162000159565b506000600e55612af8600f553480156200007657600080fd5b50604051806040016040528060078152602001662cbab3ba35b2b960c91b815250604051806040016040528060078152602001662cbab3ba35b2b960c91b815250620000d1620000cb6200010560201b60201c565b62000109565b8151620000e690600390602085019062000159565b508051620000fc90600490602084019062000159565b5050506200023c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200016790620001ff565b90600052602060002090601f0160209004810192826200018b5760008555620001d6565b82601f10620001a657805160ff1916838001178555620001d6565b82800160010185558215620001d6579182015b82811115620001d6578251825591602001919060010190620001b9565b50620001e4929150620001e8565b5090565b5b80821115620001e45760008155600101620001e9565b600181811c908216806200021457607f821691505b602082108114156200023657634e487b7160e01b600052602260045260246000fd5b50919050565b612023806200024c6000396000f3fe60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb0114610626578063e917a28c1461063c578063e985e9c514610652578063f2fde38b1461069b578063f9e23799146106bb57600080fd5b8063a035b1fe14610590578063a22cb465146105a6578063b88d4fde146105c6578063c87b56dd146105e6578063d1f919ed1461060657600080fd5b80639231ab2a116100f25780639231ab2a146104d25780639264274414610528578063931688cb1461053b57806395d89b411461055b57806397d6696b1461057057600080fd5b80637e6182d91461045457806381a89b59146104745780638da5cb5b1461049457806391b7f5ed146104b257600080fd5b80633ccfd60b116101a657806370a082311161017557806370a08231146103d5578063714c5398146103f5578063715018a61461040a5780637c8255db1461041f5780637d8966e41461043f57600080fd5b80633ccfd60b1461036b57806342842e0e146103805780636352211e146103a05780636c0360eb146103c057600080fd5b806312065fe0116101ed57806312065fe0146102db57806318160ddd146102f8578063228025e81461031657806323b872dd146103365780633ae1dd9d1461035657600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a6102453660046119c3565b6106d5565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610727565b6040516102569190611a3f565b34801561028d57600080fd5b506102a161029c366004611a52565b6107b9565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611a87565b6107fd565b005b3480156102e757600080fd5b50475b604051908152602001610256565b34801561030457600080fd5b506102ea600254600154036000190190565b34801561032257600080fd5b506102d9610331366004611a52565b61088b565b34801561034257600080fd5b506102d9610351366004611ab1565b6108c3565b34801561036257600080fd5b506102746108ce565b34801561037757600080fd5b506102d961095c565b34801561038c57600080fd5b506102d961039b366004611ab1565b6109d5565b3480156103ac57600080fd5b506102a16103bb366004611a52565b6109f0565b3480156103cc57600080fd5b50610274610a02565b3480156103e157600080fd5b506102ea6103f0366004611aed565b610a0f565b34801561040157600080fd5b50610274610a5d565b34801561041657600080fd5b506102d9610a6c565b34801561042b57600080fd5b506102d961043a366004611b4e565b610aa2565b34801561044b57600080fd5b506102d9610b72565b34801561046057600080fd5b506102d961046f366004611c51565b610bb0565b34801561048057600080fd5b506102d961048f366004611a52565b610bed565b3480156104a057600080fd5b506000546001600160a01b03166102a1565b3480156104be57600080fd5b506102d96104cd366004611a52565b610c1c565b3480156104de57600080fd5b506104f26104ed366004611a52565b610c4b565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610256565b6102d9610536366004611a52565b610c71565b34801561054757600080fd5b506102d9610556366004611c51565b610e3d565b34801561056757600080fd5b50610274610e7a565b34801561057c57600080fd5b506102ea61058b366004611aed565b610e89565b34801561059c57600080fd5b506102ea600e5481565b3480156105b257600080fd5b506102d96105c1366004611c99565b610e94565b3480156105d257600080fd5b506102d96105e1366004611cd5565b610f2a565b3480156105f257600080fd5b50610274610601366004611a52565b610f64565b34801561061257600080fd5b506102d9610621366004611a87565b611005565b34801561063257600080fd5b506102ea600f5481565b34801561064857600080fd5b506102ea60095481565b34801561065e57600080fd5b5061024a61066d366004611d50565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106a757600080fd5b506102d96106b6366004611aed565b61109c565b3480156106c757600080fd5b50600b5461024a9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061070657506001600160e01b03198216635b5e139f60e01b145b8061072157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461073690611d83565b80601f016020809104026020016040519081016040528092919081815260200182805461076290611d83565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c482611134565b6107e1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610808826109f0565b9050806001600160a01b0316836001600160a01b0316141561083d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061085d575061085b813361066d565b155b1561087b576040516367d9dca160e11b815260040160405180910390fd5b610886838383611160565b505050565b6000546001600160a01b031633146108be5760405162461bcd60e51b81526004016108b590611dbe565b60405180910390fd5b600f55565b6108868383836111bc565b600d80546108db90611d83565b80601f016020809104026020016040519081016040528092919081815260200182805461090790611d83565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b505050505081565b6000546001600160a01b031633146109865760405162461bcd60e51b81526004016108b590611dbe565b476109996000546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156109d1573d6000803e3d6000fd5b5050565b61088683838360405180602001604052806000815250610f2a565b60006109fb826113d0565b5192915050565b600c80546108db90611d83565b60006001600160a01b038216610a38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600c805461073690611d83565b6000546001600160a01b03163314610a965760405162461bcd60e51b81526004016108b590611dbe565b610aa060006114eb565b565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016108b590611dbe565b600f548151610ae2600254600154036000190190565b610aec9190611e09565b1115610b305760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108b5565b60005b81518110156109d157610b60828281518110610b5157610b51611e21565b6020026020010151600161153b565b80610b6a81611e37565b915050610b33565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b81526004016108b590611dbe565b600b805460ff19811660ff90911615179055565b6000546001600160a01b03163314610bda5760405162461bcd60e51b81526004016108b590611dbe565b80516109d190600d906020840190611914565b6000546001600160a01b03163314610c175760405162461bcd60e51b81526004016108b590611dbe565b600955565b6000546001600160a01b03163314610c465760405162461bcd60e51b81526004016108b590611dbe565b600e55565b6040805160608101825260008082526020820181905291810191909152610721826113d0565b600081118015610c8357506009548111155b610cc15760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016108b5565b600f5481610cd6600254600154036000190190565b610ce09190611e09565b1115610d245760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016108b5565b80600e54610d329190611e52565b3414610d795760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016108b5565b60095481610d8633610e89565b610d909190611e09565b1115610dde5760405162461bcd60e51b815260206004820152601960248201527f457863656564206d6178206d696e74696e6720616d6f756e740000000000000060448201526064016108b5565b600b5460ff16610e305760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016108b5565b610e3a338261153b565b50565b6000546001600160a01b03163314610e675760405162461bcd60e51b81526004016108b590611dbe565b80516109d190600c906020840190611914565b60606004805461073690611d83565b600061072182611555565b6001600160a01b038216331415610ebe5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f358484846111bc565b610f41848484846115aa565b610f5e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f6f82611134565b610fd05760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b5565b600c610fdb836116aa565b600d604051602001610fef93929190611f0b565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461102f5760405162461bcd60e51b81526004016108b590611dbe565b600f5481611044600254600154036000190190565b61104e9190611e09565b11156110925760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108b5565b6109d1828261153b565b6000546001600160a01b031633146110c65760405162461bcd60e51b81526004016108b590611dbe565b6001600160a01b03811661112b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b610e3a816114eb565b600060015482108015610721575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111c7826113d0565b80519091506000906001600160a01b0316336001600160a01b031614806111f5575081516111f5903361066d565b80611210575033611205846107b9565b6001600160a01b0316145b90508061123057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112655760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661128c57604051633a954ecd60e21b815260040160405180910390fd5b61129c6000848460000151611160565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166113865760015481101561138657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915260015482908110156114d257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114d05780516001600160a01b031615611467579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114cb579392505050565b611467565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109d18282604051806020016040528060008152506117a7565b60006001600160a01b03821661157e576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b1561169e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ee903390899088908890600401611f3e565b6020604051808303816000875af1925050508015611629575060408051601f3d908101601f1916820190925261162691810190611f7b565b60015b611684573d808015611657576040519150601f19603f3d011682016040523d82523d6000602084013e61165c565b606091505b50805161167c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a2565b5060015b949350505050565b6060816116ce5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f857806116e281611e37565b91506116f19050600a83611fae565b91506116d2565b6000816001600160401b0381111561171257611712611b08565b6040519080825280601f01601f19166020018201604052801561173c576020820181803683370190505b5090505b84156116a257611751600183611fc2565b915061175e600a86611fd9565b611769906030611e09565b60f81b81838151811061177e5761177e611e21565b60200101906001600160f81b031916908160001a9053506117a0600a86611fae565b9450611740565b610886838383600180546001600160a01b0385166117d757604051622e076360e81b815260040160405180910390fd5b836117f55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561190b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156118e157506118df60008884886115aa565b155b156118ff576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161188a565b506001556113c9565b82805461192090611d83565b90600052602060002090601f0160209004810192826119425760008555611988565b82601f1061195b57805160ff1916838001178555611988565b82800160010185558215611988579182015b8281111561198857825182559160200191906001019061196d565b50611994929150611998565b5090565b5b808211156119945760008155600101611999565b6001600160e01b031981168114610e3a57600080fd5b6000602082840312156119d557600080fd5b81356119e0816119ad565b9392505050565b60005b83811015611a025781810151838201526020016119ea565b83811115610f5e5750506000910152565b60008151808452611a2b8160208601602086016119e7565b601f01601f19169290920160200192915050565b6020815260006119e06020830184611a13565b600060208284031215611a6457600080fd5b5035919050565b80356001600160a01b0381168114611a8257600080fd5b919050565b60008060408385031215611a9a57600080fd5b611aa383611a6b565b946020939093013593505050565b600080600060608486031215611ac657600080fd5b611acf84611a6b565b9250611add60208501611a6b565b9150604084013590509250925092565b600060208284031215611aff57600080fd5b6119e082611a6b565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611b4657611b46611b08565b604052919050565b60006020808385031215611b6157600080fd5b82356001600160401b0380821115611b7857600080fd5b818501915085601f830112611b8c57600080fd5b813581811115611b9e57611b9e611b08565b8060051b9150611baf848301611b1e565b8181529183018401918481019088841115611bc957600080fd5b938501935b83851015611bee57611bdf85611a6b565b82529385019390850190611bce565b98975050505050505050565b60006001600160401b03831115611c1357611c13611b08565b611c26601f8401601f1916602001611b1e565b9050828152838383011115611c3a57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c6357600080fd5b81356001600160401b03811115611c7957600080fd5b8201601f81018413611c8a57600080fd5b6116a284823560208401611bfa565b60008060408385031215611cac57600080fd5b611cb583611a6b565b915060208301358015158114611cca57600080fd5b809150509250929050565b60008060008060808587031215611ceb57600080fd5b611cf485611a6b565b9350611d0260208601611a6b565b92506040850135915060608501356001600160401b03811115611d2457600080fd5b8501601f81018713611d3557600080fd5b611d4487823560208401611bfa565b91505092959194509250565b60008060408385031215611d6357600080fd5b611d6c83611a6b565b9150611d7a60208401611a6b565b90509250929050565b600181811c90821680611d9757607f821691505b60208210811415611db857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e1c57611e1c611df3565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611e4b57611e4b611df3565b5060010190565b6000816000190483118215151615611e6c57611e6c611df3565b500290565b8054600090600181811c9080831680611e8b57607f831692505b6020808410821415611ead57634e487b7160e01b600052602260045260246000fd5b818015611ec15760018114611ed257611eff565b60ff19861689528489019650611eff565b60008881526020902060005b86811015611ef75781548b820152908501908301611ede565b505084890196505b50505050505092915050565b6000611f178286611e71565b8451611f278183602089016119e7565b611f3381830186611e71565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7190830184611a13565b9695505050505050565b600060208284031215611f8d57600080fd5b81516119e0816119ad565b634e487b7160e01b600052601260045260246000fd5b600082611fbd57611fbd611f98565b500490565b600082821015611fd457611fd4611df3565b500390565b600082611fe857611fe8611f98565b50069056fea2646970667358221220ba36057a9533bdcb8389bf8c52ef2ad590e4a47aab9b1d58de2c969521a653ac64736f6c634300080a0033697066733a2f2f516d64635a63464d77744e336d453545515337344861364a356a51474e583254357569433554594761484a3836382f

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb0114610626578063e917a28c1461063c578063e985e9c514610652578063f2fde38b1461069b578063f9e23799146106bb57600080fd5b8063a035b1fe14610590578063a22cb465146105a6578063b88d4fde146105c6578063c87b56dd146105e6578063d1f919ed1461060657600080fd5b80639231ab2a116100f25780639231ab2a146104d25780639264274414610528578063931688cb1461053b57806395d89b411461055b57806397d6696b1461057057600080fd5b80637e6182d91461045457806381a89b59146104745780638da5cb5b1461049457806391b7f5ed146104b257600080fd5b80633ccfd60b116101a657806370a082311161017557806370a08231146103d5578063714c5398146103f5578063715018a61461040a5780637c8255db1461041f5780637d8966e41461043f57600080fd5b80633ccfd60b1461036b57806342842e0e146103805780636352211e146103a05780636c0360eb146103c057600080fd5b806312065fe0116101ed57806312065fe0146102db57806318160ddd146102f8578063228025e81461031657806323b872dd146103365780633ae1dd9d1461035657600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a6102453660046119c3565b6106d5565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610727565b6040516102569190611a3f565b34801561028d57600080fd5b506102a161029c366004611a52565b6107b9565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611a87565b6107fd565b005b3480156102e757600080fd5b50475b604051908152602001610256565b34801561030457600080fd5b506102ea600254600154036000190190565b34801561032257600080fd5b506102d9610331366004611a52565b61088b565b34801561034257600080fd5b506102d9610351366004611ab1565b6108c3565b34801561036257600080fd5b506102746108ce565b34801561037757600080fd5b506102d961095c565b34801561038c57600080fd5b506102d961039b366004611ab1565b6109d5565b3480156103ac57600080fd5b506102a16103bb366004611a52565b6109f0565b3480156103cc57600080fd5b50610274610a02565b3480156103e157600080fd5b506102ea6103f0366004611aed565b610a0f565b34801561040157600080fd5b50610274610a5d565b34801561041657600080fd5b506102d9610a6c565b34801561042b57600080fd5b506102d961043a366004611b4e565b610aa2565b34801561044b57600080fd5b506102d9610b72565b34801561046057600080fd5b506102d961046f366004611c51565b610bb0565b34801561048057600080fd5b506102d961048f366004611a52565b610bed565b3480156104a057600080fd5b506000546001600160a01b03166102a1565b3480156104be57600080fd5b506102d96104cd366004611a52565b610c1c565b3480156104de57600080fd5b506104f26104ed366004611a52565b610c4b565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610256565b6102d9610536366004611a52565b610c71565b34801561054757600080fd5b506102d9610556366004611c51565b610e3d565b34801561056757600080fd5b50610274610e7a565b34801561057c57600080fd5b506102ea61058b366004611aed565b610e89565b34801561059c57600080fd5b506102ea600e5481565b3480156105b257600080fd5b506102d96105c1366004611c99565b610e94565b3480156105d257600080fd5b506102d96105e1366004611cd5565b610f2a565b3480156105f257600080fd5b50610274610601366004611a52565b610f64565b34801561061257600080fd5b506102d9610621366004611a87565b611005565b34801561063257600080fd5b506102ea600f5481565b34801561064857600080fd5b506102ea60095481565b34801561065e57600080fd5b5061024a61066d366004611d50565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106a757600080fd5b506102d96106b6366004611aed565b61109c565b3480156106c757600080fd5b50600b5461024a9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061070657506001600160e01b03198216635b5e139f60e01b145b8061072157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461073690611d83565b80601f016020809104026020016040519081016040528092919081815260200182805461076290611d83565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c482611134565b6107e1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610808826109f0565b9050806001600160a01b0316836001600160a01b0316141561083d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061085d575061085b813361066d565b155b1561087b576040516367d9dca160e11b815260040160405180910390fd5b610886838383611160565b505050565b6000546001600160a01b031633146108be5760405162461bcd60e51b81526004016108b590611dbe565b60405180910390fd5b600f55565b6108868383836111bc565b600d80546108db90611d83565b80601f016020809104026020016040519081016040528092919081815260200182805461090790611d83565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b505050505081565b6000546001600160a01b031633146109865760405162461bcd60e51b81526004016108b590611dbe565b476109996000546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156109d1573d6000803e3d6000fd5b5050565b61088683838360405180602001604052806000815250610f2a565b60006109fb826113d0565b5192915050565b600c80546108db90611d83565b60006001600160a01b038216610a38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600c805461073690611d83565b6000546001600160a01b03163314610a965760405162461bcd60e51b81526004016108b590611dbe565b610aa060006114eb565b565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016108b590611dbe565b600f548151610ae2600254600154036000190190565b610aec9190611e09565b1115610b305760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108b5565b60005b81518110156109d157610b60828281518110610b5157610b51611e21565b6020026020010151600161153b565b80610b6a81611e37565b915050610b33565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b81526004016108b590611dbe565b600b805460ff19811660ff90911615179055565b6000546001600160a01b03163314610bda5760405162461bcd60e51b81526004016108b590611dbe565b80516109d190600d906020840190611914565b6000546001600160a01b03163314610c175760405162461bcd60e51b81526004016108b590611dbe565b600955565b6000546001600160a01b03163314610c465760405162461bcd60e51b81526004016108b590611dbe565b600e55565b6040805160608101825260008082526020820181905291810191909152610721826113d0565b600081118015610c8357506009548111155b610cc15760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016108b5565b600f5481610cd6600254600154036000190190565b610ce09190611e09565b1115610d245760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016108b5565b80600e54610d329190611e52565b3414610d795760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016108b5565b60095481610d8633610e89565b610d909190611e09565b1115610dde5760405162461bcd60e51b815260206004820152601960248201527f457863656564206d6178206d696e74696e6720616d6f756e740000000000000060448201526064016108b5565b600b5460ff16610e305760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016108b5565b610e3a338261153b565b50565b6000546001600160a01b03163314610e675760405162461bcd60e51b81526004016108b590611dbe565b80516109d190600c906020840190611914565b60606004805461073690611d83565b600061072182611555565b6001600160a01b038216331415610ebe5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f358484846111bc565b610f41848484846115aa565b610f5e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f6f82611134565b610fd05760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b5565b600c610fdb836116aa565b600d604051602001610fef93929190611f0b565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461102f5760405162461bcd60e51b81526004016108b590611dbe565b600f5481611044600254600154036000190190565b61104e9190611e09565b11156110925760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108b5565b6109d1828261153b565b6000546001600160a01b031633146110c65760405162461bcd60e51b81526004016108b590611dbe565b6001600160a01b03811661112b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b610e3a816114eb565b600060015482108015610721575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111c7826113d0565b80519091506000906001600160a01b0316336001600160a01b031614806111f5575081516111f5903361066d565b80611210575033611205846107b9565b6001600160a01b0316145b90508061123057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112655760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661128c57604051633a954ecd60e21b815260040160405180910390fd5b61129c6000848460000151611160565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166113865760015481101561138657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915260015482908110156114d257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114d05780516001600160a01b031615611467579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114cb579392505050565b611467565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109d18282604051806020016040528060008152506117a7565b60006001600160a01b03821661157e576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b1561169e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ee903390899088908890600401611f3e565b6020604051808303816000875af1925050508015611629575060408051601f3d908101601f1916820190925261162691810190611f7b565b60015b611684573d808015611657576040519150601f19603f3d011682016040523d82523d6000602084013e61165c565b606091505b50805161167c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a2565b5060015b949350505050565b6060816116ce5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f857806116e281611e37565b91506116f19050600a83611fae565b91506116d2565b6000816001600160401b0381111561171257611712611b08565b6040519080825280601f01601f19166020018201604052801561173c576020820181803683370190505b5090505b84156116a257611751600183611fc2565b915061175e600a86611fd9565b611769906030611e09565b60f81b81838151811061177e5761177e611e21565b60200101906001600160f81b031916908160001a9053506117a0600a86611fae565b9450611740565b610886838383600180546001600160a01b0385166117d757604051622e076360e81b815260040160405180910390fd5b836117f55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561190b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156118e157506118df60008884886115aa565b155b156118ff576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161188a565b506001556113c9565b82805461192090611d83565b90600052602060002090601f0160209004810192826119425760008555611988565b82601f1061195b57805160ff1916838001178555611988565b82800160010185558215611988579182015b8281111561198857825182559160200191906001019061196d565b50611994929150611998565b5090565b5b808211156119945760008155600101611999565b6001600160e01b031981168114610e3a57600080fd5b6000602082840312156119d557600080fd5b81356119e0816119ad565b9392505050565b60005b83811015611a025781810151838201526020016119ea565b83811115610f5e5750506000910152565b60008151808452611a2b8160208601602086016119e7565b601f01601f19169290920160200192915050565b6020815260006119e06020830184611a13565b600060208284031215611a6457600080fd5b5035919050565b80356001600160a01b0381168114611a8257600080fd5b919050565b60008060408385031215611a9a57600080fd5b611aa383611a6b565b946020939093013593505050565b600080600060608486031215611ac657600080fd5b611acf84611a6b565b9250611add60208501611a6b565b9150604084013590509250925092565b600060208284031215611aff57600080fd5b6119e082611a6b565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611b4657611b46611b08565b604052919050565b60006020808385031215611b6157600080fd5b82356001600160401b0380821115611b7857600080fd5b818501915085601f830112611b8c57600080fd5b813581811115611b9e57611b9e611b08565b8060051b9150611baf848301611b1e565b8181529183018401918481019088841115611bc957600080fd5b938501935b83851015611bee57611bdf85611a6b565b82529385019390850190611bce565b98975050505050505050565b60006001600160401b03831115611c1357611c13611b08565b611c26601f8401601f1916602001611b1e565b9050828152838383011115611c3a57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c6357600080fd5b81356001600160401b03811115611c7957600080fd5b8201601f81018413611c8a57600080fd5b6116a284823560208401611bfa565b60008060408385031215611cac57600080fd5b611cb583611a6b565b915060208301358015158114611cca57600080fd5b809150509250929050565b60008060008060808587031215611ceb57600080fd5b611cf485611a6b565b9350611d0260208601611a6b565b92506040850135915060608501356001600160401b03811115611d2457600080fd5b8501601f81018713611d3557600080fd5b611d4487823560208401611bfa565b91505092959194509250565b60008060408385031215611d6357600080fd5b611d6c83611a6b565b9150611d7a60208401611a6b565b90509250929050565b600181811c90821680611d9757607f821691505b60208210811415611db857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e1c57611e1c611df3565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611e4b57611e4b611df3565b5060010190565b6000816000190483118215151615611e6c57611e6c611df3565b500290565b8054600090600181811c9080831680611e8b57607f831692505b6020808410821415611ead57634e487b7160e01b600052602260045260246000fd5b818015611ec15760018114611ed257611eff565b60ff19861689528489019650611eff565b60008881526020902060005b86811015611ef75781548b820152908501908301611ede565b505084890196505b50505050505092915050565b6000611f178286611e71565b8451611f278183602089016119e7565b611f3381830186611e71565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7190830184611a13565b9695505050505050565b600060208284031215611f8d57600080fd5b81516119e0816119ad565b634e487b7160e01b600052601260045260246000fd5b600082611fbd57611fbd611f98565b500490565b600082821015611fd457611fd4611df3565b500390565b600082611fe857611fe8611f98565b50069056fea2646970667358221220ba36057a9533bdcb8389bf8c52ef2ad590e4a47aab9b1d58de2c969521a653ac64736f6c634300080a0033

Deployed Bytecode Sourcemap

55441:3093:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25805:305;;;;;;;;;;-1:-1:-1;25805:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25805:305:0;;;;;;;;29165:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30668:204::-;;;;;;;;;;-1:-1:-1;30668:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30668:204:0;1528:203:1;30231:371:0;;;;;;;;;;-1:-1:-1;30231:371:0;;;;;:::i;:::-;;:::i;:::-;;57968:95;;;;;;;;;;-1:-1:-1;58034:21:0;57968:95;;;2319:25:1;;;2307:2;2292:18;57968:95:0;2173:177:1;25456:277:0;;;;;;;;;;;;25693:12;;25709:1;25677:13;:28;-1:-1:-1;;25676:34:0;;25456:277;57762:96;;;;;;;;;;-1:-1:-1;57762:96:0;;;;;:::i;:::-;;:::i;31525:170::-;;;;;;;;;;-1:-1:-1;31525:170:0;;;;;:::i;:::-;;:::i;55740:29::-;;;;;;;;;;;;;:::i;58188:149::-;;;;;;;;;;;;;:::i;31766:185::-;;;;;;;;;;-1:-1:-1;31766:185:0;;;;;:::i;:::-;;:::i;28974:124::-;;;;;;;;;;-1:-1:-1;28974:124:0;;;;;:::i;:::-;;:::i;55653:80::-;;;;;;;;;;;;;:::i;26174:206::-;;;;;;;;;;-1:-1:-1;26174:206:0;;;;;:::i;:::-;;:::i;57443:92::-;;;;;;;;;;;;;:::i;14571:94::-;;;;;;;;;;;;;:::i;56436:252::-;;;;;;;;;;-1:-1:-1;56436:252:0;;;;;:::i;:::-;;:::i;57866:92::-;;;;;;;;;;;;;:::i;57335:100::-;;;;;;;;;;-1:-1:-1;57335:100:0;;;;;:::i;:::-;;:::i;57635:119::-;;;;;;;;;;-1:-1:-1;57635:119:0;;;;;:::i;:::-;;:::i;13920:87::-;;;;;;;;;;-1:-1:-1;13966:7:0;13993:6;-1:-1:-1;;;;;13993:6:0;13920:87;;57543:86;;;;;;;;;;-1:-1:-1;57543:86:0;;;;;:::i;:::-;;:::i;58345:147::-;;;;;;;;;;-1:-1:-1;58345:147:0;;;;;:::i;:::-;;:::i;:::-;;;;5346:13:1;;-1:-1:-1;;;;;5342:39:1;5324:58;;5442:4;5430:17;;;5424:24;-1:-1:-1;;;;;5420:49:1;5398:20;;;5391:79;5528:17;;;5522:24;5515:32;5508:40;5486:20;;;5479:70;5312:2;5297:18;58345:147:0;5116:439:1;55911:515:0;;;;;;:::i;:::-;;:::i;57222:107::-;;;;;;;;;;-1:-1:-1;57222:107:0;;;;;:::i;:::-;;:::i;29334:104::-;;;;;;;;;;;;;:::i;58071:109::-;;;;;;;;;;-1:-1:-1;58071:109:0;;;;;:::i;:::-;;:::i;55776:30::-;;;;;;;;;;;;;;;;30944:279;;;;;;;;;;-1:-1:-1;30944:279:0;;;;;:::i;:::-;;:::i;32022:342::-;;;;;;;;;;-1:-1:-1;32022:342:0;;;;;:::i;:::-;;:::i;56909:305::-;;;;;;;;;;-1:-1:-1;56909:305:0;;;;;:::i;:::-;;:::i;56693:206::-;;;;;;;;;;-1:-1:-1;56693:206:0;;;;;:::i;:::-;;:::i;55813:32::-;;;;;;;;;;;;;;;;55487;;;;;;;;;;;;;;;;31294:164;;;;;;;;;;-1:-1:-1;31294:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31415:25:0;;;31391:4;31415:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31294:164;14820:192;;;;;;;;;;-1:-1:-1;14820:192:0;;;;;:::i;:::-;;:::i;55612:34::-;;;;;;;;;;-1:-1:-1;55612:34:0;;;;;;;;25805:305;25907:4;-1:-1:-1;;;;;;25944:40:0;;-1:-1:-1;;;25944:40:0;;:105;;-1:-1:-1;;;;;;;26001:48:0;;-1:-1:-1;;;26001:48:0;25944:105;:158;;;-1:-1:-1;;;;;;;;;;16034:40:0;;;26066:36;25924:178;25805:305;-1:-1:-1;;25805:305:0:o;29165:100::-;29219:13;29252:5;29245:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29165:100;:::o;30668:204::-;30736:7;30761:16;30769:7;30761;:16::i;:::-;30756:64;;30786:34;;-1:-1:-1;;;30786:34:0;;;;;;;;;;;30756:64;-1:-1:-1;30840:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30840:24:0;;30668:204::o;30231:371::-;30304:13;30320:24;30336:7;30320:15;:24::i;:::-;30304:40;;30365:5;-1:-1:-1;;;;;30359:11:0;:2;-1:-1:-1;;;;;30359:11:0;;30355:48;;;30379:24;;-1:-1:-1;;;30379:24:0;;;;;;;;;;;30355:48;1140:10;-1:-1:-1;;;;;30420:21:0;;;;;;:63;;-1:-1:-1;30446:37:0;30463:5;1140:10;31294:164;:::i;30446:37::-;30445:38;30420:63;30416:138;;;30507:35;;-1:-1:-1;;;30507:35:0;;;;;;;;;;;30416:138;30566:28;30575:2;30579:7;30588:5;30566:8;:28::i;:::-;30293:309;30231:371;;:::o;57762:96::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;;;;;;;;;57831:9:::1;:19:::0;57762:96::o;31525:170::-;31659:28;31669:4;31675:2;31679:7;31659:9;:28::i;55740:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58188:149::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;58254:21:::1;58294:7;13966::::0;13993:6;-1:-1:-1;;;;;13993:6:0;;13920:87;58294:7:::1;-1:-1:-1::0;;;;;58286:25:0::1;:35;58312:8;58286:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58227:110;58188:149::o:0;31766:185::-;31904:39;31921:4;31927:2;31931:7;31904:39;;;;;;;;;;;;:16;:39::i;28974:124::-;29038:7;29065:20;29077:7;29065:11;:20::i;:::-;:25;;28974:124;-1:-1:-1;;28974:124:0:o;55653:80::-;;;;;;;:::i;26174:206::-;26238:7;-1:-1:-1;;;;;26262:19:0;;26258:60;;26290:28;;-1:-1:-1;;;26290:28:0;;;;;;;;;;;26258:60;-1:-1:-1;;;;;;26344:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26344:27:0;;26174:206::o;57443:92::-;57487:13;57520:7;57513:14;;;;;:::i;14571:94::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;14636:21:::1;14654:1;14636:9;:21::i;:::-;14571:94::o:0;56436:252::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;56554:9:::1;;56535:8;:15;56519:13;25693:12:::0;;25709:1;25677:13;:28;-1:-1:-1;;25676:34:0;;25456:277;56519:13:::1;:31;;;;:::i;:::-;:44;;56511:76;;;::::0;-1:-1:-1;;;56511:76:0;;8062:2:1;56511:76:0::1;::::0;::::1;8044:21:1::0;8101:2;8081:18;;;8074:30;-1:-1:-1;;;8120:18:1;;;8113:49;8179:18;;56511:76:0::1;7860:343:1::0;56511:76:0::1;56602:6;56598:80;56618:8;:15;56614:1;:19;56598:80;;;56653:25;56663:8;56672:1;56663:11;;;;;;;;:::i;:::-;;;;;;;56676:1;56653:9;:25::i;:::-;56635:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56598:80;;57866:92:::0;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;57936:14:::1;::::0;;-1:-1:-1;;57918:32:0;::::1;57936:14;::::0;;::::1;57935:15;57918:32;::::0;;57866:92::o;57335:100::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;57409:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;57635:119::-:0;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;57716:13:::1;:30:::0;57635:119::o;57543:86::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;57607:5:::1;:14:::0;57543:86::o;58345:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;58466:20:0;58478:7;58466:11;:20::i;55911:515::-;55993:1;55981:9;:13;:43;;;;;56011:13;;55998:9;:26;;55981:43;55973:71;;;;-1:-1:-1;;;55973:71:0;;8682:2:1;55973:71:0;;;8664:21:1;8721:2;8701:18;;;8694:30;-1:-1:-1;;;8740:18:1;;;8733:45;8795:18;;55973:71:0;8480:339:1;55973:71:0;56092:9;;56079;56063:13;25693:12;;25709:1;25677:13;:28;-1:-1:-1;;25676:34:0;;25456:277;56063:13;:25;;;;:::i;:::-;:38;;56055:70;;;;-1:-1:-1;;;56055:70:0;;9026:2:1;56055:70:0;;;9008:21:1;9065:2;9045:18;;;9038:30;-1:-1:-1;;;9084:18:1;;;9077:49;9143:18;;56055:70:0;8824:343:1;56055:70:0;56165:9;56157:5;;:17;;;;:::i;:::-;56144:9;:30;56136:65;;;;-1:-1:-1;;;56136:65:0;;9547:2:1;56136:65:0;;;9529:21:1;9586:2;9566:18;;;9559:30;-1:-1:-1;;;9605:18:1;;;9598:52;9667:18;;56136:65:0;9345:346:1;56136:65:0;56262:13;;56249:9;56220:26;56235:10;56220:14;:26::i;:::-;:38;;;;:::i;:::-;:55;;56212:93;;;;-1:-1:-1;;;56212:93:0;;9898:2:1;56212:93:0;;;9880:21:1;9937:2;9917:18;;;9910:30;9976:27;9956:18;;;9949:55;10021:18;;56212:93:0;9696:349:1;56212:93:0;56324:14;;;;56316:55;;;;-1:-1:-1;;;56316:55:0;;10252:2:1;56316:55:0;;;10234:21:1;10291:2;10271:18;;;10264:30;10330;10310:18;;;10303:58;10378:18;;56316:55:0;10050:352:1;56316:55:0;56384:32;56394:10;56406:9;56384;:32::i;:::-;55911:515;:::o;57222:107::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;57300:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;29334:104::-:0;29390:13;29423:7;29416:14;;;;;:::i;58071:109::-;58131:7;58154:20;58168:5;58154:13;:20::i;30944:279::-;-1:-1:-1;;;;;31035:24:0;;1140:10;31035:24;31031:54;;;31068:17;;-1:-1:-1;;;31068:17:0;;;;;;;;;;;31031:54;1140:10;31098:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31098:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31098:53:0;;;;;;;;;;31167:48;;540:41:1;;;31098:42:0;;1140:10;31167:48;;513:18:1;31167:48:0;;;;;;;30944:279;;:::o;32022:342::-;32189:28;32199:4;32205:2;32209:7;32189:9;:28::i;:::-;32233:48;32256:4;32262:2;32266:7;32275:5;32233:22;:48::i;:::-;32228:129;;32305:40;;-1:-1:-1;;;32305:40:0;;;;;;;;;;;32228:129;32022:342;;;;:::o;56909:305::-;56983:13;57031:17;57039:8;57031:7;:17::i;:::-;57009:111;;;;-1:-1:-1;;;57009:111:0;;10609:2:1;57009:111:0;;;10591:21:1;10648:2;10628:18;;;10621:30;10687:34;10667:18;;;10660:62;-1:-1:-1;;;10738:18:1;;;10731:42;10790:19;;57009:111:0;10407:408:1;57009:111:0;57164:7;57173:19;:8;:17;:19::i;:::-;57194:10;57147:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57133:73;;56909:305;;;:::o;56693:206::-;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;56819:9:::1;;56811:4;56795:13;25693:12:::0;;25709:1;25677:13;:28;-1:-1:-1;;25676:34:0;;25456:277;56795:13:::1;:20;;;;:::i;:::-;:33;;56787:65;;;::::0;-1:-1:-1;;;56787:65:0;;8062:2:1;56787:65:0::1;::::0;::::1;8044:21:1::0;8101:2;8081:18;;;8074:30;-1:-1:-1;;;8120:18:1;;;8113:49;8179:18;;56787:65:0::1;7860:343:1::0;56787:65:0::1;56867:24;56877:7;56886:4;56867:9;:24::i;14820:192::-:0;13966:7;13993:6;-1:-1:-1;;;;;13993:6:0;1140:10;14140:23;14132:68;;;;-1:-1:-1;;;14132:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14909:22:0;::::1;14901:73;;;::::0;-1:-1:-1;;;14901:73:0;;12587:2:1;14901:73:0::1;::::0;::::1;12569:21:1::0;12626:2;12606:18;;;12599:30;12665:34;12645:18;;;12638:62;-1:-1:-1;;;12716:18:1;;;12709:36;12762:19;;14901:73:0::1;12385:402:1::0;14901:73:0::1;14985:19;14995:8;14985:9;:19::i;32619:144::-:0;32676:4;32710:13;;32700:7;:23;:55;;;;-1:-1:-1;;32728:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32728:27:0;;;;32727:28;;32619:144::o;39825:196::-;39940:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39940:29:0;-1:-1:-1;;;;;39940:29:0;;;;;;;;;39985:28;;39940:24;;39985:28;;;;;;;39825:196;;;:::o;35326:2112::-;35441:35;35479:20;35491:7;35479:11;:20::i;:::-;35554:18;;35441:58;;-1:-1:-1;35512:22:0;;-1:-1:-1;;;;;35538:34:0;1140:10;-1:-1:-1;;;;;35538:34:0;;:101;;;-1:-1:-1;35606:18:0;;35589:50;;1140:10;31294:164;:::i;35589:50::-;35538:154;;;-1:-1:-1;1140:10:0;35656:20;35668:7;35656:11;:20::i;:::-;-1:-1:-1;;;;;35656:36:0;;35538:154;35512:181;;35711:17;35706:66;;35737:35;;-1:-1:-1;;;35737:35:0;;;;;;;;;;;35706:66;35809:4;-1:-1:-1;;;;;35787:26:0;:13;:18;;;-1:-1:-1;;;;;35787:26:0;;35783:67;;35822:28;;-1:-1:-1;;;35822:28:0;;;;;;;;;;;35783:67;-1:-1:-1;;;;;35865:16:0;;35861:52;;35890:23;;-1:-1:-1;;;35890:23:0;;;;;;;;;;;35861:52;36034:49;36051:1;36055:7;36064:13;:18;;;36034:8;:49::i;:::-;-1:-1:-1;;;;;36379:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36379:31:0;;;-1:-1:-1;;;;;36379:31:0;;;-1:-1:-1;;36379:31:0;;;;;;;36425:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36425:29:0;;;;;;;;;;;36471:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36516:61:0;;;;-1:-1:-1;;;36561:15:0;36516:61;;;;;;;;;;;36851:11;;;36881:24;;;;;:29;36851:11;;36881:29;36877:445;;37106:13;;37092:11;:27;37088:219;;;37176:18;;;37144:24;;;:11;:24;;;;;;;;:50;;37259:28;;;;-1:-1:-1;;;;;37217:70:0;-1:-1:-1;;;37217:70:0;-1:-1:-1;;;;;;37217:70:0;;;-1:-1:-1;;;;;37144:50:0;;;37217:70;;;;;;;37088:219;36354:979;37369:7;37365:2;-1:-1:-1;;;;;37350:27:0;37359:4;-1:-1:-1;;;;;37350:27:0;;;;;;;;;;;37388:42;35430:2008;;35326:2112;;;:::o;27829:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27995:13:0;;27939:7;;27988:20;;27984:861;;;28029:31;28063:17;;;:11;:17;;;;;;;;;28029:51;;;;;;;;;-1:-1:-1;;;;;28029:51:0;;;;-1:-1:-1;;;28029:51:0;;-1:-1:-1;;;;;28029:51:0;;;;;;;;-1:-1:-1;;;28029:51:0;;;;;;;;;;;;;;28099:731;;28149:14;;-1:-1:-1;;;;;28149:28:0;;28145:101;;28213:9;27829:1083;-1:-1:-1;;;27829:1083:0:o;28145:101::-;-1:-1:-1;;;28590:6:0;28635:17;;;;:11;:17;;;;;;;;;28623:29;;;;;;;;;-1:-1:-1;;;;;28623:29:0;;;;;-1:-1:-1;;;28623:29:0;;-1:-1:-1;;;;;28623:29:0;;;;;;;;-1:-1:-1;;;28623:29:0;;;;;;;;;;;;;28683:28;28679:109;;28751:9;27829:1083;-1:-1:-1;;;27829:1083:0:o;28679:109::-;28550:261;;;28010:835;27984:861;28873:31;;-1:-1:-1;;;28873:31:0;;;;;;;;;;;15020:173;15076:16;15095:6;;-1:-1:-1;;;;;15112:17:0;;;-1:-1:-1;;;;;;15112:17:0;;;;;;15145:40;;15095:6;;;;;;;15145:40;;15076:16;15145:40;15065:128;15020:173;:::o;32771:104::-;32840:27;32850:2;32854:8;32840:27;;;;;;;;;;;;:9;:27::i;26462:207::-;26523:7;-1:-1:-1;;;;;26547:19:0;;26543:59;;26575:27;;-1:-1:-1;;;26575:27:0;;;;;;;;;;;26543:59;-1:-1:-1;;;;;;26628:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;26628:32:0;;-1:-1:-1;;;;;26628:32:0;;26462:207::o;40586:790::-;40741:4;-1:-1:-1;;;;;40762:13:0;;4313:20;4361:8;40758:611;;40798:72;;-1:-1:-1;;;40798:72:0;;-1:-1:-1;;;;;40798:36:0;;;;;:72;;1140:10;;40849:4;;40855:7;;40864:5;;40798:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40798:72:0;;;;;;;;-1:-1:-1;;40798:72:0;;;;;;;;;;;;:::i;:::-;;;40794:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41044:13:0;;41040:259;;41094:40;;-1:-1:-1;;;41094:40:0;;;;;;;;;;;41040:259;41249:6;41243:13;41234:6;41230:2;41226:15;41219:38;40794:520;-1:-1:-1;;;;;;40921:55:0;-1:-1:-1;;;40921:55:0;;-1:-1:-1;40914:62:0;;40758:611;-1:-1:-1;41353:4:0;40758:611;40586:790;;;;;;:::o;1525:723::-;1581:13;1802:10;1798:53;;-1:-1:-1;;1829:10:0;;;;;;;;;;;;-1:-1:-1;;;1829:10:0;;;;;1525:723::o;1798:53::-;1876:5;1861:12;1917:78;1924:9;;1917:78;;1950:8;;;;:::i;:::-;;-1:-1:-1;1973:10:0;;-1:-1:-1;1981:2:0;1973:10;;:::i;:::-;;;1917:78;;;2005:19;2037:6;-1:-1:-1;;;;;2027:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2027:17:0;;2005:39;;2055:154;2062:10;;2055:154;;2089:11;2099:1;2089:11;;:::i;:::-;;-1:-1:-1;2158:10:0;2166:2;2158:5;:10;:::i;:::-;2145:24;;:2;:24;:::i;:::-;2132:39;;2115:6;2122;2115:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2115:56:0;;;;;;;;-1:-1:-1;2186:11:0;2195:2;2186:11;;:::i;:::-;;;2055:154;;33238:163;33361:32;33367:2;33371:8;33381:5;33388:4;33822:13;;-1:-1:-1;;;;;33850:16:0;;33846:48;;33875:19;;-1:-1:-1;;;33875:19:0;;;;;;;;;;;33846:48;33909:13;33905:44;;33931:18;;-1:-1:-1;;;33931:18:0;;;;;;;;;;;33905:44;-1:-1:-1;;;;;34300:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34359:49:0;;-1:-1:-1;;;;;34300:44:0;;;;;;;34359:49;;;-1:-1:-1;;;;;34300:44:0;;;;;;34359:49;;;;;;;;;;;;;;;;34425:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34475:66:0;;;;-1:-1:-1;;;34525:15:0;34475:66;;;;;;;;;;;34425:25;;34610:328;34630:8;34626:1;:12;34610:328;;;34669:38;;34694:12;;-1:-1:-1;;;;;34669:38:0;;;34686:1;;34669:38;;34686:1;;34669:38;34730:4;:68;;;;;34739:59;34770:1;34774:2;34778:12;34792:5;34739:22;:59::i;:::-;34738:60;34730:68;34726:164;;;34830:40;;-1:-1:-1;;;34830:40:0;;;;;;;;;;;34726:164;34908:14;;;;;34640:3;34610:328;;;-1:-1:-1;34954:13:0;:28;35004:60;32022:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:275;3082:2;3076:9;3147:2;3128:13;;-1:-1:-1;;3124:27:1;3112:40;;-1:-1:-1;;;;;3167:34:1;;3203:22;;;3164:62;3161:88;;;3229:18;;:::i;:::-;3265:2;3258:22;3011:275;;-1:-1:-1;3011:275:1:o;3291:952::-;3375:6;3406:2;3449;3437:9;3428:7;3424:23;3420:32;3417:52;;;3465:1;3462;3455:12;3417:52;3505:9;3492:23;-1:-1:-1;;;;;3575:2:1;3567:6;3564:14;3561:34;;;3591:1;3588;3581:12;3561:34;3629:6;3618:9;3614:22;3604:32;;3674:7;3667:4;3663:2;3659:13;3655:27;3645:55;;3696:1;3693;3686:12;3645:55;3732:2;3719:16;3754:2;3750;3747:10;3744:36;;;3760:18;;:::i;:::-;3806:2;3803:1;3799:10;3789:20;;3829:28;3853:2;3849;3845:11;3829:28;:::i;:::-;3891:15;;;3961:11;;;3957:20;;;3922:12;;;;3989:19;;;3986:39;;;4021:1;4018;4011:12;3986:39;4045:11;;;;4065:148;4081:6;4076:3;4073:15;4065:148;;;4147:23;4166:3;4147:23;:::i;:::-;4135:36;;4098:12;;;;4191;;;;4065:148;;;4232:5;3291:952;-1:-1:-1;;;;;;;;3291:952:1:o;4248:407::-;4313:5;-1:-1:-1;;;;;4339:6:1;4336:30;4333:56;;;4369:18;;:::i;:::-;4407:57;4452:2;4431:15;;-1:-1:-1;;4427:29:1;4458:4;4423:40;4407:57;:::i;:::-;4398:66;;4487:6;4480:5;4473:21;4527:3;4518:6;4513:3;4509:16;4506:25;4503:45;;;4544:1;4541;4534:12;4503:45;4593:6;4588:3;4581:4;4574:5;4570:16;4557:43;4647:1;4640:4;4631:6;4624:5;4620:18;4616:29;4609:40;4248:407;;;;;:::o;4660:451::-;4729:6;4782:2;4770:9;4761:7;4757:23;4753:32;4750:52;;;4798:1;4795;4788:12;4750:52;4838:9;4825:23;-1:-1:-1;;;;;4863:6:1;4860:30;4857:50;;;4903:1;4900;4893:12;4857:50;4926:22;;4979:4;4971:13;;4967:27;-1:-1:-1;4957:55:1;;5008:1;5005;4998:12;4957:55;5031:74;5097:7;5092:2;5079:16;5074:2;5070;5066:11;5031:74;:::i;5560:347::-;5625:6;5633;5686:2;5674:9;5665:7;5661:23;5657:32;5654:52;;;5702:1;5699;5692:12;5654:52;5725:29;5744:9;5725:29;:::i;:::-;5715:39;;5804:2;5793:9;5789:18;5776:32;5851:5;5844:13;5837:21;5830:5;5827:32;5817:60;;5873:1;5870;5863:12;5817:60;5896:5;5886:15;;;5560:347;;;;;:::o;5912:667::-;6007:6;6015;6023;6031;6084:3;6072:9;6063:7;6059:23;6055:33;6052:53;;;6101:1;6098;6091:12;6052:53;6124:29;6143:9;6124:29;:::i;:::-;6114:39;;6172:38;6206:2;6195:9;6191:18;6172:38;:::i;:::-;6162:48;;6257:2;6246:9;6242:18;6229:32;6219:42;;6312:2;6301:9;6297:18;6284:32;-1:-1:-1;;;;;6331:6:1;6328:30;6325:50;;;6371:1;6368;6361:12;6325:50;6394:22;;6447:4;6439:13;;6435:27;-1:-1:-1;6425:55:1;;6476:1;6473;6466:12;6425:55;6499:74;6565:7;6560:2;6547:16;6542:2;6538;6534:11;6499:74;:::i;:::-;6489:84;;;5912:667;;;;;;;:::o;6584:260::-;6652:6;6660;6713:2;6701:9;6692:7;6688:23;6684:32;6681:52;;;6729:1;6726;6719:12;6681:52;6752:29;6771:9;6752:29;:::i;:::-;6742:39;;6800:38;6834:2;6823:9;6819:18;6800:38;:::i;:::-;6790:48;;6584:260;;;;;:::o;6849:380::-;6928:1;6924:12;;;;6971;;;6992:61;;7046:4;7038:6;7034:17;7024:27;;6992:61;7099:2;7091:6;7088:14;7068:18;7065:38;7062:161;;;7145:10;7140:3;7136:20;7133:1;7126:31;7180:4;7177:1;7170:15;7208:4;7205:1;7198:15;7062:161;;6849:380;;;:::o;7234:356::-;7436:2;7418:21;;;7455:18;;;7448:30;7514:34;7509:2;7494:18;;7487:62;7581:2;7566:18;;7234:356::o;7595:127::-;7656:10;7651:3;7647:20;7644:1;7637:31;7687:4;7684:1;7677:15;7711:4;7708:1;7701:15;7727:128;7767:3;7798:1;7794:6;7791:1;7788:13;7785:39;;;7804:18;;:::i;:::-;-1:-1:-1;7840:9:1;;7727:128::o;8208:127::-;8269:10;8264:3;8260:20;8257:1;8250:31;8300:4;8297:1;8290:15;8324:4;8321:1;8314:15;8340:135;8379:3;-1:-1:-1;;8400:17:1;;8397:43;;;8420:18;;:::i;:::-;-1:-1:-1;8467:1:1;8456:13;;8340:135::o;9172:168::-;9212:7;9278:1;9274;9270:6;9266:14;9263:1;9260:21;9255:1;9248:9;9241:17;9237:45;9234:71;;;9285:18;;:::i;:::-;-1:-1:-1;9325:9:1;;9172:168::o;10946:973::-;11031:12;;10996:3;;11086:1;11106:18;;;;11159;;;;11186:61;;11240:4;11232:6;11228:17;11218:27;;11186:61;11266:2;11314;11306:6;11303:14;11283:18;11280:38;11277:161;;;11360:10;11355:3;11351:20;11348:1;11341:31;11395:4;11392:1;11385:15;11423:4;11420:1;11413:15;11277:161;11454:18;11481:104;;;;11599:1;11594:319;;;;11447:466;;11481:104;-1:-1:-1;;11514:24:1;;11502:37;;11559:16;;;;-1:-1:-1;11481:104:1;;11594:319;10893:1;10886:14;;;10930:4;10917:18;;11688:1;11702:165;11716:6;11713:1;11710:13;11702:165;;;11794:14;;11781:11;;;11774:35;11837:16;;;;11731:10;;11702:165;;;11706:3;;11896:6;11891:3;11887:16;11880:23;;11447:466;;;;;;;10946:973;;;;:::o;11924:456::-;12145:3;12173:38;12207:3;12199:6;12173:38;:::i;:::-;12240:6;12234:13;12256:52;12301:6;12297:2;12290:4;12282:6;12278:17;12256:52;:::i;:::-;12324:50;12366:6;12362:2;12358:15;12350:6;12324:50;:::i;:::-;12317:57;11924:456;-1:-1:-1;;;;;;;11924:456:1:o;12792:489::-;-1:-1:-1;;;;;13061:15:1;;;13043:34;;13113:15;;13108:2;13093:18;;13086:43;13160:2;13145:18;;13138:34;;;13208:3;13203:2;13188:18;;13181:31;;;12986:4;;13229:46;;13255:19;;13247:6;13229:46;:::i;:::-;13221:54;12792:489;-1:-1:-1;;;;;;12792:489:1:o;13286:249::-;13355:6;13408:2;13396:9;13387:7;13383:23;13379:32;13376:52;;;13424:1;13421;13414:12;13376:52;13456:9;13450:16;13475:30;13499:5;13475:30;:::i;13540:127::-;13601:10;13596:3;13592:20;13589:1;13582:31;13632:4;13629:1;13622:15;13656:4;13653:1;13646:15;13672:120;13712:1;13738;13728:35;;13743:18;;:::i;:::-;-1:-1:-1;13777:9:1;;13672:120::o;13797:125::-;13837:4;13865:1;13862;13859:8;13856:34;;;13870:18;;:::i;:::-;-1:-1:-1;13907:9:1;;13797:125::o;13927:112::-;13959:1;13985;13975:35;;13990:18;;:::i;:::-;-1:-1:-1;14024:9:1;;13927:112::o

Swarm Source

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