ETH Price: $2,685.02 (+10.32%)
Gas: 2 Gwei

Token

Exverse pass (EXVPASS)
 

Overview

Max Total Supply

357 EXVPASS

Holders

256

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 EXVPASS
0x592710cf6d4e3862c2cb150c78b178a1f3673ba8
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:
BattlePass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1337 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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


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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


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

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

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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


// File erc721a/contracts/[email protected]

// Creator: Chiru Labs

pragma solidity ^0.8.4;







error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 _startTokenId() (defaults to 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;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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) {
        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) {
        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) {
        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 {
        _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 (_startTokenId() <= curr && 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 virtual 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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && 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;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

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


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

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

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
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));
    }
}


// File contracts/library/AddressString.sol


pragma solidity >=0.5.0;

library AddressString {
    // converts an address to the uppercase hex string, extracting only len bytes (up to 20, multiple of 2)
    function toAsciiString(address addr) internal pure returns (string memory) {
        bytes memory s = new bytes(42);
        uint160 addrNum = uint160(addr);
        s[0] = '0';
        s[1] = 'X';
        for (uint256 i = 0; i < 40 / 2; i++) {
            // shift right and truncate all but the least significant byte to extract the byte at position 19-i
            uint8 b = uint8(addrNum >> (8 * (19 - i)));
            // first hex character is the most significant 4 bits
            uint8 hi = b >> 4;
            // second hex character is the least significant 4 bits
            uint8 lo = b - (hi << 4);
            s[2 * i + 2] = char(hi);
            s[2 * i + 3] = char(lo);
        }
        return string(s);
    }

    // hi and lo are only 4 bits and between 0 and 16
    // this method converts those values to the unicode/ascii code point for the hex representation
    // uses upper case for the characters
    function char(uint8 b) private pure returns (bytes1 c) {
        if (b < 10) {
            return bytes1(b + 0x30);
        } else {
            return bytes1(b + 0x37);
        }
    }
}


// File contracts/exv.nft.battlepass.sol

pragma solidity ^0.8.4;





contract BattlePass is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  uint256 public immutable collectionSize;
  uint256 public immutable maxBatchSize;

  struct SaleConfig {
    uint32 whitelistSaleStartTime;
    uint32 publicSaleStartTime;
    uint64 priceWei;
    address whitelistSigner;
  }

  SaleConfig public config;

  constructor() 
  ERC721A("Exverse pass", "EXVPASS")
  {
    amountForDevs = 50;
    maxBatchSize = 5;
    collectionSize = 2000;
    maxPerAddressDuringMint = 1;
    config.priceWei = 0.1 ether;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }


  function _startTokenId() internal override view virtual returns (uint256) {
      return 1;
  }

  function whitelistMint(
      uint256 quantity,
      bytes memory signature
  )
    external
    payable
    callerIsUser
  {
    uint256 price = uint256(config.priceWei);
    uint256 whitelistSaleStartTime = uint256(config.whitelistSaleStartTime);

    require(
      isSaleOn(price, whitelistSaleStartTime),
      "whitelist sale has not begun yet"
    );

    require(
      totalSupply() + quantity <= collectionSize,
      "not enough remaining reserved for sale to support desired mint amount"
    );

    require(
      numberMinted(msg.sender) + quantity <= 1,
      "can not mint this many"
    );

    bytes memory data = abi.encodePacked(
        AddressString.toAsciiString(msg.sender),
        ":1"
    );
    bytes32 hash = ECDSA.toEthSignedMessageHash(data);
    address signer = ECDSA.recover(hash, signature);

    require(
        signer == config.whitelistSigner,
        "wrong sig"
    );

    uint256 totalCost = price * quantity;
    _safeMint(msg.sender, quantity);
    refundIfOver(totalCost);
  }

  function mint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    uint256 publicPrice = uint256(config.priceWei);
    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);

    require(
      isSaleOn(publicPrice, publicSaleStartTime),
      "sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(publicPrice * quantity);
  }

  function refundIfOver(uint256 price)
    private
  {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isSaleOn(uint256 _price, uint256 _startTime)
    public
    view
    returns (bool)
  {
    return _price != 0 && _startTime != 0 && block.timestamp >= _startTime;
  }


  function setPrice(uint64 price)
    external
    onlyOwner
  {
    config.priceWei = price;
  }


  function setWhitelistSaleConfig(uint32 timestamp, address signer)
    external
    onlyOwner
  {
    config.whitelistSaleStartTime = timestamp;
    config.whitelistSigner = signer;
  }

  function setPublicSaleConfig(uint32 timestamp)
    external
    onlyOwner 
  {
      config.publicSaleStartTime = timestamp;
  }

  // For marketing etc.
  function reserve(uint256 quantity)
    external
    onlyOwner
  {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI)
    external
    onlyOwner
  {
    _baseTokenURI = baseURI;
  }

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

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

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

  function totalMinted()
    public
    view
    returns (uint256)
  {
      // Counter underflow is impossible as _currentIndex does not decrement,
      // and it is initialized to _startTokenId()
      unchecked {
          return _currentIndex - _startTokenId();
      }
  }
}


// File contracts/mocks/ERC721ReceiverMock.sol

// Creators: Chiru Labs

pragma solidity ^0.8.4;

contract ERC721ReceiverMock is IERC721Receiver {
    enum Error {
        None,
        RevertWithMessage,
        RevertWithoutMessage,
        Panic
    }

    bytes4 private immutable _retval;

    event Received(address operator, address from, uint256 tokenId, bytes data, uint256 gas);

    constructor(bytes4 retval) {
        _retval = retval;
    }

    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes memory data
    ) public override returns (bytes4) {
        emit Received(operator, from, tokenId, data, 20000);
        return _retval;
    }
}


// File contracts/mocks/StartTokenIdHelper.sol

// Creators: Chiru Labs

pragma solidity ^0.8.4;

/**
 * This Helper is used to return a dynmamic value in the overriden _startTokenId() function.
 * Extending this Helper before the ERC721A contract give us access to the herein set `startTokenId`
 * to be returned by the overriden `_startTokenId()` function of ERC721A in the ERC721AStartTokenId mocks.
 */
contract StartTokenIdHelper {
    uint256 public immutable startTokenId;

    constructor(uint256 startTokenId_) {
        startTokenId = startTokenId_;
    }
}

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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"amountForDevs","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":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"priceWei","type":"uint64"},{"internalType":"address","name":"whitelistSigner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"isSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"price","type":"uint64"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setPublicSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"address","name":"signer","type":"address"}],"name":"setWhitelistSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040523480156200001257600080fd5b506040518060400160405280600c81526020016b45787665727365207061737360a01b815250604051806040016040528060078152602001664558565041535360c81b815250620000726200006c620000e060201b60201c565b620000e4565b81516200008790600390602085019062000134565b5080516200009d90600490602084019062000134565b5060018081556009819055603260a052600560e0526107d060c0526080525050600a8054600160401b600160801b03191664b1a2bc2ec560511b17905562000217565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014290620001da565b90600052602060002090601f016020900481019282620001665760008555620001b1565b82601f106200018157805160ff1916838001178555620001b1565b82800160010185558215620001b1579182015b82811115620001b157825182559160200191906001019062000194565b50620001bf929150620001c3565b5090565b5b80821115620001bf5760008155600101620001c4565b600181811c90821680620001ef57607f821691505b602082108114156200021157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612e85620002826000396000818161036801528181610f7501528181611014015261104c0152600081816103d101528181611184015261145801526000818161074f0152610ecb01526000818161056901526114d90152612e856000f3fe6080604052600436106102195760003560e01c8063715018a61161011d578063a0712d68116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c5146106d4578063f2fde38b1461071d578063fbe1aa511461073d57600080fd5b8063c87b56dd14610694578063dc33e681146106b457600080fd5b8063a0712d6814610628578063a22cb4651461063b578063a2309ff81461065b578063b88d4fde1461067457600080fd5b80638da5cb5b116100ec5780638da5cb5b1461058b5780639231ab2a146105a957806395d89b41146106005780639e852f751461061557600080fd5b8063715018a61461049357806379502c55146104a8578063819b25ba146105375780638bc35c2f1461055757600080fd5b80632913daa0116101b057806355f804b31161017f5780636b12304e116101645780636b12304e146104335780636e8cfade1461045357806370a082311461047357600080fd5b806355f804b3146103f35780636352211e1461041357600080fd5b80632913daa0146103565780633ccfd60b1461038a57806342842e0e1461039f57806345c0f533146103bf57600080fd5b8063095ea7b3116101ec578063095ea7b3146102cf57806318160ddd146102ef578063229c20481461031657806323b872dd1461033657600080fd5b8063019b14631461021e57806301ffc9a71461024057806306fdde0314610275578063081812fc14610297575b600080fd5b34801561022a57600080fd5b5061023e610239366004612ae4565b610771565b005b34801561024c57600080fd5b5061026061025b3660046129b6565b6107f8565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610895565b60405161026c9190612c78565b3480156102a357600080fd5b506102b76102b2366004612a62565b610927565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b5061023e6102ea36600461298c565b610984565b3480156102fb57600080fd5b5060025460015403600019015b60405190815260200161026c565b34801561032257600080fd5b5061023e610331366004612b1b565b610a44565b34801561034257600080fd5b5061023e6103513660046128ac565b610ae5565b34801561036257600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000000081565b34801561039657600080fd5b5061023e610af0565b3480156103ab57600080fd5b5061023e6103ba3660046128ac565b610c42565b3480156103cb57600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000000081565b3480156103ff57600080fd5b5061023e61040e3660046129f0565b610c5d565b34801561041f57600080fd5b506102b761042e366004612a62565b610cc3565b34801561043f57600080fd5b5061026061044e366004612ac2565b610cd5565b34801561045f57600080fd5b5061023e61046e366004612aff565b610cf8565b34801561047f57600080fd5b5061030861048e36600461285e565b610d9b565b34801561049f57600080fd5b5061023e610e03565b3480156104b457600080fd5b50600a54600b546104f79163ffffffff8082169264010000000083049091169168010000000000000000900467ffffffffffffffff16906001600160a01b031684565b6040805163ffffffff958616815294909316602085015267ffffffffffffffff909116918301919091526001600160a01b0316606082015260800161026c565b34801561054357600080fd5b5061023e610552366004612a62565b610e69565b34801561056357600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000000081565b34801561059757600080fd5b506000546001600160a01b03166102b7565b3480156105b557600080fd5b506105c96105c4366004612a62565b611082565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161026c565b34801561060c57600080fd5b5061028a6110a8565b61023e610623366004612a7b565b6110b7565b61023e610636366004612a62565b611383565b34801561064757600080fd5b5061023e610656366004612950565b611576565b34801561066757600080fd5b5060015460001901610308565b34801561068057600080fd5b5061023e61068f3660046128e8565b611625565b3480156106a057600080fd5b5061028a6106af366004612a62565b611676565b3480156106c057600080fd5b506103086106cf36600461285e565b611713565b3480156106e057600080fd5b506102606106ef366004612879565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561072957600080fd5b5061023e61073836600461285e565b611747565b34801561074957600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031633146107d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061085b57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061088f57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600380546108a490612d61565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090612d61565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093282611829565b610968576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061098f82610cc3565b9050806001600160a01b0316836001600160a01b031614156109dd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906109fd57506109fb81336106ef565b155b15610a34576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3f838383611862565b505050565b6000546001600160a01b03163314610a9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b600a805467ffffffffffffffff90921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff909216919091179055565b610a3f8383836118cb565b6000546001600160a01b03163314610b4a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b60026009541415610b9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c7565b6002600955604051600090339047908381818185875af1925050503d8060008114610be4576040519150601f19603f3d011682016040523d82523d6000602084013e610be9565b606091505b5050905080610c3a5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016107c7565b506001600955565b610a3f83838360405180602001604052806000815250611625565b6000546001600160a01b03163314610cb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b610a3f600c838361270d565b6000610cce82611b07565b5192915050565b60008215801590610ce557508115155b8015610cf15750814210155b9392505050565b6000546001600160a01b03163314610d525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b600a805463ffffffff191663ffffffff9390931692909217909155600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055565b60006001600160a01b038216610ddd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b610e676000611c49565b565b6000546001600160a01b03163314610ec35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b6002546001547f00000000000000000000000000000000000000000000000000000000000000009183910360001901610efc9190612c8b565b1115610f705760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460448201527f6576206d696e740000000000000000000000000000000000000000000000000060648201526084016107c7565b610f9a7f000000000000000000000000000000000000000000000000000000000000000082612db7565b1561100d5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201527f6d6178426174636853697a65000000000000000000000000000000000000000060648201526084016107c7565b60006110397f000000000000000000000000000000000000000000000000000000000000000083612cc8565b905060005b81811015610a3f57611070337f0000000000000000000000000000000000000000000000000000000000000000611ca6565b8061107a81612d9c565b91505061103e565b604080516060810182526000808252602082018190529181019190915261088f82611b07565b6060600480546108a490612d61565b3233146111065760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107c7565b600a5467ffffffffffffffff680100000000000000008204169063ffffffff166111308282610cd5565b61117c5760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016107c7565b6002546001547f000000000000000000000000000000000000000000000000000000000000000091869103600019016111b59190612c8b565b111561124f5760405162461bcd60e51b815260206004820152604560248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722073616c6520746f20737570706f72742064657369726564206d696e74206160648201527f6d6f756e74000000000000000000000000000000000000000000000000000000608482015260a4016107c7565b60018461125b33611713565b6112659190612c8b565b11156112b35760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016107c7565b60006112be33611cc4565b6040516020016112ce9190612ba0565b604051602081830303815290604052905060006112ea82611e5f565b905060006112f88287611e9a565b600b549091506001600160a01b038083169116146113585760405162461bcd60e51b815260206004820152600960248201527f77726f6e6720736967000000000000000000000000000000000000000000000060448201526064016107c7565b60006113648887612cdc565b90506113703389611ca6565b61137981611ebe565b5050505050505050565b3233146113d25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107c7565b600a5468010000000000000000810467ffffffffffffffff1690640100000000900463ffffffff166114048282610cd5565b6114505760405162461bcd60e51b815260206004820152601660248201527f73616c6520686173206e6f7420626567756e207965740000000000000000000060448201526064016107c7565b6002546001547f000000000000000000000000000000000000000000000000000000000000000091859103600019016114899190612c8b565b11156114d75760405162461bcd60e51b815260206004820152601260248201527f72656163686564206d617820737570706c79000000000000000000000000000060448201526064016107c7565b7f00000000000000000000000000000000000000000000000000000000000000008361150233611713565b61150c9190612c8b565b111561155a5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016107c7565b6115643384611ca6565b610a3f6115718484612cdc565b611ebe565b6001600160a01b0382163314156115b9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116308484846118cb565b6001600160a01b0383163b15158015611652575061165084848484611f4c565b155b15611670576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061168182611829565b6116b7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116c1612044565b90508051600014156116e25760405180602001604052806000815250610cf1565b806116ec84612053565b6040516020016116fd929190612b71565b6040516020818303038152906040529392505050565b6001600160a01b03811660009081526006602052604081205468010000000000000000900467ffffffffffffffff1661088f565b6000546001600160a01b031633146117a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b6001600160a01b03811661181d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107c7565b61182681611c49565b50565b60008160011115801561183d575060015482105b801561088f575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118d682611b07565b9050836001600160a01b031681600001516001600160a01b031614611927576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611945575061194585336106ef565b8061196057503361195584610927565b6001600160a01b0316145b905080611999576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166119d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119e560008487611862565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611abb576001548214611abb578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611b37575060015481105b15611c1757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611c155780516001600160a01b031615611bab579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611c10579392505050565b611bab565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611cc0828260405180602001604052806000815250612151565b5050565b60408051602a8082526060828101909352600091906020820181803683370190505090506000839050600360fc1b82600081518110611d0557611d05612e0d565b60200101906001600160f81b031916908160001a9053507f580000000000000000000000000000000000000000000000000000000000000082600181518110611d5057611d50612e0d565b60200101906001600160f81b031916908160001a90535060005b6014811015611e56576000611d80826013612cfb565b611d8b906008612cdc565b6001600160a01b038416901c9050600f600482901c166000611db060f0841684612d12565b9050611dbb8261215e565b86611dc7866002612cdc565b611dd2906002612c8b565b81518110611de257611de2612e0d565b60200101906001600160f81b031916908160001a905350611e028161215e565b86611e0e866002612cdc565b611e19906003612c8b565b81518110611e2957611e29612e0d565b60200101906001600160f81b031916908160001a9053505050508080611e4e90612d9c565b915050611d6a565b50909392505050565b6000611e6b8251612053565b82604051602001611e7d929190612be1565b604051602081830303815290604052805190602001209050919050565b6000806000611ea98585612190565b91509150611eb681612200565b509392505050565b80341015611f0e5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e0000000000000000000060448201526064016107c7565b8034111561182657336108fc611f248334612cfb565b6040518115909202916000818181858888f19350505050158015611cc0573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f81903390899088908890600401612c3c565b602060405180830381600087803b158015611f9b57600080fd5b505af1925050508015611fcb575060408051601f3d908101601f19168201909252611fc8918101906129d3565b60015b612026573d808015611ff9576040519150601f19603f3d011682016040523d82523d6000602084013e611ffe565b606091505b50805161201e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108a490612d61565b6060816120775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120a1578061208b81612d9c565b915061209a9050600a83612cc8565b915061207b565b60008167ffffffffffffffff8111156120bc576120bc612e23565b6040519080825280601f01601f1916602001820160405280156120e6576020820181803683370190505b5090505b841561203c576120fb600183612cfb565b9150612108600a86612db7565b612113906030612c8b565b60f81b81838151811061212857612128612e0d565b60200101906001600160f81b031916908160001a90535061214a600a86612cc8565b94506120ea565b610a3f83838360016123bb565b6000600a8260ff16101561218057612177826030612ca3565b60f81b92915050565b612177826037612ca3565b919050565b6000808251604114156121c75760208301516040840151606085015160001a6121bb878285856125ce565b945094505050506121f9565b8251604014156121f157602083015160408401516121e68683836126bb565b9350935050506121f9565b506000905060025b9250929050565b600081600481111561221457612214612df7565b141561221d5750565b600181600481111561223157612231612df7565b141561227f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107c7565b600281600481111561229357612293612df7565b14156122e15760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107c7565b60038160048111156122f5576122f5612df7565b141561234e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107c7565b600481600481111561236257612362612df7565b14156118265760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107c7565b6001546001600160a01b0385166123fe576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612435576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156124f657506001600160a01b0387163b15155b1561257f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125476000888480600101955088611f4c565b612564576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124fc57826001541461257a57600080fd5b6125c5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612580575b50600155611b00565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561260557506000905060036126b2565b8460ff16601b1415801561261d57508460ff16601c14155b1561262e57506000905060046126b2565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612682573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166126ab576000600192509250506126b2565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8316816126f160ff86901c601b612c8b565b90506126ff878288856125ce565b935093505050935093915050565b82805461271990612d61565b90600052602060002090601f01602090048101928261273b5760008555612781565b82601f106127545782800160ff19823516178555612781565b82800160010185558215612781579182015b82811115612781578235825591602001919060010190612766565b5061278d929150612791565b5090565b5b8082111561278d5760008155600101612792565b80356001600160a01b038116811461218b57600080fd5b600082601f8301126127ce57600080fd5b813567ffffffffffffffff808211156127e9576127e9612e23565b604051601f8301601f19908116603f0116810190828211818310171561281157612811612e23565b8160405283815286602085880101111561282a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b803563ffffffff8116811461218b57600080fd5b60006020828403121561287057600080fd5b610cf1826127a6565b6000806040838503121561288c57600080fd5b612895836127a6565b91506128a3602084016127a6565b90509250929050565b6000806000606084860312156128c157600080fd5b6128ca846127a6565b92506128d8602085016127a6565b9150604084013590509250925092565b600080600080608085870312156128fe57600080fd5b612907856127a6565b9350612915602086016127a6565b925060408501359150606085013567ffffffffffffffff81111561293857600080fd5b612944878288016127bd565b91505092959194509250565b6000806040838503121561296357600080fd5b61296c836127a6565b91506020830135801515811461298157600080fd5b809150509250929050565b6000806040838503121561299f57600080fd5b6129a8836127a6565b946020939093013593505050565b6000602082840312156129c857600080fd5b8135610cf181612e39565b6000602082840312156129e557600080fd5b8151610cf181612e39565b60008060208385031215612a0357600080fd5b823567ffffffffffffffff80821115612a1b57600080fd5b818501915085601f830112612a2f57600080fd5b813581811115612a3e57600080fd5b866020828501011115612a5057600080fd5b60209290920196919550909350505050565b600060208284031215612a7457600080fd5b5035919050565b60008060408385031215612a8e57600080fd5b82359150602083013567ffffffffffffffff811115612aac57600080fd5b612ab8858286016127bd565b9150509250929050565b60008060408385031215612ad557600080fd5b50508035926020909101359150565b600060208284031215612af657600080fd5b610cf18261284a565b60008060408385031215612b1257600080fd5b6128958361284a565b600060208284031215612b2d57600080fd5b813567ffffffffffffffff81168114610cf157600080fd5b60008151808452612b5d816020860160208601612d35565b601f01601f19169290920160200192915050565b60008351612b83818460208801612d35565b835190830190612b97818360208801612d35565b01949350505050565b60008251612bb2818460208701612d35565b7f3a31000000000000000000000000000000000000000000000000000000000000920191825250600201919050565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000815260008351612c1981601a850160208801612d35565b835190830190612c3081601a840160208801612d35565b01601a01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612c6e6080830184612b45565b9695505050505050565b602081526000610cf16020830184612b45565b60008219821115612c9e57612c9e612dcb565b500190565b600060ff821660ff84168060ff03821115612cc057612cc0612dcb565b019392505050565b600082612cd757612cd7612de1565b500490565b6000816000190483118215151615612cf657612cf6612dcb565b500290565b600082821015612d0d57612d0d612dcb565b500390565b600060ff821660ff841680821015612d2c57612d2c612dcb565b90039392505050565b60005b83811015612d50578181015183820152602001612d38565b838111156116705750506000910152565b600181811c90821680612d7557607f821691505b60208210811415612d9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612db057612db0612dcb565b5060010190565b600082612dc657612dc6612de1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461182657600080fdfea264697066735822122053ee07f9d9b7dce6164ce641b977b426be9a1258385e888a009728216443388864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102195760003560e01c8063715018a61161011d578063a0712d68116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c5146106d4578063f2fde38b1461071d578063fbe1aa511461073d57600080fd5b8063c87b56dd14610694578063dc33e681146106b457600080fd5b8063a0712d6814610628578063a22cb4651461063b578063a2309ff81461065b578063b88d4fde1461067457600080fd5b80638da5cb5b116100ec5780638da5cb5b1461058b5780639231ab2a146105a957806395d89b41146106005780639e852f751461061557600080fd5b8063715018a61461049357806379502c55146104a8578063819b25ba146105375780638bc35c2f1461055757600080fd5b80632913daa0116101b057806355f804b31161017f5780636b12304e116101645780636b12304e146104335780636e8cfade1461045357806370a082311461047357600080fd5b806355f804b3146103f35780636352211e1461041357600080fd5b80632913daa0146103565780633ccfd60b1461038a57806342842e0e1461039f57806345c0f533146103bf57600080fd5b8063095ea7b3116101ec578063095ea7b3146102cf57806318160ddd146102ef578063229c20481461031657806323b872dd1461033657600080fd5b8063019b14631461021e57806301ffc9a71461024057806306fdde0314610275578063081812fc14610297575b600080fd5b34801561022a57600080fd5b5061023e610239366004612ae4565b610771565b005b34801561024c57600080fd5b5061026061025b3660046129b6565b6107f8565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610895565b60405161026c9190612c78565b3480156102a357600080fd5b506102b76102b2366004612a62565b610927565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b5061023e6102ea36600461298c565b610984565b3480156102fb57600080fd5b5060025460015403600019015b60405190815260200161026c565b34801561032257600080fd5b5061023e610331366004612b1b565b610a44565b34801561034257600080fd5b5061023e6103513660046128ac565b610ae5565b34801561036257600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000000581565b34801561039657600080fd5b5061023e610af0565b3480156103ab57600080fd5b5061023e6103ba3660046128ac565b610c42565b3480156103cb57600080fd5b506103087f00000000000000000000000000000000000000000000000000000000000007d081565b3480156103ff57600080fd5b5061023e61040e3660046129f0565b610c5d565b34801561041f57600080fd5b506102b761042e366004612a62565b610cc3565b34801561043f57600080fd5b5061026061044e366004612ac2565b610cd5565b34801561045f57600080fd5b5061023e61046e366004612aff565b610cf8565b34801561047f57600080fd5b5061030861048e36600461285e565b610d9b565b34801561049f57600080fd5b5061023e610e03565b3480156104b457600080fd5b50600a54600b546104f79163ffffffff8082169264010000000083049091169168010000000000000000900467ffffffffffffffff16906001600160a01b031684565b6040805163ffffffff958616815294909316602085015267ffffffffffffffff909116918301919091526001600160a01b0316606082015260800161026c565b34801561054357600080fd5b5061023e610552366004612a62565b610e69565b34801561056357600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000000181565b34801561059757600080fd5b506000546001600160a01b03166102b7565b3480156105b557600080fd5b506105c96105c4366004612a62565b611082565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161026c565b34801561060c57600080fd5b5061028a6110a8565b61023e610623366004612a7b565b6110b7565b61023e610636366004612a62565b611383565b34801561064757600080fd5b5061023e610656366004612950565b611576565b34801561066757600080fd5b5060015460001901610308565b34801561068057600080fd5b5061023e61068f3660046128e8565b611625565b3480156106a057600080fd5b5061028a6106af366004612a62565b611676565b3480156106c057600080fd5b506103086106cf36600461285e565b611713565b3480156106e057600080fd5b506102606106ef366004612879565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561072957600080fd5b5061023e61073836600461285e565b611747565b34801561074957600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000003281565b6000546001600160a01b031633146107d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061085b57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061088f57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600380546108a490612d61565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090612d61565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093282611829565b610968576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061098f82610cc3565b9050806001600160a01b0316836001600160a01b031614156109dd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906109fd57506109fb81336106ef565b155b15610a34576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3f838383611862565b505050565b6000546001600160a01b03163314610a9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b600a805467ffffffffffffffff90921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff909216919091179055565b610a3f8383836118cb565b6000546001600160a01b03163314610b4a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b60026009541415610b9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c7565b6002600955604051600090339047908381818185875af1925050503d8060008114610be4576040519150601f19603f3d011682016040523d82523d6000602084013e610be9565b606091505b5050905080610c3a5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016107c7565b506001600955565b610a3f83838360405180602001604052806000815250611625565b6000546001600160a01b03163314610cb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b610a3f600c838361270d565b6000610cce82611b07565b5192915050565b60008215801590610ce557508115155b8015610cf15750814210155b9392505050565b6000546001600160a01b03163314610d525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b600a805463ffffffff191663ffffffff9390931692909217909155600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055565b60006001600160a01b038216610ddd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b610e676000611c49565b565b6000546001600160a01b03163314610ec35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b6002546001547f00000000000000000000000000000000000000000000000000000000000000329183910360001901610efc9190612c8b565b1115610f705760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460448201527f6576206d696e740000000000000000000000000000000000000000000000000060648201526084016107c7565b610f9a7f000000000000000000000000000000000000000000000000000000000000000582612db7565b1561100d5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201527f6d6178426174636853697a65000000000000000000000000000000000000000060648201526084016107c7565b60006110397f000000000000000000000000000000000000000000000000000000000000000583612cc8565b905060005b81811015610a3f57611070337f0000000000000000000000000000000000000000000000000000000000000005611ca6565b8061107a81612d9c565b91505061103e565b604080516060810182526000808252602082018190529181019190915261088f82611b07565b6060600480546108a490612d61565b3233146111065760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107c7565b600a5467ffffffffffffffff680100000000000000008204169063ffffffff166111308282610cd5565b61117c5760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016107c7565b6002546001547f00000000000000000000000000000000000000000000000000000000000007d091869103600019016111b59190612c8b565b111561124f5760405162461bcd60e51b815260206004820152604560248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722073616c6520746f20737570706f72742064657369726564206d696e74206160648201527f6d6f756e74000000000000000000000000000000000000000000000000000000608482015260a4016107c7565b60018461125b33611713565b6112659190612c8b565b11156112b35760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016107c7565b60006112be33611cc4565b6040516020016112ce9190612ba0565b604051602081830303815290604052905060006112ea82611e5f565b905060006112f88287611e9a565b600b549091506001600160a01b038083169116146113585760405162461bcd60e51b815260206004820152600960248201527f77726f6e6720736967000000000000000000000000000000000000000000000060448201526064016107c7565b60006113648887612cdc565b90506113703389611ca6565b61137981611ebe565b5050505050505050565b3233146113d25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107c7565b600a5468010000000000000000810467ffffffffffffffff1690640100000000900463ffffffff166114048282610cd5565b6114505760405162461bcd60e51b815260206004820152601660248201527f73616c6520686173206e6f7420626567756e207965740000000000000000000060448201526064016107c7565b6002546001547f00000000000000000000000000000000000000000000000000000000000007d091859103600019016114899190612c8b565b11156114d75760405162461bcd60e51b815260206004820152601260248201527f72656163686564206d617820737570706c79000000000000000000000000000060448201526064016107c7565b7f00000000000000000000000000000000000000000000000000000000000000018361150233611713565b61150c9190612c8b565b111561155a5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016107c7565b6115643384611ca6565b610a3f6115718484612cdc565b611ebe565b6001600160a01b0382163314156115b9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116308484846118cb565b6001600160a01b0383163b15158015611652575061165084848484611f4c565b155b15611670576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061168182611829565b6116b7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116c1612044565b90508051600014156116e25760405180602001604052806000815250610cf1565b806116ec84612053565b6040516020016116fd929190612b71565b6040516020818303038152906040529392505050565b6001600160a01b03811660009081526006602052604081205468010000000000000000900467ffffffffffffffff1661088f565b6000546001600160a01b031633146117a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b6001600160a01b03811661181d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107c7565b61182681611c49565b50565b60008160011115801561183d575060015482105b801561088f575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118d682611b07565b9050836001600160a01b031681600001516001600160a01b031614611927576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611945575061194585336106ef565b8061196057503361195584610927565b6001600160a01b0316145b905080611999576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166119d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119e560008487611862565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611abb576001548214611abb578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611b37575060015481105b15611c1757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611c155780516001600160a01b031615611bab579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611c10579392505050565b611bab565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611cc0828260405180602001604052806000815250612151565b5050565b60408051602a8082526060828101909352600091906020820181803683370190505090506000839050600360fc1b82600081518110611d0557611d05612e0d565b60200101906001600160f81b031916908160001a9053507f580000000000000000000000000000000000000000000000000000000000000082600181518110611d5057611d50612e0d565b60200101906001600160f81b031916908160001a90535060005b6014811015611e56576000611d80826013612cfb565b611d8b906008612cdc565b6001600160a01b038416901c9050600f600482901c166000611db060f0841684612d12565b9050611dbb8261215e565b86611dc7866002612cdc565b611dd2906002612c8b565b81518110611de257611de2612e0d565b60200101906001600160f81b031916908160001a905350611e028161215e565b86611e0e866002612cdc565b611e19906003612c8b565b81518110611e2957611e29612e0d565b60200101906001600160f81b031916908160001a9053505050508080611e4e90612d9c565b915050611d6a565b50909392505050565b6000611e6b8251612053565b82604051602001611e7d929190612be1565b604051602081830303815290604052805190602001209050919050565b6000806000611ea98585612190565b91509150611eb681612200565b509392505050565b80341015611f0e5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e0000000000000000000060448201526064016107c7565b8034111561182657336108fc611f248334612cfb565b6040518115909202916000818181858888f19350505050158015611cc0573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f81903390899088908890600401612c3c565b602060405180830381600087803b158015611f9b57600080fd5b505af1925050508015611fcb575060408051601f3d908101601f19168201909252611fc8918101906129d3565b60015b612026573d808015611ff9576040519150601f19603f3d011682016040523d82523d6000602084013e611ffe565b606091505b50805161201e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108a490612d61565b6060816120775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120a1578061208b81612d9c565b915061209a9050600a83612cc8565b915061207b565b60008167ffffffffffffffff8111156120bc576120bc612e23565b6040519080825280601f01601f1916602001820160405280156120e6576020820181803683370190505b5090505b841561203c576120fb600183612cfb565b9150612108600a86612db7565b612113906030612c8b565b60f81b81838151811061212857612128612e0d565b60200101906001600160f81b031916908160001a90535061214a600a86612cc8565b94506120ea565b610a3f83838360016123bb565b6000600a8260ff16101561218057612177826030612ca3565b60f81b92915050565b612177826037612ca3565b919050565b6000808251604114156121c75760208301516040840151606085015160001a6121bb878285856125ce565b945094505050506121f9565b8251604014156121f157602083015160408401516121e68683836126bb565b9350935050506121f9565b506000905060025b9250929050565b600081600481111561221457612214612df7565b141561221d5750565b600181600481111561223157612231612df7565b141561227f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107c7565b600281600481111561229357612293612df7565b14156122e15760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107c7565b60038160048111156122f5576122f5612df7565b141561234e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107c7565b600481600481111561236257612362612df7565b14156118265760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107c7565b6001546001600160a01b0385166123fe576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612435576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156124f657506001600160a01b0387163b15155b1561257f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125476000888480600101955088611f4c565b612564576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124fc57826001541461257a57600080fd5b6125c5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612580575b50600155611b00565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561260557506000905060036126b2565b8460ff16601b1415801561261d57508460ff16601c14155b1561262e57506000905060046126b2565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612682573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166126ab576000600192509250506126b2565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8316816126f160ff86901c601b612c8b565b90506126ff878288856125ce565b935093505050935093915050565b82805461271990612d61565b90600052602060002090601f01602090048101928261273b5760008555612781565b82601f106127545782800160ff19823516178555612781565b82800160010185558215612781579182015b82811115612781578235825591602001919060010190612766565b5061278d929150612791565b5090565b5b8082111561278d5760008155600101612792565b80356001600160a01b038116811461218b57600080fd5b600082601f8301126127ce57600080fd5b813567ffffffffffffffff808211156127e9576127e9612e23565b604051601f8301601f19908116603f0116810190828211818310171561281157612811612e23565b8160405283815286602085880101111561282a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b803563ffffffff8116811461218b57600080fd5b60006020828403121561287057600080fd5b610cf1826127a6565b6000806040838503121561288c57600080fd5b612895836127a6565b91506128a3602084016127a6565b90509250929050565b6000806000606084860312156128c157600080fd5b6128ca846127a6565b92506128d8602085016127a6565b9150604084013590509250925092565b600080600080608085870312156128fe57600080fd5b612907856127a6565b9350612915602086016127a6565b925060408501359150606085013567ffffffffffffffff81111561293857600080fd5b612944878288016127bd565b91505092959194509250565b6000806040838503121561296357600080fd5b61296c836127a6565b91506020830135801515811461298157600080fd5b809150509250929050565b6000806040838503121561299f57600080fd5b6129a8836127a6565b946020939093013593505050565b6000602082840312156129c857600080fd5b8135610cf181612e39565b6000602082840312156129e557600080fd5b8151610cf181612e39565b60008060208385031215612a0357600080fd5b823567ffffffffffffffff80821115612a1b57600080fd5b818501915085601f830112612a2f57600080fd5b813581811115612a3e57600080fd5b866020828501011115612a5057600080fd5b60209290920196919550909350505050565b600060208284031215612a7457600080fd5b5035919050565b60008060408385031215612a8e57600080fd5b82359150602083013567ffffffffffffffff811115612aac57600080fd5b612ab8858286016127bd565b9150509250929050565b60008060408385031215612ad557600080fd5b50508035926020909101359150565b600060208284031215612af657600080fd5b610cf18261284a565b60008060408385031215612b1257600080fd5b6128958361284a565b600060208284031215612b2d57600080fd5b813567ffffffffffffffff81168114610cf157600080fd5b60008151808452612b5d816020860160208601612d35565b601f01601f19169290920160200192915050565b60008351612b83818460208801612d35565b835190830190612b97818360208801612d35565b01949350505050565b60008251612bb2818460208701612d35565b7f3a31000000000000000000000000000000000000000000000000000000000000920191825250600201919050565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000815260008351612c1981601a850160208801612d35565b835190830190612c3081601a840160208801612d35565b01601a01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612c6e6080830184612b45565b9695505050505050565b602081526000610cf16020830184612b45565b60008219821115612c9e57612c9e612dcb565b500190565b600060ff821660ff84168060ff03821115612cc057612cc0612dcb565b019392505050565b600082612cd757612cd7612de1565b500490565b6000816000190483118215151615612cf657612cf6612dcb565b500290565b600082821015612d0d57612d0d612dcb565b500390565b600060ff821660ff841680821015612d2c57612d2c612dcb565b90039392505050565b60005b83811015612d50578181015183820152602001612d38565b838111156116705750506000910152565b600181811c90821680612d7557607f821691505b60208210811415612d9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612db057612db0612dcb565b5060010190565b600082612dc657612dc6612de1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461182657600080fdfea264697066735822122053ee07f9d9b7dce6164ce641b977b426be9a1258385e888a009728216443388864736f6c63430008070033

Deployed Bytecode Sourcemap

58628:4971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61882:133;;;;;;;;;;-1:-1:-1;61882:133:0;;;;;:::i;:::-;;:::i;:::-;;29882:305;;;;;;;;;;-1:-1:-1;29882:305:0;;;;;:::i;:::-;;:::i;:::-;;;8705:14:1;;8698:22;8680:41;;8668:2;8653:18;29882:305:0;;;;;;;;32995:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34498:204::-;;;;;;;;;;-1:-1:-1;34498:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7957:55:1;;;7939:74;;7927:2;7912:18;34498:204:0;7793:226:1;34061:371:0;;;;;;;;;;-1:-1:-1;34061:371:0;;;;;:::i;:::-;;:::i;29131:303::-;;;;;;;;;;-1:-1:-1;29385:12:0;;59477:1;29369:13;:28;-1:-1:-1;;29369:46:0;29131:303;;;16720:25:1;;;16708:2;16693:18;29131:303:0;16574:177:1;61578:100:0;;;;;;;;;;-1:-1:-1;61578:100:0;;;;;:::i;:::-;;:::i;35363:170::-;;;;;;;;;;-1:-1:-1;35363:170:0;;;;;:::i;:::-;;:::i;58830:37::-;;;;;;;;;;;;;;;62825:194;;;;;;;;;;;;;:::i;35604:185::-;;;;;;;;;;-1:-1:-1;35604:185:0;;;;;:::i;:::-;;:::i;58786:39::-;;;;;;;;;;;;;;;62706:113;;;;;;;;;;-1:-1:-1;62706:113:0;;;;;:::i;:::-;;:::i;32803:125::-;;;;;;;;;;-1:-1:-1;32803:125:0;;;;;:::i;:::-;;:::i;61388:182::-;;;;;;;;;;-1:-1:-1;61388:182:0;;;;;:::i;:::-;;:::i;61686:190::-;;;;;;;;;;-1:-1:-1;61686:190:0;;;;;:::i;:::-;;:::i;30251:206::-;;;;;;;;;;-1:-1:-1;30251:206:0;;;;;:::i;:::-;;:::i;2711:103::-;;;;;;;;;;;;;:::i;59025:24::-;;;;;;;;;;-1:-1:-1;59025:24:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59025:24:0;;;;;;;16991:10:1;17028:15;;;17010:34;;17080:15;;;;17075:2;17060:18;;17053:43;17144:18;17132:31;;;17112:18;;;17105:59;;;;-1:-1:-1;;;;;17200:55:1;17195:2;17180:18;;17173:83;16968:3;16953:19;59025:24:0;16756:506:1;62046:455:0;;;;;;;;;;-1:-1:-1;62046:455:0;;;;;:::i;:::-;;:::i;58690:48::-;;;;;;;;;;;;;;;2060:87;;;;;;;;;;-1:-1:-1;2106:7:0;2133:6;-1:-1:-1;;;;;2133:6:0;2060:87;;63156:148;;;;;;;;;;-1:-1:-1;63156:148:0;;;;;:::i;:::-;;:::i;:::-;;;;16337:13:1;;-1:-1:-1;;;;;16333:62:1;16315:81;;16456:4;16444:17;;;16438:24;16464:18;16434:49;16412:20;;;16405:79;16542:17;;;16536:24;16529:32;16522:40;16500:20;;;16493:70;16303:2;16288:18;63156:148:0;16107:462:1;33164:104:0;;;;;;;;;;;;;:::i;59490:1064::-;;;;;;:::i;:::-;;:::i;60560:604::-;;;;;;:::i;:::-;;:::i;34774:287::-;;;;;;;;;;-1:-1:-1;34774:287:0;;;;;:::i;:::-;;:::i;63310:286::-;;;;;;;;;;-1:-1:-1;59477:1:0;63550:13;-1:-1:-1;;63550:31:0;63310:286;;35860:369;;;;;;;;;;-1:-1:-1;35860:369:0;;;;;:::i;:::-;;:::i;33339:318::-;;;;;;;;;;-1:-1:-1;33339:318:0;;;;;:::i;:::-;;:::i;63025:125::-;;;;;;;;;;-1:-1:-1;63025:125:0;;;;;:::i;:::-;;:::i;35132:164::-;;;;;;;;;;-1:-1:-1;35132:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35253:25:0;;;35229:4;35253:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35132:164;2969:201;;;;;;;;;;-1:-1:-1;2969:201:0;;;;;:::i;:::-;;:::i;58743:38::-;;;;;;;;;;;;;;;61882:133;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;;;;;;;;;61971:6:::1;:38:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;61971:38:0;;::::1;::::0;;;::::1;::::0;;61882:133::o;29882:305::-;29984:4;-1:-1:-1;;;;;;30021:40:0;;30036:25;30021:40;;:105;;-1:-1:-1;;;;;;;30078:48:0;;30093:33;30078:48;30021:105;:158;;;-1:-1:-1;25568:25:0;-1:-1:-1;;;;;;25553:40:0;;;30143:36;30001:178;29882:305;-1:-1:-1;;29882:305:0:o;32995:100::-;33049:13;33082:5;33075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32995:100;:::o;34498:204::-;34566:7;34591:16;34599:7;34591;:16::i;:::-;34586:64;;34616:34;;;;;;;;;;;;;;34586:64;-1:-1:-1;34670:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34670:24:0;;34498:204::o;34061:371::-;34134:13;34150:24;34166:7;34150:15;:24::i;:::-;34134:40;;34195:5;-1:-1:-1;;;;;34189:11:0;:2;-1:-1:-1;;;;;34189:11:0;;34185:48;;;34209:24;;;;;;;;;;;;;;34185:48;860:10;-1:-1:-1;;;;;34250:21:0;;;;;;:63;;-1:-1:-1;34276:37:0;34293:5;860:10;35132:164;:::i;34276:37::-;34275:38;34250:63;34246:138;;;34337:35;;;;;;;;;;;;;;34246:138;34396:28;34405:2;34409:7;34418:5;34396:8;:28::i;:::-;34123:309;34061:371;;:::o;61578:100::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;13594:356:1;2272:68:0;61649:6:::1;:23:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;61578:100::o;35363:170::-;35497:28;35507:4;35513:2;35517:7;35497:9;:28::i;62825:194::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;13594:356:1;2272:68:0;5346:1:::1;5944:7;;:19;;5936:63;;;::::0;-1:-1:-1;;;5936:63:0;;15949:2:1;5936:63:0::1;::::0;::::1;15931:21:1::0;15988:2;15968:18;;;15961:30;16027:33;16007:18;;;16000:61;16078:18;;5936:63:0::1;15747:355:1::0;5936:63:0::1;5346:1;6077:7;:18:::0;62921:49:::2;::::0;62903:12:::2;::::0;62921:10:::2;::::0;62944:21:::2;::::0;62903:12;62921:49;62903:12;62921:49;62944:21;62921:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62902:68;;;62985:7;62977:36;;;::::0;-1:-1:-1;;;62977:36:0;;14157:2:1;62977:36:0::2;::::0;::::2;14139:21:1::0;14196:2;14176:18;;;14169:30;14235:18;14215;;;14208:46;14271:18;;62977:36:0::2;13955:340:1::0;62977:36:0::2;-1:-1:-1::0;5302:1:0::1;6256:7;:22:::0;62825:194::o;35604:185::-;35742:39;35759:4;35765:2;35769:7;35742:39;;;;;;;;;;;;:16;:39::i;62706:113::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;13594:356:1;2272:68:0;62790:23:::1;:13;62806:7:::0;;62790:23:::1;:::i;32803:125::-:0;32867:7;32894:21;32907:7;32894:12;:21::i;:::-;:26;;32803:125;-1:-1:-1;;32803:125:0:o;61388:182::-;61478:4;61501:11;;;;;:30;;-1:-1:-1;61516:15:0;;;61501:30;:63;;;;;61554:10;61535:15;:29;;61501:63;61494:70;61388:182;-1:-1:-1;;;61388:182:0:o;61686:190::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;13594:356:1;2272:68:0;61791:6:::1;:41:::0;;-1:-1:-1;;61791:41:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;61839:22;:31;;-1:-1:-1;;61839:31:0::1;-1:-1:-1::0;;;;;61839:31:0;;::::1;::::0;;;::::1;::::0;;61686:190::o;30251:206::-;30315:7;-1:-1:-1;;;;;30339:19:0;;30335:60;;30367:28;;;;;;;;;;;;;;30335:60;-1:-1:-1;;;;;;30421:19:0;;;;;:12;:19;;;;;:27;;;;30251:206::o;2711:103::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;13594:356:1;2272:68:0;2776:30:::1;2803:1;2776:18;:30::i;:::-;2711:103::o:0;62046:455::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;13594:356:1;2272:68:0;29385:12;;59477:1;29369:13;62164::::1;::::0;62152:8;;29369:28;-1:-1:-1;;29369:46:0;62136:24:::1;;;;:::i;:::-;:41;;62120:114;;;::::0;-1:-1:-1;;;62120:114:0;;15204:2:1;62120:114:0::1;::::0;::::1;15186:21:1::0;15243:2;15223:18;;;15216:30;15282:34;15262:18;;;15255:62;15353:9;15333:18;;;15326:37;15380:19;;62120:114:0::1;15002:403:1::0;62120:114:0::1;62257:23;62268:12;62257:8:::0;:23:::1;:::i;:::-;:28:::0;62241:106:::1;;;::::0;-1:-1:-1;;;62241:106:0;;11871:2:1;62241:106:0::1;::::0;::::1;11853:21:1::0;11910:2;11890:18;;;11883:30;11949:34;11929:18;;;11922:62;12020:14;12000:18;;;11993:42;12052:19;;62241:106:0::1;11669:408:1::0;62241:106:0::1;62354:17;62374:23;62385:12;62374:8:::0;:23:::1;:::i;:::-;62354:43;;62409:9;62404:92;62428:9;62424:1;:13;62404:92;;;62453:35;62463:10;62475:12;62453:9;:35::i;:::-;62439:3:::0;::::1;::::0;::::1;:::i;:::-;;;;62404:92;;63156:148:::0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;63277:21:0;63290:7;63277:12;:21::i;33164:104::-;33220:13;33253:7;33246:14;;;;;:::i;59490:1064::-;59307:9;59320:10;59307:23;59299:66;;;;-1:-1:-1;;;59299:66:0;;12687:2:1;59299:66:0;;;12669:21:1;12726:2;12706:18;;;12699:30;12765:32;12745:18;;;12738:60;12815:18;;59299:66:0;12485:354:1;59299:66:0;59653:6:::1;:15:::0;::::1;::::0;;::::1;;::::0;59717:29:::1;;59772:39;59653:15:::0;59717:29;59772:8:::1;:39::i;:::-;59756:105;;;::::0;-1:-1:-1;;;59756:105:0;;11103:2:1;59756:105:0::1;::::0;::::1;11085:21:1::0;;;11122:18;;;11115:30;11181:34;11161:18;;;11154:62;11233:18;;59756:105:0::1;10901:356:1::0;59756:105:0::1;29385:12:::0;;59477:1;29369:13;59914:14:::1;::::0;59902:8;;29369:28;-1:-1:-1;;29369:46:0;59886:24:::1;;;;:::i;:::-;:42;;59870:145;;;::::0;-1:-1:-1;;;59870:145:0;;9914:2:1;59870:145:0::1;::::0;::::1;9896:21:1::0;9953:2;9933:18;;;9926:30;9992:34;9972:18;;;9965:62;10063:34;10043:18;;;10036:62;10135:7;10114:19;;;10107:36;10160:19;;59870:145:0::1;9712:473:1::0;59870:145:0::1;60079:1;60067:8;60040:24;60053:10;60040:12;:24::i;:::-;:35;;;;:::i;:::-;:40;;60024:96;;;::::0;-1:-1:-1;;;60024:96:0;;14853:2:1;60024:96:0::1;::::0;::::1;14835:21:1::0;14892:2;14872:18;;;14865:30;14931:24;14911:18;;;14904:52;14973:18;;60024:96:0::1;14651:346:1::0;60024:96:0::1;60129:17;60176:39;60204:10;60176:27;:39::i;:::-;60149:88;;;;;;;;:::i;:::-;;;;;;;;;;;;;60129:108;;60244:12;60259:34;60288:4;60259:28;:34::i;:::-;60244:49;;60300:14;60317:30;60331:4;60337:9;60317:13;:30::i;:::-;60384:22:::0;;60300:47;;-1:-1:-1;;;;;;60374:32:0;;::::1;60384:22:::0;::::1;60374:32;60356:79;;;::::0;-1:-1:-1;;;60356:79:0;;15612:2:1;60356:79:0::1;::::0;::::1;15594:21:1::0;15651:1;15631:18;;;15624:29;15689:11;15669:18;;;15662:39;15718:18;;60356:79:0::1;15410:332:1::0;60356:79:0::1;60444:17;60464:16;60472:8:::0;60464:5;:16:::1;:::i;:::-;60444:36;;60487:31;60497:10;60509:8;60487:9;:31::i;:::-;60525:23;60538:9;60525:12;:23::i;:::-;59622:932;;;;;;59490:1064:::0;;:::o;60560:604::-;59307:9;59320:10;59307:23;59299:66;;;;-1:-1:-1;;;59299:66:0;;12687:2:1;59299:66:0;;;12669:21:1;12726:2;12706:18;;;12699:30;12765:32;12745:18;;;12738:60;12815:18;;59299:66:0;12485:354:1;59299:66:0;60677:6:::1;:15:::0;;;::::1;;;::::0;60738:26;;::::1;;;60790:42;60677:15:::0;60738:26;60790:8:::1;:42::i;:::-;60774:98;;;::::0;-1:-1:-1;;;60774:98:0;;10752:2:1;60774:98:0::1;::::0;::::1;10734:21:1::0;10791:2;10771:18;;;10764:30;10830:24;10810:18;;;10803:52;10872:18;;60774:98:0::1;10550:346:1::0;60774:98:0::1;29385:12:::0;;59477:1;29369:13;60915:14:::1;::::0;60903:8;;29369:28;-1:-1:-1;;29369:46:0;60887:24:::1;;;;:::i;:::-;:42;;60879:73;;;::::0;-1:-1:-1;;;60879:73:0;;13449:2:1;60879:73:0::1;::::0;::::1;13431:21:1::0;13488:2;13468:18;;;13461:30;13527:20;13507:18;;;13500:48;13565:18;;60879:73:0::1;13247:342:1::0;60879:73:0::1;61014:23;61002:8;60975:24;60988:10;60975:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;60959:118;;;::::0;-1:-1:-1;;;60959:118:0;;14853:2:1;60959:118:0::1;::::0;::::1;14835:21:1::0;14892:2;14872:18;;;14865:30;14931:24;14911:18;;;14904:52;14973:18;;60959:118:0::1;14651:346:1::0;60959:118:0::1;61084:31;61094:10;61106:8;61084:9;:31::i;:::-;61122:36;61135:22;61149:8:::0;61135:11;:22:::1;:::i;:::-;61122:12;:36::i;34774:287::-:0;-1:-1:-1;;;;;34873:24:0;;860:10;34873:24;34869:54;;;34906:17;;;;;;;;;;;;;;34869:54;860:10;34936:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34936:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34936:53:0;;;;;;;;;;35005:48;;8680:41:1;;;34936:42:0;;860:10;35005:48;;8653:18:1;35005:48:0;;;;;;;34774:287;;:::o;35860:369::-;36027:28;36037:4;36043:2;36047:7;36027:9;:28::i;:::-;-1:-1:-1;;;;;36070:13:0;;15470:19;:23;;36070:76;;;;;36090:56;36121:4;36127:2;36131:7;36140:5;36090:30;:56::i;:::-;36089:57;36070:76;36066:156;;;36170:40;;-1:-1:-1;;;36170:40:0;;;;;;;;;;;36066:156;35860:369;;;;:::o;33339:318::-;33412:13;33443:16;33451:7;33443;:16::i;:::-;33438:59;;33468:29;;;;;;;;;;;;;;33438:59;33510:21;33534:10;:8;:10::i;:::-;33510:34;;33568:7;33562:21;33587:1;33562:26;;:87;;;;;;;;;;;;;;;;;33615:7;33624:18;:7;:16;:18::i;:::-;33598:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33555:94;33339:318;-1:-1:-1;;;33339:318:0:o;63025:125::-;-1:-1:-1;;;;;30635:19:0;;63098:7;30635:19;;;:12;:19;;;;;:32;;;;;;63124:20;30539:137;2969:201;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;13796:2:1;2272:68:0;;;13778:21:1;;;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13926:18;;2272:68:0;13594:356:1;2272:68:0;-1:-1:-1;;;;;3058:22:0;::::1;3050:73;;;::::0;-1:-1:-1;;;3050:73:0;;11464:2:1;3050:73:0::1;::::0;::::1;11446:21:1::0;11503:2;11483:18;;;11476:30;11542:34;11522:18;;;11515:62;11613:8;11593:18;;;11586:36;11639:19;;3050:73:0::1;11262:402:1::0;3050:73:0::1;3134:28;3153:8;3134:18;:28::i;:::-;2969:201:::0;:::o;36484:187::-;36541:4;36584:7;59477:1;36565:26;;:53;;;;;36605:13;;36595:7;:23;36565:53;:98;;;;-1:-1:-1;;36636:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36636:27:0;;;;36635:28;;36484:187::o;44654:196::-;44769:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;44769:29:0;-1:-1:-1;;;;;44769:29:0;;;;;;;;;44814:28;;44769:24;;44814:28;;;;;;;44654:196;;;:::o;39597:2130::-;39712:35;39750:21;39763:7;39750:12;:21::i;:::-;39712:59;;39810:4;-1:-1:-1;;;;;39788:26:0;:13;:18;;;-1:-1:-1;;;;;39788:26:0;;39784:67;;39823:28;;;;;;;;;;;;;;39784:67;39864:22;860:10;-1:-1:-1;;;;;39890:20:0;;;;:73;;-1:-1:-1;39927:36:0;39944:4;860:10;35132:164;:::i;39927:36::-;39890:126;;;-1:-1:-1;860:10:0;39980:20;39992:7;39980:11;:20::i;:::-;-1:-1:-1;;;;;39980:36:0;;39890:126;39864:153;;40035:17;40030:66;;40061:35;;;;;;;;;;;;;;40030:66;-1:-1:-1;;;;;40111:16:0;;40107:52;;40136:23;;;;;;;;;;;;;;40107:52;40280:35;40297:1;40301:7;40310:4;40280:8;:35::i;:::-;-1:-1:-1;;;;;40611:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40611:31:0;;;;;;;-1:-1:-1;;40611:31:0;;;;;;;40657:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40657:29:0;;;;;;;;;;;40737:20;;;:11;:20;;;;;;40772:18;;-1:-1:-1;;;;;;40805:49:0;;;;-1:-1:-1;;;40838:15:0;40805:49;;;;;;;;;;41128:11;;41188:24;;;;;41231:13;;40737:20;;41188:24;;41231:13;41227:384;;41441:13;;41426:11;:28;41422:174;;41479:20;;41548:28;;;;41522:54;;-1:-1:-1;;;41522:54:0;-1:-1:-1;;;;;;41522:54:0;;;-1:-1:-1;;;;;41479:20:0;;41522:54;;;;41422:174;40586:1036;;;41658:7;41654:2;-1:-1:-1;;;;;41639:27:0;41648:4;-1:-1:-1;;;;;41639:27:0;;;;;;;;;;;41677:42;39701:2026;;39597:2130;;;:::o;31632:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31743:7:0;;59477:1;31792:23;;:47;;;;;31826:13;;31819:4;:20;31792:47;31788:886;;;31860:31;31894:17;;;:11;:17;;;;;;;;;31860:51;;;;;;;;;-1:-1:-1;;;;;31860:51:0;;;;-1:-1:-1;;;31860:51:0;;;;;;;;;;;-1:-1:-1;;;31860:51:0;;;;;;;;;;;;;;31930:729;;31980:14;;-1:-1:-1;;;;;31980:28:0;;31976:101;;32044:9;31632:1109;-1:-1:-1;;;31632:1109:0:o;31976:101::-;-1:-1:-1;;;32419:6:0;32464:17;;;;:11;:17;;;;;;;;;32452:29;;;;;;;;;-1:-1:-1;;;;;32452:29:0;;;;;-1:-1:-1;;;32452:29:0;;;;;;;;;;;-1:-1:-1;;;32452:29:0;;;;;;;;;;;;;32512:28;32508:109;;32580:9;31632:1109;-1:-1:-1;;;31632:1109:0:o;32508:109::-;32379:261;;;31841:833;31788:886;32702:31;;;;;;;;;;;;;;3330:191;3404:16;3423:6;;-1:-1:-1;;;;;3440:17:0;;;-1:-1:-1;;3440:17:0;;;;;;3473:40;;3423:6;;;;;;;3473:40;;3404:16;3473:40;3393:128;3330:191;:::o;36679:104::-;36748:27;36758:2;36762:8;36748:27;;;;;;;;;;;;:9;:27::i;:::-;36679:104;;:::o;57395:747::-;57498:13;;;57508:2;57498:13;;;57455;57498;;;;;;57481:14;;57498:13;;;;;;;;;;;-1:-1:-1;57498:13:0;57481:30;;57522:15;57548:4;57522:31;;-1:-1:-1;;;57564:1:0;57566;57564:4;;;;;;;;:::i;:::-;;;;:10;-1:-1:-1;;;;;57564:10:0;;;;;;;;;57585;:1;57587;57585:4;;;;;;;;:::i;:::-;;;;:10;-1:-1:-1;;;;;57585:10:0;;;;;;;;;57611:9;57606:502;57630:6;57626:1;:10;57606:502;;;57771:7;57804:6;57809:1;57804:2;:6;:::i;:::-;57799:12;;:1;:12;:::i;:::-;-1:-1:-1;;;;;57787:25:0;;;;;-1:-1:-1;57906:6:0;57911:1;57906:6;;;;57895:8;58007:13;58012:7;;;57787:25;58007:13;:::i;:::-;57996:24;;58050:8;58055:2;58050:4;:8::i;:::-;58035:1;58037:5;58041:1;58037;:5;:::i;:::-;:9;;58045:1;58037:9;:::i;:::-;58035:12;;;;;;;;:::i;:::-;;;;:23;-1:-1:-1;;;;;58035:23:0;;;;;;;;;58088:8;58093:2;58088:4;:8::i;:::-;58073:1;58075:5;58079:1;58075;:5;:::i;:::-;:9;;58083:1;58075:9;:::i;:::-;58073:12;;;;;;;;:::i;:::-;;;;:23;-1:-1:-1;;;;;58073:23:0;;;;;;;;;57643:465;;;57638:3;;;;;:::i;:::-;;;;57606:502;;;-1:-1:-1;58132:1:0;;57395:747;-1:-1:-1;;;57395:747:0:o;56427:198::-;56498:7;56586:26;56603:1;:8;56586:16;:26::i;:::-;56614:1;56535:81;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56525:92;;;;;;56518:99;;56427:198;;;:::o;52061:231::-;52139:7;52160:17;52179:18;52201:27;52212:4;52218:9;52201:10;:27::i;:::-;52159:69;;;;52239:18;52251:5;52239:11;:18::i;:::-;-1:-1:-1;52275:9:0;52061:231;-1:-1:-1;;;52061:231:0:o;61170:212::-;61251:5;61238:9;:18;;61230:53;;;;-1:-1:-1;;;61230:53:0;;14502:2:1;61230:53:0;;;14484:21:1;14541:2;14521:18;;;14514:30;14580:24;14560:18;;;14553:52;14622:18;;61230:53:0;14300:346:1;61230:53:0;61306:5;61294:9;:17;61290:87;;;61330:10;61322:47;61351:17;61363:5;61351:9;:17;:::i;:::-;61322:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45342:667;45526:72;;-1:-1:-1;;;45526:72:0;;45505:4;;-1:-1:-1;;;;;45526:36:0;;;;;:72;;860:10;;45577:4;;45583:7;;45592:5;;45526:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45526:72:0;;;;;;;;-1:-1:-1;;45526:72:0;;;;;;;;;;;;:::i;:::-;;;45522:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45760:13:0;;45756:235;;45806:40;;-1:-1:-1;;;45806:40:0;;;;;;;;;;;45756:235;45949:6;45943:13;45934:6;45930:2;45926:15;45919:38;45522:480;-1:-1:-1;;;;;;45645:55:0;-1:-1:-1;;;45645:55:0;;-1:-1:-1;45522:480:0;45342:667;;;;;;:::o;62564:136::-;62649:13;62681;62674:20;;;;;:::i;22816:723::-;22872:13;23093:10;23089:53;;-1:-1:-1;;23120:10:0;;;;;;;;;;;;-1:-1:-1;;;23120:10:0;;;;;22816:723::o;23089:53::-;23167:5;23152:12;23208:78;23215:9;;23208:78;;23241:8;;;;:::i;:::-;;-1:-1:-1;23264:10:0;;-1:-1:-1;23272:2:0;23264:10;;:::i;:::-;;;23208:78;;;23296:19;23328:6;23318:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23318:17:0;;23296:39;;23346:154;23353:10;;23346:154;;23380:11;23390:1;23380:11;;:::i;:::-;;-1:-1:-1;23449:10:0;23457:2;23449:5;:10;:::i;:::-;23436:24;;:2;:24;:::i;:::-;23423:39;;23406:6;23413;23406:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;23406:56:0;;;;;;;;-1:-1:-1;23477:11:0;23486:2;23477:11;;:::i;:::-;;;23346:154;;37146:163;37269:32;37275:2;37279:8;37289:5;37296:4;37269:5;:32::i;58349:191::-;58394:8;58423:2;58419:1;:6;;;58415:118;;;58456:8;:1;58460:4;58456:8;:::i;:::-;58449:16;;;58349:191;-1:-1:-1;;58349:191:0:o;58415:118::-;58512:8;:1;58516:4;58512:8;:::i;58415:118::-;58349:191;;;:::o;49951:1308::-;50032:7;50041:12;50266:9;:16;50286:2;50266:22;50262:990;;;50562:4;50547:20;;50541:27;50612:4;50597:20;;50591:27;50670:4;50655:20;;50649:27;50305:9;50641:36;50713:25;50724:4;50641:36;50541:27;50591;50713:10;:25::i;:::-;50706:32;;;;;;;;;50262:990;50760:9;:16;50780:2;50760:22;50756:496;;;51035:4;51020:20;;51014:27;51086:4;51071:20;;51065:27;51128:23;51139:4;51014:27;51065;51128:10;:23::i;:::-;51121:30;;;;;;;;50756:496;-1:-1:-1;51200:1:0;;-1:-1:-1;51204:35:0;50756:496;49951:1308;;;;;:::o;48222:643::-;48300:20;48291:5;:29;;;;;;;;:::i;:::-;;48287:571;;;48222:643;:::o;48287:571::-;48398:29;48389:5;:38;;;;;;;;:::i;:::-;;48385:473;;;48444:34;;-1:-1:-1;;;48444:34:0;;9561:2:1;48444:34:0;;;9543:21:1;9600:2;9580:18;;;9573:30;9639:26;9619:18;;;9612:54;9683:18;;48444:34:0;9359:348:1;48385:473:0;48509:35;48500:5;:44;;;;;;;;:::i;:::-;;48496:362;;;48561:41;;-1:-1:-1;;;48561:41:0;;10392:2:1;48561:41:0;;;10374:21:1;10431:2;10411:18;;;10404:30;10470:33;10450:18;;;10443:61;10521:18;;48561:41:0;10190:355:1;48496:362:0;48633:30;48624:5;:39;;;;;;;;:::i;:::-;;48620:238;;;48680:44;;-1:-1:-1;;;48680:44:0;;12284:2:1;48680:44:0;;;12266:21:1;12323:2;12303:18;;;12296:30;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:18:1;;;12406:32;12455:19;;48680:44:0;12082:398:1;48620:238:0;48755:30;48746:5;:39;;;;;;;;:::i;:::-;;48742:116;;;48802:44;;-1:-1:-1;;;48802:44:0;;13046:2:1;48802:44:0;;;13028:21:1;13085:2;13065:18;;;13058:30;13124:34;13104:18;;;13097:62;-1:-1:-1;;;13175:18:1;;;13168:32;13217:19;;48802:44:0;12844:398:1;37568:1775:0;37730:13;;-1:-1:-1;;;;;37758:16:0;;37754:48;;37783:19;;;;;;;;;;;;;;37754:48;37817:13;37813:44;;37839:18;;;;;;;;;;;;;;37813:44;-1:-1:-1;;;;;38208:16:0;;;;;;:12;:16;;;;;;;;:44;;38267:49;;;38208:44;;;;;;;;38267:49;;;;-1:-1:-1;;38208:44:0;;;;;;38267:49;;;;;;;;;;;;;;;;38333:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38383:66:0;;;;-1:-1:-1;;;38433:15:0;38383:66;;;;;;;;;;38333:25;38530:23;;;38574:4;:23;;;;-1:-1:-1;;;;;;38582:13:0;;15470:19;:23;;38582:15;38570:641;;;38618:314;38649:38;;38674:12;;-1:-1:-1;;;;;38649:38:0;;;38666:1;;38649:38;;38666:1;;38649:38;38715:69;38754:1;38758:2;38762:14;;;;;;38778:5;38715:30;:69::i;:::-;38710:174;;38820:40;;-1:-1:-1;;;38820:40:0;;;;;;;;;;;38710:174;38927:3;38911:12;:19;;38618:314;;39013:12;38996:13;;:29;38992:43;;39027:8;;;38992:43;38570:641;;;39076:120;39107:40;;39132:14;;;;;-1:-1:-1;;;;;39107:40:0;;;39124:1;;39107:40;;39124:1;;39107:40;39191:3;39175:12;:19;;39076:120;;38570:641;-1:-1:-1;39225:13:0;:28;39275:60;35860:369;53513:1632;53644:7;;54578:66;54565:79;;54561:163;;;-1:-1:-1;54677:1:0;;-1:-1:-1;54681:30:0;54661:51;;54561:163;54738:1;:7;;54743:2;54738:7;;:18;;;;;54749:1;:7;;54754:2;54749:7;;54738:18;54734:102;;;-1:-1:-1;54789:1:0;;-1:-1:-1;54793:30:0;54773:51;;54734:102;54950:24;;;54933:14;54950:24;;;;;;;;;8959:25:1;;;9032:4;9020:17;;9000:18;;;8993:45;;;;9054:18;;;9047:34;;;9097:18;;;9090:34;;;54950:24:0;;8931:19:1;;54950:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54950:24:0;;-1:-1:-1;;54950:24:0;;;-1:-1:-1;;;;;;;54989:20:0;;54985:103;;55042:1;55046:29;55026:50;;;;;;;54985:103;55108:6;-1:-1:-1;55116:20:0;;-1:-1:-1;53513:1632:0;;;;;;;;:::o;52555:344::-;52669:7;;52728:66;52715:80;;52669:7;52822:25;52838:3;52823:18;;;52845:2;52822:25;:::i;:::-;52806:42;;52866:25;52877:4;52883:1;52886;52889;52866:10;:25::i;:::-;52859:32;;;;;;52555:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;215:718;257:5;310:3;303:4;295:6;291:17;287:27;277:55;;328:1;325;318:12;277:55;364:6;351:20;390:18;427:2;423;420:10;417:36;;;433:18;;:::i;:::-;508:2;502:9;476:2;562:13;;-1:-1:-1;;558:22:1;;;582:2;554:31;550:40;538:53;;;606:18;;;626:22;;;603:46;600:72;;;652:18;;:::i;:::-;692:10;688:2;681:22;727:2;719:6;712:18;773:3;766:4;761:2;753:6;749:15;745:26;742:35;739:55;;;790:1;787;780:12;739:55;854:2;847:4;839:6;835:17;828:4;820:6;816:17;803:54;901:1;894:4;889:2;881:6;877:15;873:26;866:37;921:6;912:15;;;;;;215:718;;;;:::o;938:163::-;1005:20;;1065:10;1054:22;;1044:33;;1034:61;;1091:1;1088;1081:12;1106:186;1165:6;1218:2;1206:9;1197:7;1193:23;1189:32;1186:52;;;1234:1;1231;1224:12;1186:52;1257:29;1276:9;1257:29;:::i;1297:260::-;1365:6;1373;1426:2;1414:9;1405:7;1401:23;1397:32;1394:52;;;1442:1;1439;1432:12;1394:52;1465:29;1484:9;1465:29;:::i;:::-;1455:39;;1513:38;1547:2;1536:9;1532:18;1513:38;:::i;:::-;1503:48;;1297:260;;;;;:::o;1562:328::-;1639:6;1647;1655;1708:2;1696:9;1687:7;1683:23;1679:32;1676:52;;;1724:1;1721;1714:12;1676:52;1747:29;1766:9;1747:29;:::i;:::-;1737:39;;1795:38;1829:2;1818:9;1814:18;1795:38;:::i;:::-;1785:48;;1880:2;1869:9;1865:18;1852:32;1842:42;;1562:328;;;;;:::o;1895:537::-;1990:6;1998;2006;2014;2067:3;2055:9;2046:7;2042:23;2038:33;2035:53;;;2084:1;2081;2074:12;2035:53;2107:29;2126:9;2107:29;:::i;:::-;2097:39;;2155:38;2189:2;2178:9;2174:18;2155:38;:::i;:::-;2145:48;;2240:2;2229:9;2225:18;2212:32;2202:42;;2295:2;2284:9;2280:18;2267:32;2322:18;2314:6;2311:30;2308:50;;;2354:1;2351;2344:12;2308:50;2377:49;2418:7;2409:6;2398:9;2394:22;2377:49;:::i;:::-;2367:59;;;1895:537;;;;;;;:::o;2437:347::-;2502:6;2510;2563:2;2551:9;2542:7;2538:23;2534:32;2531:52;;;2579:1;2576;2569:12;2531:52;2602:29;2621:9;2602:29;:::i;:::-;2592:39;;2681:2;2670:9;2666:18;2653:32;2728:5;2721:13;2714:21;2707:5;2704:32;2694:60;;2750:1;2747;2740:12;2694:60;2773:5;2763:15;;;2437:347;;;;;:::o;2789:254::-;2857:6;2865;2918:2;2906:9;2897:7;2893:23;2889:32;2886:52;;;2934:1;2931;2924:12;2886:52;2957:29;2976:9;2957:29;:::i;:::-;2947:39;3033:2;3018:18;;;;3005:32;;-1:-1:-1;;;2789:254:1:o;3048:245::-;3106:6;3159:2;3147:9;3138:7;3134:23;3130:32;3127:52;;;3175:1;3172;3165:12;3127:52;3214:9;3201:23;3233:30;3257:5;3233:30;:::i;3298:249::-;3367:6;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3468:9;3462:16;3487:30;3511:5;3487:30;:::i;3552:592::-;3623:6;3631;3684:2;3672:9;3663:7;3659:23;3655:32;3652:52;;;3700:1;3697;3690:12;3652:52;3740:9;3727:23;3769:18;3810:2;3802:6;3799:14;3796:34;;;3826:1;3823;3816:12;3796:34;3864:6;3853:9;3849:22;3839:32;;3909:7;3902:4;3898:2;3894:13;3890:27;3880:55;;3931:1;3928;3921:12;3880:55;3971:2;3958:16;3997:2;3989:6;3986:14;3983:34;;;4013:1;4010;4003:12;3983:34;4058:7;4053:2;4044:6;4040:2;4036:15;4032:24;4029:37;4026:57;;;4079:1;4076;4069:12;4026:57;4110:2;4102:11;;;;;4132:6;;-1:-1:-1;3552:592:1;;-1:-1:-1;;;;3552:592:1:o;4149:180::-;4208:6;4261:2;4249:9;4240:7;4236:23;4232:32;4229:52;;;4277:1;4274;4267:12;4229:52;-1:-1:-1;4300:23:1;;4149:180;-1:-1:-1;4149:180:1:o;4334:388::-;4411:6;4419;4472:2;4460:9;4451:7;4447:23;4443:32;4440:52;;;4488:1;4485;4478:12;4440:52;4524:9;4511:23;4501:33;;4585:2;4574:9;4570:18;4557:32;4612:18;4604:6;4601:30;4598:50;;;4644:1;4641;4634:12;4598:50;4667:49;4708:7;4699:6;4688:9;4684:22;4667:49;:::i;:::-;4657:59;;;4334:388;;;;;:::o;4727:248::-;4795:6;4803;4856:2;4844:9;4835:7;4831:23;4827:32;4824:52;;;4872:1;4869;4862:12;4824:52;-1:-1:-1;;4895:23:1;;;4965:2;4950:18;;;4937:32;;-1:-1:-1;4727:248:1:o;4980:184::-;5038:6;5091:2;5079:9;5070:7;5066:23;5062:32;5059:52;;;5107:1;5104;5097:12;5059:52;5130:28;5148:9;5130:28;:::i;5169:258::-;5236:6;5244;5297:2;5285:9;5276:7;5272:23;5268:32;5265:52;;;5313:1;5310;5303:12;5265:52;5336:28;5354:9;5336:28;:::i;5432:284::-;5490:6;5543:2;5531:9;5522:7;5518:23;5514:32;5511:52;;;5559:1;5556;5549:12;5511:52;5598:9;5585:23;5648:18;5641:5;5637:30;5630:5;5627:41;5617:69;;5682:1;5679;5672:12;5721:257;5762:3;5800:5;5794:12;5827:6;5822:3;5815:19;5843:63;5899:6;5892:4;5887:3;5883:14;5876:4;5869:5;5865:16;5843:63;:::i;:::-;5960:2;5939:15;-1:-1:-1;;5935:29:1;5926:39;;;;5967:4;5922:50;;5721:257;-1:-1:-1;;5721:257:1:o;5983:470::-;6162:3;6200:6;6194:13;6216:53;6262:6;6257:3;6250:4;6242:6;6238:17;6216:53;:::i;:::-;6332:13;;6291:16;;;;6354:57;6332:13;6291:16;6388:4;6376:17;;6354:57;:::i;:::-;6427:20;;5983:470;-1:-1:-1;;;;5983:470:1:o;6458:440::-;6690:3;6728:6;6722:13;6744:53;6790:6;6785:3;6778:4;6770:6;6766:17;6744:53;:::i;:::-;6858:4;6819:16;;6844:19;;;-1:-1:-1;6890:1:1;6879:13;;6458:440;-1:-1:-1;6458:440:1:o;6903:675::-;7211:66;7206:3;7199:79;7181:3;7307:6;7301:13;7323:62;7378:6;7373:2;7368:3;7364:12;7357:4;7349:6;7345:17;7323:62;:::i;:::-;7445:13;;7404:16;;;;7467:63;7445:13;7516:2;7508:11;;7501:4;7489:17;;7467:63;:::i;:::-;7550:17;7569:2;7546:26;;6903:675;-1:-1:-1;;;;6903:675:1:o;8024:511::-;8218:4;-1:-1:-1;;;;;8328:2:1;8320:6;8316:15;8305:9;8298:34;8380:2;8372:6;8368:15;8363:2;8352:9;8348:18;8341:43;;8420:6;8415:2;8404:9;8400:18;8393:34;8463:3;8458:2;8447:9;8443:18;8436:31;8484:45;8524:3;8513:9;8509:19;8501:6;8484:45;:::i;:::-;8476:53;8024:511;-1:-1:-1;;;;;;8024:511:1:o;9135:219::-;9284:2;9273:9;9266:21;9247:4;9304:44;9344:2;9333:9;9329:18;9321:6;9304:44;:::i;17267:128::-;17307:3;17338:1;17334:6;17331:1;17328:13;17325:39;;;17344:18;;:::i;:::-;-1:-1:-1;17380:9:1;;17267:128::o;17400:204::-;17438:3;17474:4;17471:1;17467:12;17506:4;17503:1;17499:12;17541:3;17535:4;17531:14;17526:3;17523:23;17520:49;;;17549:18;;:::i;:::-;17585:13;;17400:204;-1:-1:-1;;;17400:204:1:o;17609:120::-;17649:1;17675;17665:35;;17680:18;;:::i;:::-;-1:-1:-1;17714:9:1;;17609:120::o;17734:168::-;17774:7;17840:1;17836;17832:6;17828:14;17825:1;17822:21;17817:1;17810:9;17803:17;17799:45;17796:71;;;17847:18;;:::i;:::-;-1:-1:-1;17887:9:1;;17734:168::o;17907:125::-;17947:4;17975:1;17972;17969:8;17966:34;;;17980:18;;:::i;:::-;-1:-1:-1;18017:9:1;;17907:125::o;18037:195::-;18075:4;18112;18109:1;18105:12;18144:4;18141:1;18137:12;18169:3;18164;18161:12;18158:38;;;18176:18;;:::i;:::-;18213:13;;;18037:195;-1:-1:-1;;;18037:195:1:o;18237:258::-;18309:1;18319:113;18333:6;18330:1;18327:13;18319:113;;;18409:11;;;18403:18;18390:11;;;18383:39;18355:2;18348:10;18319:113;;;18450:6;18447:1;18444:13;18441:48;;;-1:-1:-1;;18485:1:1;18467:16;;18460:27;18237:258::o;18500:437::-;18579:1;18575:12;;;;18622;;;18643:61;;18697:4;18689:6;18685:17;18675:27;;18643:61;18750:2;18742:6;18739:14;18719:18;18716:38;18713:218;;;-1:-1:-1;;;18784:1:1;18777:88;18888:4;18885:1;18878:15;18916:4;18913:1;18906:15;18713:218;;18500:437;;;:::o;18942:135::-;18981:3;-1:-1:-1;;19002:17:1;;18999:43;;;19022:18;;:::i;:::-;-1:-1:-1;19069:1:1;19058:13;;18942:135::o;19082:112::-;19114:1;19140;19130:35;;19145:18;;:::i;:::-;-1:-1:-1;19179:9:1;;19082:112::o;19199:184::-;-1:-1:-1;;;19248:1:1;19241:88;19348:4;19345:1;19338:15;19372:4;19369:1;19362:15;19388:184;-1:-1:-1;;;19437:1:1;19430:88;19537:4;19534:1;19527:15;19561:4;19558:1;19551:15;19577:184;-1:-1:-1;;;19626:1:1;19619:88;19726:4;19723:1;19716:15;19750:4;19747:1;19740:15;19766:184;-1:-1:-1;;;19815:1:1;19808:88;19915:4;19912:1;19905:15;19939:4;19936:1;19929:15;19955:184;-1:-1:-1;;;20004:1:1;19997:88;20104:4;20101:1;20094:15;20128:4;20125:1;20118:15;20144:177;-1:-1:-1;;;;;;20222:5:1;20218:78;20211:5;20208:89;20198:117;;20311:1;20308;20301:12

Swarm Source

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