ETH Price: $2,617.88 (+0.73%)

Token

SACREDNFT (SACREDNFT)
 

Overview

Max Total Supply

296 SACREDNFT

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
pio.eth
Balance
1 SACREDNFT
0xb39F3b058148144572c79EBe24b17ba405cE7D9d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LIVE Mint: https://sacrednft.io/ Sacred is a series of hand-illustrated NFTs. Your Sacred Avatar is your spiritual Talisman in the blockchain, here to encode a higher frequency into your life and the collective!

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x87e9f34f...dE367a2a5
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
OptimizedMinterAdvancedAuth

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// 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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

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

// 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 contracts/ERC721A/IERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File contracts/ERC721A/IERC721AQueryable.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds)
        external
        view
        returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner)
        external
        view
        returns (uint256[] memory);
}

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

// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// 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/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/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 contracts/ERC721A/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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)
            if (!isApprovedForAll(owner, _msgSender())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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())
            if (!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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.
        delete _tokenApprovals[tokenId];

        // 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 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.
        delete _tokenApprovals[tokenId];

        // 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 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 contracts/ERC721A/ERC721AQueryable.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId)
        public
        view
        override
        returns (TokenOwnership memory)
    {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds)
        external
        view
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](
                tokenIdsLength
            );
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (
                uint256 i = start;
                i != stop && tokenIdsIdx != tokenIdsMaxLength;
                ++i
            ) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner)
        external
        view
        override
        returns (uint256[] memory)
    {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (
                uint256 i = _startTokenId();
                tokenIdsIdx != tokenIdsLength;
                ++i
            ) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

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

// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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 contracts/optimizedMinterAdvancedAuth.sol

pragma solidity 0.8.7;

//import ERC721A version of ERC721Enumerable
//ERC721A is much more gas optimised than ERC721Enumerable
//import Merkle Tree Verification library
//This is used for verifying if a callers proof is valid
//import ReentrancyGuard
//This is used to help prevent reentrancy attacks
//We inherit the ERC721AQueryable & ReentrancyGuard contracts
contract OptimizedMinterAdvancedAuth is ERC721AQueryable, ReentrancyGuard {
    //Stores the address of the admin
    //This variable is private because it is not needed to be retreived outside this contract
    address private admin;

    //Stores the prices in wei
    //These variables are public because they will need to be retreived outside this contract
    uint256 public normalPrice;
    uint256 public whitelistPrice;

    //Stores the max amount of tokens that can be minted for each mint
    //These variables are private because they do not needed to be retreived outside this contract
    uint16 private whitelistLimit;
    uint16 private totalLimit;

    //The root hash of our Merkle Tree
    //This variable is private because it is not needed to be retreived outside this contract
    bytes32 private merkleRoot;

    //Stores whether the whitelist mint is active or not
    //This variable is private because it is not needed to be retreived outside this contract
    bool private whitelistActive;

    //Stores the amount a given user has minted
    mapping(address => uint8) private numMintedByUser;

    //Stores a string of the base URI
    //This variable is private because it is not needed to be retreived outside this contract directly
    string private baseURI;

    //Stores whether minting is paused
    //This variable is public because it will need to be retreived outside this contract
    bool public paused;

    //Stores the amount that the admin has minted
    //This variable is private because it is not neeeded to be reteived outside of this contract
    uint16 private adminMintCount;

    //Stores whether a address is approved to mint more than the limit
    //This variable is private because it is not neeeded to be reteived outside of this contract
    mapping(address => bool) private approvedWallets;

    //Params
    //normPrice => The normal price that a NFT should be minted at
    //wlPrice => The whitelist price that a whitelist NFT should be minted at
    //name => The name that will show for the collection on etherscan & opensea e.g Bitcoin
    //symbol => The symbol that will be shown on etherscan & in wallet e.g BTC
    //initBaseURI => The initial base URI that should look something like
    //https://gateway.pinata.cloud/ipfs/{CID} if using pinata
    //https://ipfs.io/ipfs/{CID} if using IPFS
    //ERC721A(name,symbol) => This is us defining the construction of the ERC721A contract & passing in it's required parameters
    constructor(
        uint256 normPrice,
        uint256 wlPrice,
        string memory name,
        string memory symbol,
        string memory initBaseURI,
        address development
    ) ERC721A(name, symbol) {
        //Setting whitelist to active
        whitelistActive = true;

        //Setting the limit of mints for whitelist minting
        whitelistLimit = 3333; //3333 is the amount for mainnet

        //Setting the total limit of mints
        totalLimit = 9999; //9999 is the amount for mainnet

        //Setting the price to mint a whitelist NFT
        whitelistPrice = wlPrice;

        //Setting the price to mint a full price NFT
        normalPrice = normPrice;

        //Setting the admin to the deployer of the contract
        admin = msg.sender;

        //Setting the baseURI
        baseURI = initBaseURI;

        //Minting 50 NFTs to the development team
        _safeMint(development, 50);

        //Set the admins mint count to 50
        adminMintCount = 50;

        //Set paused to true
        paused = true;
    }

    //Modifiers are repeatable pieces of code that can be attached to multiple functions
    //This modifier is to check is a caller is the admin of the contract
    modifier onlyAdmin() {
        //Check that the caller of the function is the admin
        require(msg.sender == admin, "ERR:NA"); //NA => Not Admin

        //This is here to signify that we want the above piece of code to run before the code in the function this modifier
        //is attached to
        _;
    }

    //This modifier is to check that minting is not paused
    modifier notPaused() {
        //Check that the the contract is not paused
        require(!paused, "ERR:CP"); //CP => Currently Paused
        _;
    }

    //This modifier is to verify a signature & hashed message
    //_hashedMessage => keccak256(message)
    //_v, _r & _s are seperate parts of the signature
    modifier onlyApproved(
        bytes32 _hashedMessage,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) {
        //Check that the parameters verify successfully
        require(VerifyMessage(_hashedMessage, _v, _r, _s), "ERR:NA"); //Na => Not Approved
        _;
    }

    //--------------Only the Admin of this contract can call the functions below ------------//

    //Change the admin on this contract
    function changeAdmin(address _new) external onlyAdmin {
        //Set the new admin
        admin = _new;
    }

    //Give up admin control over the minter
    function relinquishControl() external onlyAdmin {
        require(totalSupply() == 9999, "ERR:NR"); //NR => Not Ready
        delete admin;
    }

    //Change the merkle root in this contract
    function setMerkleRoot(bytes32 root) external onlyAdmin {
        //Set the new merkleRoot
        merkleRoot = root;
    }

    //Enable the normal mint
    function startNormalMint() external onlyAdmin {
        //Set the whitelistActive variable to false
        whitelistActive = false;
    }

    //Change the Base URI
    function setBaseURI(string memory base) external onlyAdmin {
        //Set the Base URI
        baseURI = base;
    }

    //Change the pause variable
    function pause(bool state) external onlyAdmin {
        //Set the new state of the paused variable
        paused = state;
    }

    //Add a wallet to the approved wallets list
    function addWallet(address _new) external onlyAdmin {
        approvedWallets[_new] = true;
    }

    //Remove a wallet from the approved wallets list
    //Here we delete the variable being stored which refunds gas
    function removeWallet(address _toRemove) external onlyAdmin {
        delete approvedWallets[_toRemove];
    }

    //--------------OnlyAdmin can call the above functions ------------//

    //--------------Only addresses calling with a signed message from the Admin can call the functions below ------------//

    //This function is called to change the admin of the contract with signed permission to do so
    //Params
    //_new => The address to be set as the admin
    //_hashedMessage => A message that has been passed through the keccak256 algorithm
    //_v, _r & _s are pieces of the signature
    //onlyApproved(_hashedMessage, _v, _r, _s) => Calling of the modifier to verify the signature & message
    function changeAdminWithPermission(
        address _new,
        bytes32 _hashedMessage,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) external onlyApproved(_hashedMessage, _v, _r, _s) {
        //Set the new admin
        admin = _new;
    }

    //This function is called to change the merkle root used to verify if an address is whitelisted
    //Params
    //root => The new merkle root to be set
    //_hashedMessage => A message that has been passed through the keccak256 algorithm
    //_v, _r & _s are pieces of the signature
    //onlyApproved(_hashedMessage, _v, _r, _s) => Calling of the modifier to verify the signature & message
    function setMerkleRootWithPermission(
        bytes32 root,
        bytes32 _hashedMessage,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) external onlyApproved(_hashedMessage, _v, _r, _s) {
        //Set the new merkle root
        merkleRoot = root;
    }

    //This function is called to start the normal mint
    //_hashedMessage => A message that has been passed through the keccak256 algorithm
    //_v, _r & _s are pieces of the signature
    //onlyApproved(_hashedMessage, _v, _r, _s) => Calling of the modifier to verify the signature & message
    function startNormalMintWithPermission(
        bytes32 _hashedMessage,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) external onlyApproved(_hashedMessage, _v, _r, _s) {
        //Set the whitelistActive bool to false
        whitelistActive = false;
    }

    //This function is called to change the Base URI in this contract
    //Params
    //base => The new baseURI to be set
    //_hashedMessage => A message that has been passed through the keccak256 algorithm
    //_v, _r & _s are pieces of the signature
    //onlyApproved(_hashedMessage, _v, _r, _s) => Calling of the modifier to verify the signature & message
    function setBaseURIWithPermission(
        string memory base,
        bytes32 _hashedMessage,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) external onlyApproved(_hashedMessage, _v, _r, _s) {
        //Set the new BaseURI
        baseURI = base;
    }

    //This function is called to pause the minting on the contract
    //Params
    //state => The new state of the paused bool
    //_hashedMessage => A message that has been passed through the keccak256 algorithm
    //_v, _r & _s are pieces of the signature
    //onlyApproved(_hashedMessage, _v, _r, _s) => Calling of the modifier to verify the signature & message
    function pauseWithPermission(
        bool state,
        bytes32 _hashedMessage,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) external onlyApproved(_hashedMessage, _v, _r, _s) {
        paused = state;
    }

    //--------------Only addresses calling with a signed message from the Admin can call the functions above ------------//

    //This function is called internally
    //This function is called to verify if a signature was used to sign a given message
    //Params
    //_hashedMessage => A message that has been passed through the keccak256 algorithm
    //_v, _r & _s are pieces of the signature
    //returns(bool) => Returns true or false whether the signature is verified or not
    function VerifyMessage(
        bytes32 _hashedMessage,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) internal view returns (bool) {
        //Check that the message does equal the keccak256 hash of the msg.senders address
        require(_hashedMessage == keccak256(abi.encode(msg.sender)), "ERR:WM"); // WM -> Wrong Message

        //Define a string to be prefixed to the hashed message
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";

        //Combine the prefix & hashedMessage
        bytes32 prefixedHashMessage = keccak256(
            abi.encodePacked(prefix, _hashedMessage)
        );

        //Retrieve the signing address of the message
        address signer = ecrecover(prefixedHashMessage, _v, _r, _s);

        //Require that the signer is the admin of the contract, return bool accordingly
        return (signer == admin) ? true : false;
    }

    //This function is called to check that a merkle proof is a valid merkle proof
    //Param: _merkleProof => An array of bytes32 that represent the "proof" that the address is on the merkle tree
    //returns(bool) => The bool saying whether the proof is verified or not
    function checkValidity(bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        //Generate the leaf that would be on the merkle tree
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        //Check that the return of calling the MerkleProof libraries verify function with the given paramaters returns true
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "ERR:IP" // IP -> incorrect proof
        );

        //Return true
        return true;
    }

    //This function is called to mint a whitelist NFT for whitelist Price
    //Params
    //amount => The amount of NFTs to be minted
    //_merkleProof => An array of bytes2 that represents the "proof" that the address is on the merkletree
    //Ether will be sent with this function call so it is marked payable
    //nonReentrant => This function can not be accessed multiple times in a single transaction
    //notPaused => This function can only be called when minting is not paused
    function whitelistMint(uint8 amount, bytes32[] calldata _merkleProof)
        external
        payable
        nonReentrant
        notPaused
    {
        //If the msg.sender is not the admin or an approved wallet
        if (msg.sender != admin || approvedWallets[msg.sender]) {
            //Check that the amount is notlarger than 3
            require(amount <= 3, "ERR:SA"); //SA -> Sent Amount

            //Check that the msg.sender is not trying to mint more than 9 NFTs total
            require(numMintedByUser[msg.sender] + amount <= 9, "ERR:MA"); //MA -> mint amount
        }

        //Check if the whitelist minting is currently active
        require(whitelistActive, "ERR:NA"); //NA => Not Active

        //Check the validity of the proof
        require(checkValidity(_merkleProof), "ERR:WP"); //WL -> whitelist proof

        //Check that the amount + totalSupply is not larger than the whitelist Limit - 3333
        require(amount + totalSupply() <= whitelistLimit, "ERR:WL"); //WL -> whitelist limit

        //If the caller is not the admin
        if (msg.sender != admin) {
            //Calculate the total cost
            uint256 amountDue = amount * whitelistPrice;

            //Check that the value sent is exactly the amount * whitelist price
            require(msg.value == amountDue, "ERR:WF"); //WF -> Wrong Funds

            //Send the funds to admin wallet
            (bool success, ) = admin.call{value: amountDue}("");

            //Check that the funds were transferred correctly
            require(success, "ERR:PA"); // PA -> Paying Admin
        } else {
            //If the caller is the admin

            //Check that the total amount of mints the admin has made plus the amount
            //requested to be minted is less than or equal to 1111
            require(adminMintCount + amount <= 1111, "ERR:AM"); //AM => admin Minting

            //Increase the amount that the admin has minted by amount
            adminMintCount += amount;
        }

        //Mint the amount of NFTs to the caller
        _safeMint(msg.sender, uint256(amount));
    }

    function mint(uint8 amount) external payable nonReentrant notPaused {
        //If the msg.sender is not the admin or an approved wallet
        if (msg.sender != admin || approvedWallets[msg.sender]) {
            //Check that the amount is notlarger than 3
            require(amount <= 3, "ERR:SA"); //SA -> Sent Amount

            //Check that the msg.sender is not trying to mint more than 9 NFTs total
            require(numMintedByUser[msg.sender] + amount <= 9, "ERR:MA"); //MA -> mint amount
        }

        //Check that the whitelist is not active
        require(!whitelistActive, "ERR:WA"); //WA => Whitelist Active

        //Check that the totalSupply + amount does not exceed the total mint limit
        require(amount + totalSupply() <= totalLimit, "ERR:TL"); //TL - total limit

        //If the caller is not the admin
        if (msg.sender != admin) {
            //Calculate the total cost
            uint256 amountDue = amount * normalPrice;

            //Check that the value sent is exactly the amount * normal price
            require(msg.value == amountDue, "ERR:NF"); //NF -> not enough funds

            //Send funds to admin wallet
            (bool success, ) = admin.call{value: amountDue}("");

            //Check that the funds were transferred correctly
            require(success, "ERR:PA"); // PA -> Paying Admin
        } else {
            //If the caller is the admin

            //Check that the total amount of mints the admin has made plus the amount
            //requested to be minted is less than or equal to 1111
            require(adminMintCount + amount <= 1111, "ERR:AM"); //AM => admin Minting

            //Increase the amount that the admin has minted by amount
            adminMintCount += amount;
        }

        //Mint the amount for the caller
        _safeMint(msg.sender, uint256(amount));
    }

    //This function is a function in the ERC721A inherited contract
    //We override it so we can set a custom variable
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI; //put baseURI in here
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"normPrice","type":"uint256"},{"internalType":"uint256","name":"wlPrice","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"address","name":"development","type":"address"}],"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":"InvalidQueryRange","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"addWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"},{"internalType":"bytes32","name":"_hashedMessage","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"changeAdminWithPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkValidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"normalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"},{"internalType":"bytes32","name":"_hashedMessage","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"pauseWithPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"relinquishControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toRemove","type":"address"}],"name":"removeWallet","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":"base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"base","type":"string"},{"internalType":"bytes32","name":"_hashedMessage","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"setBaseURIWithPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"_hashedMessage","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"setMerkleRootWithPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startNormalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hashedMessage","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"startNormalMintWithPermission","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620067de380380620067de83398181016040528101906200003791906200090c565b838381600290805190602001906200005192919062000767565b5080600390805190602001906200006a92919062000767565b506200007b620001a460201b60201c565b600081905550505060016008819055506001600e60006101000a81548160ff021916908315150217905550610d05600c60006101000a81548161ffff021916908361ffff16021790555061270f600c60026101000a81548161ffff021916908361ffff16021790555084600b8190555085600a8190555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601090805190602001906200014b92919062000767565b506200015f816032620001a960201b60201c565b6032601160016101000a81548161ffff021916908361ffff1602179055506001601160006101000a81548160ff02191690831515021790555050505050505062000d14565b600090565b620001cb828260405180602001604052806000815250620001cf60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200023d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000279576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200028e6000858386620005be60201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506200045c8673ffffffffffffffffffffffffffffffffffffffff16620005c460201b62002be91760201c565b156200052e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004da6000878480600101955087620005e760201b60201c565b62000511576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620004635782600054146200052857600080fd5b6200059a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200052f575b816000819055505050620005b860008583866200075960201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006156200075f60201b60201c565b8786866040518563ffffffff1660e01b815260040162000639949392919062000a68565b602060405180830381600087803b1580156200065457600080fd5b505af19250505080156200068857506040513d601f19601f82011682018060405250810190620006859190620008da565b60015b62000706573d8060008114620006bb576040519150601f19603f3d011682016040523d82523d6000602084013e620006c0565b606091505b50600081511415620006fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620007759062000bd7565b90600052602060002090601f016020900481019282620007995760008555620007e5565b82601f10620007b457805160ff1916838001178555620007e5565b82800160010185558215620007e5579182015b82811115620007e4578251825591602001919060010190620007c7565b5b509050620007f49190620007f8565b5090565b5b8082111562000813576000816000905550600101620007f9565b5090565b60006200082e620008288462000ae5565b62000abc565b9050828152602081018484840111156200084d576200084c62000ca6565b5b6200085a84828562000ba1565b509392505050565b600081519050620008738162000cc6565b92915050565b6000815190506200088a8162000ce0565b92915050565b600082601f830112620008a857620008a762000ca1565b5b8151620008ba84826020860162000817565b91505092915050565b600081519050620008d48162000cfa565b92915050565b600060208284031215620008f357620008f262000cb0565b5b6000620009038482850162000879565b91505092915050565b60008060008060008060c087890312156200092c576200092b62000cb0565b5b60006200093c89828a01620008c3565b96505060206200094f89828a01620008c3565b955050604087015167ffffffffffffffff81111562000973576200097262000cab565b5b6200098189828a0162000890565b945050606087015167ffffffffffffffff811115620009a557620009a462000cab565b5b620009b389828a0162000890565b935050608087015167ffffffffffffffff811115620009d757620009d662000cab565b5b620009e589828a0162000890565b92505060a0620009f889828a0162000862565b9150509295509295509295565b62000a108162000b37565b82525050565b600062000a238262000b1b565b62000a2f818562000b26565b935062000a4181856020860162000ba1565b62000a4c8162000cb5565b840191505092915050565b62000a628162000b97565b82525050565b600060808201905062000a7f600083018762000a05565b62000a8e602083018662000a05565b62000a9d604083018562000a57565b818103606083015262000ab1818462000a16565b905095945050505050565b600062000ac862000adb565b905062000ad6828262000c0d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000b035762000b0262000c72565b5b62000b0e8262000cb5565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000b448262000b77565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000bc157808201518184015260208101905062000ba4565b8381111562000bd1576000848401525b50505050565b6000600282049050600182168062000bf057607f821691505b6020821081141562000c075762000c0662000c43565b5b50919050565b62000c188262000cb5565b810181811067ffffffffffffffff8211171562000c3a5762000c3962000c72565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000cd18162000b37565b811462000cdd57600080fd5b50565b62000ceb8162000b4b565b811462000cf757600080fd5b50565b62000d058162000b97565b811462000d1157600080fd5b50565b615aba8062000d246000396000f3fe60806040526004361061021a5760003560e01c80637cb6475911610123578063b88d4fde116100ab578063e1c28bef1161006f578063e1c28bef146107e5578063e65421be146107fc578063e985e9c514610825578063efeb5f1f14610862578063fc1a1c361461088b5761021a565b8063b88d4fde146106f0578063c23dc68f14610719578063c87b56dd14610756578063c9bae16f14610793578063db0a3d4d146107bc5761021a565b8063954d90d0116100f2578063954d90d0146105f957806395d89b411461063657806399a2557a14610661578063a22cb4651461069e578063a75fe8e1146106c75761021a565b80637cb647591461053f5780638462151c146105685780638f283970146105a5578063945ec9dd146105ce5761021a565b806342842e0e116101a65780635bbb2177116101755780635bbb2177146104415780635c975abb1461047e5780636352211e146104a95780636ecd2306146104e657806370a08231146105025761021a565b806342842e0e146103aa5780634761705a146103d357806355f804b3146103fc57806358381669146104255761021a565b8063095ea7b3116101ed578063095ea7b3146102ed578063152ac4f51461031657806318160ddd1461032d5780631c48d43f1461035857806323b872dd146103815761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906145d9565b6108b6565b6040516102539190614e6e565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190614422565b610998565b005b34801561029157600080fd5b5061029a610a45565b6040516102a79190614ece565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190614713565b610ad7565b6040516102e49190614dc3565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f91906142f9565b610b53565b005b34801561032257600080fd5b5061032b610cfa565b005b34801561033957600080fd5b50610342610da7565b60405161034f919061510b565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190614572565b610dbe565b005b34801561038d57600080fd5b506103a860048036038101906103a39190614168565b610e32565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190614168565b610e42565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061444f565b610e62565b005b34801561040857600080fd5b50610423600480360381019061041e9190614633565b610ed6565b005b61043f600480360381019061043a919061476d565b610f80565b005b34801561044d57600080fd5b50610468600480360381019061046391906143d9565b6114f2565b6040516104759190614e2a565b60405180910390f35b34801561048a57600080fd5b506104936115b3565b6040516104a09190614e6e565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190614713565b6115c6565b6040516104dd9190614dc3565b60405180910390f35b61050060048036038101906104fb9190614740565b6115dc565b005b34801561050e57600080fd5b50610529600480360381019061052491906140fb565b611b04565b604051610536919061510b565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906144ca565b611bd4565b005b34801561057457600080fd5b5061058f600480360381019061058a91906140fb565b611c6e565b60405161059c9190614e4c565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906140fb565b611e70565b005b3480156105da57600080fd5b506105e3611f44565b6040516105f0919061510b565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061438c565b611f4a565b60405161062d9190614e6e565b60405180910390f35b34801561064257600080fd5b5061064b61200e565b6040516106589190614ece565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190614339565b6120a0565b6040516106959190614e4c565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061423e565b612367565b005b3480156106d357600080fd5b506106ee60048036038101906106e991906140fb565b6124df565b005b3480156106fc57600080fd5b50610717600480360381019061071291906141bb565b6125c1565b005b34801561072557600080fd5b50610740600480360381019061073b9190614713565b612639565b60405161074d91906150f0565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190614713565b612756565b60405161078a9190614ece565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b5919061467c565b6127f5565b005b3480156107c857600080fd5b506107e360048036038101906107de919061427e565b612866565b005b3480156107f157600080fd5b506107fa612901565b005b34801561080857600080fd5b50610823600480360381019061081e91906144f7565b612a03565b005b34801561083157600080fd5b5061084c60048036038101906108479190614128565b612a64565b6040516108599190614e6e565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906140fb565b612af8565b005b34801561089757600080fd5b506108a0612be3565b6040516108ad919061510b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610991575061099082612c0c565b5b9050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90614ff0565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610a549061550c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a809061550c565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282612c76565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5e826115c6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be5612cc4565b73ffffffffffffffffffffffffffffffffffffffff1614610c4857610c1181610c0c612cc4565b612a64565b610c47576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190614ff0565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b6000610db1612ccc565b6001546000540303905090565b83838383610dce84848484612cd1565b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490614ff0565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055505050505050505050565b610e3d838383612e61565b505050565b610e5d838383604051806020016040528060008152506125c1565b505050565b83838383610e7284848484612cd1565b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614ff0565b60405180910390fd5b88601160006101000a81548160ff021916908315150217905550505050505050505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90614ff0565b60405180910390fd5b8060109080519060200190610f7c929190613dae565b5050565b60026008541415610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90615070565b60405180910390fd5b6002600881905550601160009054906101000a900460ff161561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906150d0565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415806110c45750601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111af5760038360ff161115611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790614ef0565b60405180910390fd5b600983600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116a9190615327565b60ff1611156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614f10565b60405180910390fd5b5b600e60009054906101000a900460ff166111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590614ff0565b60405180910390fd5b6112088282611f4a565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614f30565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff16611264610da7565b8460ff1661127291906152d1565b11156112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614f90565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611434576000600b548460ff1661131b919061538f565b905080341461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690615030565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516113a790614dae565b60006040518083038185875af1925050503d80600081146113e4576040519150601f19603f3d011682016040523d82523d6000602084013e6113e9565b606091505b505090508061142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490614fd0565b60405180910390fd5b50506114d8565b6104578360ff16601160019054906101000a900461ffff166114569190615299565b61ffff16111561149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290615090565b60405180910390fd5b8260ff16601160018282829054906101000a900461ffff166114bd9190615299565b92506101000a81548161ffff021916908361ffff1602179055505b6114e5338460ff16613341565b6001600881905550505050565b606060008251905060008167ffffffffffffffff811115611516576115156156d3565b5b60405190808252806020026020018201604052801561154f57816020015b61153c613e34565b8152602001906001900390816115345790505b50905060005b8281146115a85761157f858281518110611572576115716156a4565b5b6020026020010151612639565b828281518110611592576115916156a4565b5b6020026020010181905250806001019050611555565b508092505050919050565b601160009054906101000a900460ff1681565b60006115d18261335f565b600001519050919050565b60026008541415611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990615070565b60405180910390fd5b6002600881905550601160009054906101000a900460ff161561167a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611671906150d0565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415806117205750601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561180b5760038160ff16111561176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390614ef0565b60405180910390fd5b600981600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c69190615327565b60ff16111561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614f10565b60405180910390fd5b5b600e60009054906101000a900460ff161561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614fb0565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff16611878610da7565b8260ff1661188691906152d1565b11156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906150b0565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a48576000600a548260ff1661192f919061538f565b9050803414611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90615050565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516119bb90614dae565b60006040518083038185875af1925050503d80600081146119f8576040519150601f19603f3d011682016040523d82523d6000602084013e6119fd565b606091505b5050905080611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614fd0565b60405180910390fd5b5050611aec565b6104578160ff16601160019054906101000a900461ffff16611a6a9190615299565b61ffff161115611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690615090565b60405180910390fd5b8060ff16601160018282829054906101000a900461ffff16611ad19190615299565b92506101000a81548161ffff021916908361ffff1602179055505b611af9338260ff16613341565b600160088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90614ff0565b60405180910390fd5b80600d8190555050565b60606000806000611c7e85611b04565b905060008167ffffffffffffffff811115611c9c57611c9b6156d3565b5b604051908082528060200260200182016040528015611cca5781602001602082028036833780820191505090505b509050611cd5613e34565b6000611cdf612ccc565b90505b838614611e6257600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150816040015115611dbb57611e57565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dfb57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e565780838780600101985081518110611e4957611e486156a4565b5b6020026020010181815250505b5b806001019050611ce2565b508195505050505050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790614ff0565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b60008033604051602001611f5e9190614d3c565b604051602081830303815290604052805190602001209050611fc4848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54836135ea565b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90615010565b60405180910390fd5b600191505092915050565b60606003805461201d9061550c565b80601f01602080910402602001604051908101604052809291908181526020018280546120499061550c565b80156120965780601f1061206b57610100808354040283529160200191612096565b820191906000526020600020905b81548152906001019060200180831161207957829003601f168201915b5050505050905090565b60608183106120db576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506120eb612ccc565b8510156120fd576120fa612ccc565b94505b80841115612109578093505b600061211487611b04565b905084861015612137576000868603905081811015612131578091505b5061213c565b600090505b60008167ffffffffffffffff811115612158576121576156d3565b5b6040519080825280602002602001820160405280156121865781602001602082028036833780820191505090505b509050600082141561219e5780945050505050612360565b60006121a988612639565b9050600081604001516121be57816000015190505b60008990505b8881141580156121d45750848714155b1561235257600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505092508260400151156122ab57612347565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146122eb57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123465780848880600101995081518110612339576123386156a4565b5b6020026020010181815250505b5b8060010190506121c4565b508583528296505050505050505b9392505050565b61236f612cc4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006123e1612cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661248e612cc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124d39190614e6e565b60405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690614ff0565b60405180910390fd5b601260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b6125cc848484612e61565b6125eb8373ffffffffffffffffffffffffffffffffffffffff16612be9565b15612633576125fc84848484613601565b612632576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612641613e34565b612649613e34565b612651612ccc565b83108061266057506000548310155b1561266e5780915050612751565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156127445780915050612751565b61274d8361335f565b9150505b919050565b606061276182612c76565b612797576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006127a1613761565b90506000815114156127c257604051806020016040528060008152506127ed565b806127cc846137f3565b6040516020016127dd929190614d7f565b6040516020818303038152906040525b915050919050565b8383838361280584848484612cd1565b612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b90614ff0565b60405180910390fd5b886010908051906020019061285a929190613dae565b50505050505050505050565b8383838361287684848484612cd1565b6128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614ff0565b60405180910390fd5b88600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505050505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614ff0565b60405180910390fd5b61270f61299c610da7565b146129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390614f50565b60405180910390fd5b600960006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055565b83838383612a1384848484612cd1565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614ff0565b60405180910390fd5b88600d81905550505050505050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90614ff0565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612c81612ccc565b11158015612c90575060005482105b8015612cbd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b600090565b600033604051602001612ce49190614dc3565b604051602081830303815290604052805190602001208514612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290614f70565b60405180910390fd5b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008187604051602001612d8a929190614d57565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051612dc79493929190614e89565b6020604051602081039080840390855afa158015612de9573d6000803e3d6000fd5b505050602060405103519050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612e51576000612e54565b60015b9350505050949350505050565b6000612e6c8261335f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ed7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ef8612cc4565b73ffffffffffffffffffffffffffffffffffffffff161480612f275750612f2685612f21612cc4565b612a64565b5b80612f6c5750612f35612cc4565b73ffffffffffffffffffffffffffffffffffffffff16612f5484610ad7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612fa5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561300c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130198585856001613954565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156132cf5760005482146132ce57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461333a858585600161395a565b5050505050565b61335b828260405180602001604052806000815250613960565b5050565b613367613e34565b600082905080613375612ccc565b116135b3576000548110156135b2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516135b057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134945780925050506135e5565b5b6001156135af57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135aa5780925050506135e5565b613495565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000826135f78584613d22565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613627612cc4565b8786866040518563ffffffff1660e01b81526004016136499493929190614dde565b602060405180830381600087803b15801561366357600080fd5b505af192505050801561369457506040513d601f19601f820116820180604052508101906136919190614606565b60015b61370e573d80600081146136c4576040519150601f19603f3d011682016040523d82523d6000602084013e6136c9565b606091505b50600081511415613706576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546137709061550c565b80601f016020809104026020016040519081016040528092919081815260200182805461379c9061550c565b80156137e95780601f106137be576101008083540402835291602001916137e9565b820191906000526020600020905b8154815290600101906020018083116137cc57829003601f168201915b5050505050905090565b6060600082141561383b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061394f565b600082905060005b6000821461386d5780806138569061556f565b915050600a82613866919061535e565b9150613843565b60008167ffffffffffffffff811115613889576138886156d3565b5b6040519080825280601f01601f1916602001820160405280156138bb5781602001600182028036833780820191505090505b5090505b60008514613948576001826138d491906153e9565b9150600a856138e391906155e6565b60306138ef91906152d1565b60f81b818381518110613905576139046156a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613941919061535e565b94506138bf565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156139cd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613a08576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a156000858386613954565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613bd68673ffffffffffffffffffffffffffffffffffffffff16612be9565b15613c9b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c4b6000878480600101955087613601565b613c81576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613bdc578260005414613c9657600080fd5b613d06565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613c9c575b816000819055505050613d1c600085838661395a565b50505050565b60008082905060005b8451811015613d8c576000858281518110613d4957613d486156a4565b5b60200260200101519050808311613d6b57613d648382613d97565b9250613d78565b613d758184613d97565b92505b508080613d849061556f565b915050613d2b565b508091505092915050565b600082600052816020526040600020905092915050565b828054613dba9061550c565b90600052602060002090601f016020900481019282613ddc5760008555613e23565b82601f10613df557805160ff1916838001178555613e23565b82800160010185558215613e23579182015b82811115613e22578251825591602001919060010190613e07565b5b509050613e309190613e77565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e90576000816000905550600101613e78565b5090565b6000613ea7613ea28461514b565b615126565b90508083825260208201905082856020860282011115613eca57613ec961570c565b5b60005b85811015613efa5781613ee088826140d1565b845260208401935060208301925050600181019050613ecd565b5050509392505050565b6000613f17613f1284615177565b615126565b905082815260208101848484011115613f3357613f32615711565b5b613f3e8482856154ca565b509392505050565b6000613f59613f54846151a8565b615126565b905082815260208101848484011115613f7557613f74615711565b5b613f808482856154ca565b509392505050565b600081359050613f97816159fa565b92915050565b60008083601f840112613fb357613fb2615707565b5b8235905067ffffffffffffffff811115613fd057613fcf615702565b5b602083019150836020820283011115613fec57613feb61570c565b5b9250929050565b600082601f83011261400857614007615707565b5b8135614018848260208601613e94565b91505092915050565b60008135905061403081615a11565b92915050565b60008135905061404581615a28565b92915050565b60008135905061405a81615a3f565b92915050565b60008151905061406f81615a3f565b92915050565b600082601f83011261408a57614089615707565b5b813561409a848260208601613f04565b91505092915050565b600082601f8301126140b8576140b7615707565b5b81356140c8848260208601613f46565b91505092915050565b6000813590506140e081615a56565b92915050565b6000813590506140f581615a6d565b92915050565b6000602082840312156141115761411061571b565b5b600061411f84828501613f88565b91505092915050565b6000806040838503121561413f5761413e61571b565b5b600061414d85828601613f88565b925050602061415e85828601613f88565b9150509250929050565b6000806000606084860312156141815761418061571b565b5b600061418f86828701613f88565b93505060206141a086828701613f88565b92505060406141b1868287016140d1565b9150509250925092565b600080600080608085870312156141d5576141d461571b565b5b60006141e387828801613f88565b94505060206141f487828801613f88565b9350506040614205878288016140d1565b925050606085013567ffffffffffffffff81111561422657614225615716565b5b61423287828801614075565b91505092959194509250565b600080604083850312156142555761425461571b565b5b600061426385828601613f88565b925050602061427485828601614021565b9150509250929050565b600080600080600060a0868803121561429a5761429961571b565b5b60006142a888828901613f88565b95505060206142b988828901614036565b94505060406142ca888289016140e6565b93505060606142db88828901614036565b92505060806142ec88828901614036565b9150509295509295909350565b600080604083850312156143105761430f61571b565b5b600061431e85828601613f88565b925050602061432f858286016140d1565b9150509250929050565b6000806000606084860312156143525761435161571b565b5b600061436086828701613f88565b9350506020614371868287016140d1565b9250506040614382868287016140d1565b9150509250925092565b600080602083850312156143a3576143a261571b565b5b600083013567ffffffffffffffff8111156143c1576143c0615716565b5b6143cd85828601613f9d565b92509250509250929050565b6000602082840312156143ef576143ee61571b565b5b600082013567ffffffffffffffff81111561440d5761440c615716565b5b61441984828501613ff3565b91505092915050565b6000602082840312156144385761443761571b565b5b600061444684828501614021565b91505092915050565b600080600080600060a0868803121561446b5761446a61571b565b5b600061447988828901614021565b955050602061448a88828901614036565b945050604061449b888289016140e6565b93505060606144ac88828901614036565b92505060806144bd88828901614036565b9150509295509295909350565b6000602082840312156144e0576144df61571b565b5b60006144ee84828501614036565b91505092915050565b600080600080600060a086880312156145135761451261571b565b5b600061452188828901614036565b955050602061453288828901614036565b9450506040614543888289016140e6565b935050606061455488828901614036565b925050608061456588828901614036565b9150509295509295909350565b6000806000806080858703121561458c5761458b61571b565b5b600061459a87828801614036565b94505060206145ab878288016140e6565b93505060406145bc87828801614036565b92505060606145cd87828801614036565b91505092959194509250565b6000602082840312156145ef576145ee61571b565b5b60006145fd8482850161404b565b91505092915050565b60006020828403121561461c5761461b61571b565b5b600061462a84828501614060565b91505092915050565b6000602082840312156146495761464861571b565b5b600082013567ffffffffffffffff81111561466757614666615716565b5b614673848285016140a3565b91505092915050565b600080600080600060a086880312156146985761469761571b565b5b600086013567ffffffffffffffff8111156146b6576146b5615716565b5b6146c2888289016140a3565b95505060206146d388828901614036565b94505060406146e4888289016140e6565b93505060606146f588828901614036565b925050608061470688828901614036565b9150509295509295909350565b6000602082840312156147295761472861571b565b5b6000614737848285016140d1565b91505092915050565b6000602082840312156147565761475561571b565b5b6000614764848285016140e6565b91505092915050565b6000806000604084860312156147865761478561571b565b5b6000614794868287016140e6565b935050602084013567ffffffffffffffff8111156147b5576147b4615716565b5b6147c186828701613f9d565b92509250509250925092565b60006147d98383614c7c565b60608301905092915050565b60006147f18383614d00565b60208301905092915050565b6148068161541d565b82525050565b6148158161541d565b82525050565b61482c6148278261541d565b6155b8565b82525050565b600061483d826151f9565b614847818561523f565b9350614852836151d9565b8060005b8381101561488357815161486a88826147cd565b975061487583615225565b925050600181019050614856565b5085935050505092915050565b600061489b82615204565b6148a58185615250565b93506148b0836151e9565b8060005b838110156148e15781516148c888826147e5565b97506148d383615232565b9250506001810190506148b4565b5085935050505092915050565b6148f78161542f565b82525050565b6149068161542f565b82525050565b6149158161543b565b82525050565b61492c6149278261543b565b6155ca565b82525050565b600061493d8261520f565b6149478185615261565b93506149578185602086016154d9565b61496081615720565b840191505092915050565b60006149768261520f565b6149808185615272565b93506149908185602086016154d9565b80840191505092915050565b60006149a78261521a565b6149b1818561527d565b93506149c18185602086016154d9565b6149ca81615720565b840191505092915050565b60006149e08261521a565b6149ea818561528e565b93506149fa8185602086016154d9565b80840191505092915050565b6000614a1360068361527d565b9150614a1e8261573e565b602082019050919050565b6000614a3660068361527d565b9150614a4182615767565b602082019050919050565b6000614a5960068361527d565b9150614a6482615790565b602082019050919050565b6000614a7c60068361527d565b9150614a87826157b9565b602082019050919050565b6000614a9f60068361527d565b9150614aaa826157e2565b602082019050919050565b6000614ac260068361527d565b9150614acd8261580b565b602082019050919050565b6000614ae560068361527d565b9150614af082615834565b602082019050919050565b6000614b0860068361527d565b9150614b138261585d565b602082019050919050565b6000614b2b60068361527d565b9150614b3682615886565b602082019050919050565b6000614b4e60068361527d565b9150614b59826158af565b602082019050919050565b6000614b7160068361527d565b9150614b7c826158d8565b602082019050919050565b6000614b94600083615272565b9150614b9f82615901565b600082019050919050565b6000614bb760068361527d565b9150614bc282615904565b602082019050919050565b6000614bda601f8361527d565b9150614be58261592d565b602082019050919050565b6000614bfd60068361527d565b9150614c0882615956565b602082019050919050565b6000614c2060068361527d565b9150614c2b8261597f565b602082019050919050565b6000614c4360058361528e565b9150614c4e826159a8565b600582019050919050565b6000614c6660068361527d565b9150614c71826159d1565b602082019050919050565b606082016000820151614c9260008501826147fd565b506020820151614ca56020850182614d1e565b506040820151614cb860408501826148ee565b50505050565b606082016000820151614cd460008501826147fd565b506020820151614ce76020850182614d1e565b506040820151614cfa60408501826148ee565b50505050565b614d098161549f565b82525050565b614d188161549f565b82525050565b614d27816154a9565b82525050565b614d36816154bd565b82525050565b6000614d48828461481b565b60148201915081905092915050565b6000614d63828561496b565b9150614d6f828461491b565b6020820191508190509392505050565b6000614d8b82856149d5565b9150614d9782846149d5565b9150614da282614c36565b91508190509392505050565b6000614db982614b87565b9150819050919050565b6000602082019050614dd8600083018461480c565b92915050565b6000608082019050614df3600083018761480c565b614e00602083018661480c565b614e0d6040830185614d0f565b8181036060830152614e1f8184614932565b905095945050505050565b60006020820190508181036000830152614e448184614832565b905092915050565b60006020820190508181036000830152614e668184614890565b905092915050565b6000602082019050614e8360008301846148fd565b92915050565b6000608082019050614e9e600083018761490c565b614eab6020830186614d2d565b614eb8604083018561490c565b614ec5606083018461490c565b95945050505050565b60006020820190508181036000830152614ee8818461499c565b905092915050565b60006020820190508181036000830152614f0981614a06565b9050919050565b60006020820190508181036000830152614f2981614a29565b9050919050565b60006020820190508181036000830152614f4981614a4c565b9050919050565b60006020820190508181036000830152614f6981614a6f565b9050919050565b60006020820190508181036000830152614f8981614a92565b9050919050565b60006020820190508181036000830152614fa981614ab5565b9050919050565b60006020820190508181036000830152614fc981614ad8565b9050919050565b60006020820190508181036000830152614fe981614afb565b9050919050565b6000602082019050818103600083015261500981614b1e565b9050919050565b6000602082019050818103600083015261502981614b41565b9050919050565b6000602082019050818103600083015261504981614b64565b9050919050565b6000602082019050818103600083015261506981614baa565b9050919050565b6000602082019050818103600083015261508981614bcd565b9050919050565b600060208201905081810360008301526150a981614bf0565b9050919050565b600060208201905081810360008301526150c981614c13565b9050919050565b600060208201905081810360008301526150e981614c59565b9050919050565b60006060820190506151056000830184614cbe565b92915050565b60006020820190506151206000830184614d0f565b92915050565b6000615130615141565b905061513c828261553e565b919050565b6000604051905090565b600067ffffffffffffffff821115615166576151656156d3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615192576151916156d3565b5b61519b82615720565b9050602081019050919050565b600067ffffffffffffffff8211156151c3576151c26156d3565b5b6151cc82615720565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152a482615471565b91506152af83615471565b92508261ffff038211156152c6576152c5615617565b5b828201905092915050565b60006152dc8261549f565b91506152e78361549f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561531c5761531b615617565b5b828201905092915050565b6000615332826154bd565b915061533d836154bd565b92508260ff0382111561535357615352615617565b5b828201905092915050565b60006153698261549f565b91506153748361549f565b92508261538457615383615646565b5b828204905092915050565b600061539a8261549f565b91506153a58361549f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153de576153dd615617565b5b828202905092915050565b60006153f48261549f565b91506153ff8361549f565b92508282101561541257615411615617565b5b828203905092915050565b60006154288261547f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156154f75780820151818401526020810190506154dc565b83811115615506576000848401525b50505050565b6000600282049050600182168061552457607f821691505b6020821081141561553857615537615675565b5b50919050565b61554782615720565b810181811067ffffffffffffffff82111715615566576155656156d3565b5b80604052505050565b600061557a8261549f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155ad576155ac615617565b5b600182019050919050565b60006155c3826155d4565b9050919050565b6000819050919050565b60006155df82615731565b9050919050565b60006155f18261549f565b91506155fc8361549f565b92508261560c5761560b615646565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552523a53410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a4d410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a57500000000000000000000000000000000000000000000000000000600082015250565b7f4552523a4e520000000000000000000000000000000000000000000000000000600082015250565b7f4552523a574d0000000000000000000000000000000000000000000000000000600082015250565b7f4552523a574c0000000000000000000000000000000000000000000000000000600082015250565b7f4552523a57410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a50410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a4e410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a49500000000000000000000000000000000000000000000000000000600082015250565b7f4552523a57460000000000000000000000000000000000000000000000000000600082015250565b50565b7f4552523a4e460000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552523a414d0000000000000000000000000000000000000000000000000000600082015250565b7f4552523a544c0000000000000000000000000000000000000000000000000000600082015250565b7f2e4a534f4e000000000000000000000000000000000000000000000000000000600082015250565b7f4552523a43500000000000000000000000000000000000000000000000000000600082015250565b615a038161541d565b8114615a0e57600080fd5b50565b615a1a8161542f565b8114615a2557600080fd5b50565b615a318161543b565b8114615a3c57600080fd5b50565b615a4881615445565b8114615a5357600080fd5b50565b615a5f8161549f565b8114615a6a57600080fd5b50565b615a76816154bd565b8114615a8157600080fd5b5056fea2646970667358221220b8caefab35905e760b89fb276c08bb299671799112d64f8d9e8450761b25d8c664736f6c6343000807003300000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000004c8ceb6f0378050a4288b814b3102ad70262edef0000000000000000000000000000000000000000000000000000000000000006534143524544000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095341435245444e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6d6163677579766572746563682e6d7970696e6174612e636c6f75642f697066732f516d564a6b5063726441665968677251714a71594c656b4169733258524c5272506d584e345a6875664e6d3675690000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637cb6475911610123578063b88d4fde116100ab578063e1c28bef1161006f578063e1c28bef146107e5578063e65421be146107fc578063e985e9c514610825578063efeb5f1f14610862578063fc1a1c361461088b5761021a565b8063b88d4fde146106f0578063c23dc68f14610719578063c87b56dd14610756578063c9bae16f14610793578063db0a3d4d146107bc5761021a565b8063954d90d0116100f2578063954d90d0146105f957806395d89b411461063657806399a2557a14610661578063a22cb4651461069e578063a75fe8e1146106c75761021a565b80637cb647591461053f5780638462151c146105685780638f283970146105a5578063945ec9dd146105ce5761021a565b806342842e0e116101a65780635bbb2177116101755780635bbb2177146104415780635c975abb1461047e5780636352211e146104a95780636ecd2306146104e657806370a08231146105025761021a565b806342842e0e146103aa5780634761705a146103d357806355f804b3146103fc57806358381669146104255761021a565b8063095ea7b3116101ed578063095ea7b3146102ed578063152ac4f51461031657806318160ddd1461032d5780631c48d43f1461035857806323b872dd146103815761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906145d9565b6108b6565b6040516102539190614e6e565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190614422565b610998565b005b34801561029157600080fd5b5061029a610a45565b6040516102a79190614ece565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190614713565b610ad7565b6040516102e49190614dc3565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f91906142f9565b610b53565b005b34801561032257600080fd5b5061032b610cfa565b005b34801561033957600080fd5b50610342610da7565b60405161034f919061510b565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190614572565b610dbe565b005b34801561038d57600080fd5b506103a860048036038101906103a39190614168565b610e32565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190614168565b610e42565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061444f565b610e62565b005b34801561040857600080fd5b50610423600480360381019061041e9190614633565b610ed6565b005b61043f600480360381019061043a919061476d565b610f80565b005b34801561044d57600080fd5b50610468600480360381019061046391906143d9565b6114f2565b6040516104759190614e2a565b60405180910390f35b34801561048a57600080fd5b506104936115b3565b6040516104a09190614e6e565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190614713565b6115c6565b6040516104dd9190614dc3565b60405180910390f35b61050060048036038101906104fb9190614740565b6115dc565b005b34801561050e57600080fd5b50610529600480360381019061052491906140fb565b611b04565b604051610536919061510b565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906144ca565b611bd4565b005b34801561057457600080fd5b5061058f600480360381019061058a91906140fb565b611c6e565b60405161059c9190614e4c565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906140fb565b611e70565b005b3480156105da57600080fd5b506105e3611f44565b6040516105f0919061510b565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061438c565b611f4a565b60405161062d9190614e6e565b60405180910390f35b34801561064257600080fd5b5061064b61200e565b6040516106589190614ece565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190614339565b6120a0565b6040516106959190614e4c565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061423e565b612367565b005b3480156106d357600080fd5b506106ee60048036038101906106e991906140fb565b6124df565b005b3480156106fc57600080fd5b50610717600480360381019061071291906141bb565b6125c1565b005b34801561072557600080fd5b50610740600480360381019061073b9190614713565b612639565b60405161074d91906150f0565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190614713565b612756565b60405161078a9190614ece565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b5919061467c565b6127f5565b005b3480156107c857600080fd5b506107e360048036038101906107de919061427e565b612866565b005b3480156107f157600080fd5b506107fa612901565b005b34801561080857600080fd5b50610823600480360381019061081e91906144f7565b612a03565b005b34801561083157600080fd5b5061084c60048036038101906108479190614128565b612a64565b6040516108599190614e6e565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906140fb565b612af8565b005b34801561089757600080fd5b506108a0612be3565b6040516108ad919061510b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610991575061099082612c0c565b5b9050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90614ff0565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610a549061550c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a809061550c565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282612c76565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5e826115c6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be5612cc4565b73ffffffffffffffffffffffffffffffffffffffff1614610c4857610c1181610c0c612cc4565b612a64565b610c47576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190614ff0565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b6000610db1612ccc565b6001546000540303905090565b83838383610dce84848484612cd1565b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490614ff0565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055505050505050505050565b610e3d838383612e61565b505050565b610e5d838383604051806020016040528060008152506125c1565b505050565b83838383610e7284848484612cd1565b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614ff0565b60405180910390fd5b88601160006101000a81548160ff021916908315150217905550505050505050505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90614ff0565b60405180910390fd5b8060109080519060200190610f7c929190613dae565b5050565b60026008541415610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90615070565b60405180910390fd5b6002600881905550601160009054906101000a900460ff161561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906150d0565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415806110c45750601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111af5760038360ff161115611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790614ef0565b60405180910390fd5b600983600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116a9190615327565b60ff1611156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614f10565b60405180910390fd5b5b600e60009054906101000a900460ff166111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590614ff0565b60405180910390fd5b6112088282611f4a565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614f30565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff16611264610da7565b8460ff1661127291906152d1565b11156112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614f90565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611434576000600b548460ff1661131b919061538f565b905080341461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690615030565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516113a790614dae565b60006040518083038185875af1925050503d80600081146113e4576040519150601f19603f3d011682016040523d82523d6000602084013e6113e9565b606091505b505090508061142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490614fd0565b60405180910390fd5b50506114d8565b6104578360ff16601160019054906101000a900461ffff166114569190615299565b61ffff16111561149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290615090565b60405180910390fd5b8260ff16601160018282829054906101000a900461ffff166114bd9190615299565b92506101000a81548161ffff021916908361ffff1602179055505b6114e5338460ff16613341565b6001600881905550505050565b606060008251905060008167ffffffffffffffff811115611516576115156156d3565b5b60405190808252806020026020018201604052801561154f57816020015b61153c613e34565b8152602001906001900390816115345790505b50905060005b8281146115a85761157f858281518110611572576115716156a4565b5b6020026020010151612639565b828281518110611592576115916156a4565b5b6020026020010181905250806001019050611555565b508092505050919050565b601160009054906101000a900460ff1681565b60006115d18261335f565b600001519050919050565b60026008541415611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990615070565b60405180910390fd5b6002600881905550601160009054906101000a900460ff161561167a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611671906150d0565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415806117205750601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561180b5760038160ff16111561176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390614ef0565b60405180910390fd5b600981600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c69190615327565b60ff16111561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614f10565b60405180910390fd5b5b600e60009054906101000a900460ff161561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614fb0565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff16611878610da7565b8260ff1661188691906152d1565b11156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906150b0565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a48576000600a548260ff1661192f919061538f565b9050803414611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90615050565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516119bb90614dae565b60006040518083038185875af1925050503d80600081146119f8576040519150601f19603f3d011682016040523d82523d6000602084013e6119fd565b606091505b5050905080611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614fd0565b60405180910390fd5b5050611aec565b6104578160ff16601160019054906101000a900461ffff16611a6a9190615299565b61ffff161115611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690615090565b60405180910390fd5b8060ff16601160018282829054906101000a900461ffff16611ad19190615299565b92506101000a81548161ffff021916908361ffff1602179055505b611af9338260ff16613341565b600160088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90614ff0565b60405180910390fd5b80600d8190555050565b60606000806000611c7e85611b04565b905060008167ffffffffffffffff811115611c9c57611c9b6156d3565b5b604051908082528060200260200182016040528015611cca5781602001602082028036833780820191505090505b509050611cd5613e34565b6000611cdf612ccc565b90505b838614611e6257600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150816040015115611dbb57611e57565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dfb57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e565780838780600101985081518110611e4957611e486156a4565b5b6020026020010181815250505b5b806001019050611ce2565b508195505050505050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790614ff0565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b60008033604051602001611f5e9190614d3c565b604051602081830303815290604052805190602001209050611fc4848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54836135ea565b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90615010565b60405180910390fd5b600191505092915050565b60606003805461201d9061550c565b80601f01602080910402602001604051908101604052809291908181526020018280546120499061550c565b80156120965780601f1061206b57610100808354040283529160200191612096565b820191906000526020600020905b81548152906001019060200180831161207957829003601f168201915b5050505050905090565b60608183106120db576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506120eb612ccc565b8510156120fd576120fa612ccc565b94505b80841115612109578093505b600061211487611b04565b905084861015612137576000868603905081811015612131578091505b5061213c565b600090505b60008167ffffffffffffffff811115612158576121576156d3565b5b6040519080825280602002602001820160405280156121865781602001602082028036833780820191505090505b509050600082141561219e5780945050505050612360565b60006121a988612639565b9050600081604001516121be57816000015190505b60008990505b8881141580156121d45750848714155b1561235257600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505092508260400151156122ab57612347565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146122eb57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123465780848880600101995081518110612339576123386156a4565b5b6020026020010181815250505b5b8060010190506121c4565b508583528296505050505050505b9392505050565b61236f612cc4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006123e1612cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661248e612cc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124d39190614e6e565b60405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690614ff0565b60405180910390fd5b601260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b6125cc848484612e61565b6125eb8373ffffffffffffffffffffffffffffffffffffffff16612be9565b15612633576125fc84848484613601565b612632576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612641613e34565b612649613e34565b612651612ccc565b83108061266057506000548310155b1561266e5780915050612751565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156127445780915050612751565b61274d8361335f565b9150505b919050565b606061276182612c76565b612797576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006127a1613761565b90506000815114156127c257604051806020016040528060008152506127ed565b806127cc846137f3565b6040516020016127dd929190614d7f565b6040516020818303038152906040525b915050919050565b8383838361280584848484612cd1565b612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b90614ff0565b60405180910390fd5b886010908051906020019061285a929190613dae565b50505050505050505050565b8383838361287684848484612cd1565b6128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614ff0565b60405180910390fd5b88600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505050505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614ff0565b60405180910390fd5b61270f61299c610da7565b146129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390614f50565b60405180910390fd5b600960006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055565b83838383612a1384848484612cd1565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614ff0565b60405180910390fd5b88600d81905550505050505050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90614ff0565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612c81612ccc565b11158015612c90575060005482105b8015612cbd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b600090565b600033604051602001612ce49190614dc3565b604051602081830303815290604052805190602001208514612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290614f70565b60405180910390fd5b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008187604051602001612d8a929190614d57565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051612dc79493929190614e89565b6020604051602081039080840390855afa158015612de9573d6000803e3d6000fd5b505050602060405103519050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612e51576000612e54565b60015b9350505050949350505050565b6000612e6c8261335f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ed7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ef8612cc4565b73ffffffffffffffffffffffffffffffffffffffff161480612f275750612f2685612f21612cc4565b612a64565b5b80612f6c5750612f35612cc4565b73ffffffffffffffffffffffffffffffffffffffff16612f5484610ad7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612fa5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561300c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130198585856001613954565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156132cf5760005482146132ce57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461333a858585600161395a565b5050505050565b61335b828260405180602001604052806000815250613960565b5050565b613367613e34565b600082905080613375612ccc565b116135b3576000548110156135b2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516135b057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134945780925050506135e5565b5b6001156135af57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135aa5780925050506135e5565b613495565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000826135f78584613d22565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613627612cc4565b8786866040518563ffffffff1660e01b81526004016136499493929190614dde565b602060405180830381600087803b15801561366357600080fd5b505af192505050801561369457506040513d601f19601f820116820180604052508101906136919190614606565b60015b61370e573d80600081146136c4576040519150601f19603f3d011682016040523d82523d6000602084013e6136c9565b606091505b50600081511415613706576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546137709061550c565b80601f016020809104026020016040519081016040528092919081815260200182805461379c9061550c565b80156137e95780601f106137be576101008083540402835291602001916137e9565b820191906000526020600020905b8154815290600101906020018083116137cc57829003601f168201915b5050505050905090565b6060600082141561383b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061394f565b600082905060005b6000821461386d5780806138569061556f565b915050600a82613866919061535e565b9150613843565b60008167ffffffffffffffff811115613889576138886156d3565b5b6040519080825280601f01601f1916602001820160405280156138bb5781602001600182028036833780820191505090505b5090505b60008514613948576001826138d491906153e9565b9150600a856138e391906155e6565b60306138ef91906152d1565b60f81b818381518110613905576139046156a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613941919061535e565b94506138bf565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156139cd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613a08576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a156000858386613954565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613bd68673ffffffffffffffffffffffffffffffffffffffff16612be9565b15613c9b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c4b6000878480600101955087613601565b613c81576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613bdc578260005414613c9657600080fd5b613d06565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613c9c575b816000819055505050613d1c600085838661395a565b50505050565b60008082905060005b8451811015613d8c576000858281518110613d4957613d486156a4565b5b60200260200101519050808311613d6b57613d648382613d97565b9250613d78565b613d758184613d97565b92505b508080613d849061556f565b915050613d2b565b508091505092915050565b600082600052816020526040600020905092915050565b828054613dba9061550c565b90600052602060002090601f016020900481019282613ddc5760008555613e23565b82601f10613df557805160ff1916838001178555613e23565b82800160010185558215613e23579182015b82811115613e22578251825591602001919060010190613e07565b5b509050613e309190613e77565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e90576000816000905550600101613e78565b5090565b6000613ea7613ea28461514b565b615126565b90508083825260208201905082856020860282011115613eca57613ec961570c565b5b60005b85811015613efa5781613ee088826140d1565b845260208401935060208301925050600181019050613ecd565b5050509392505050565b6000613f17613f1284615177565b615126565b905082815260208101848484011115613f3357613f32615711565b5b613f3e8482856154ca565b509392505050565b6000613f59613f54846151a8565b615126565b905082815260208101848484011115613f7557613f74615711565b5b613f808482856154ca565b509392505050565b600081359050613f97816159fa565b92915050565b60008083601f840112613fb357613fb2615707565b5b8235905067ffffffffffffffff811115613fd057613fcf615702565b5b602083019150836020820283011115613fec57613feb61570c565b5b9250929050565b600082601f83011261400857614007615707565b5b8135614018848260208601613e94565b91505092915050565b60008135905061403081615a11565b92915050565b60008135905061404581615a28565b92915050565b60008135905061405a81615a3f565b92915050565b60008151905061406f81615a3f565b92915050565b600082601f83011261408a57614089615707565b5b813561409a848260208601613f04565b91505092915050565b600082601f8301126140b8576140b7615707565b5b81356140c8848260208601613f46565b91505092915050565b6000813590506140e081615a56565b92915050565b6000813590506140f581615a6d565b92915050565b6000602082840312156141115761411061571b565b5b600061411f84828501613f88565b91505092915050565b6000806040838503121561413f5761413e61571b565b5b600061414d85828601613f88565b925050602061415e85828601613f88565b9150509250929050565b6000806000606084860312156141815761418061571b565b5b600061418f86828701613f88565b93505060206141a086828701613f88565b92505060406141b1868287016140d1565b9150509250925092565b600080600080608085870312156141d5576141d461571b565b5b60006141e387828801613f88565b94505060206141f487828801613f88565b9350506040614205878288016140d1565b925050606085013567ffffffffffffffff81111561422657614225615716565b5b61423287828801614075565b91505092959194509250565b600080604083850312156142555761425461571b565b5b600061426385828601613f88565b925050602061427485828601614021565b9150509250929050565b600080600080600060a0868803121561429a5761429961571b565b5b60006142a888828901613f88565b95505060206142b988828901614036565b94505060406142ca888289016140e6565b93505060606142db88828901614036565b92505060806142ec88828901614036565b9150509295509295909350565b600080604083850312156143105761430f61571b565b5b600061431e85828601613f88565b925050602061432f858286016140d1565b9150509250929050565b6000806000606084860312156143525761435161571b565b5b600061436086828701613f88565b9350506020614371868287016140d1565b9250506040614382868287016140d1565b9150509250925092565b600080602083850312156143a3576143a261571b565b5b600083013567ffffffffffffffff8111156143c1576143c0615716565b5b6143cd85828601613f9d565b92509250509250929050565b6000602082840312156143ef576143ee61571b565b5b600082013567ffffffffffffffff81111561440d5761440c615716565b5b61441984828501613ff3565b91505092915050565b6000602082840312156144385761443761571b565b5b600061444684828501614021565b91505092915050565b600080600080600060a0868803121561446b5761446a61571b565b5b600061447988828901614021565b955050602061448a88828901614036565b945050604061449b888289016140e6565b93505060606144ac88828901614036565b92505060806144bd88828901614036565b9150509295509295909350565b6000602082840312156144e0576144df61571b565b5b60006144ee84828501614036565b91505092915050565b600080600080600060a086880312156145135761451261571b565b5b600061452188828901614036565b955050602061453288828901614036565b9450506040614543888289016140e6565b935050606061455488828901614036565b925050608061456588828901614036565b9150509295509295909350565b6000806000806080858703121561458c5761458b61571b565b5b600061459a87828801614036565b94505060206145ab878288016140e6565b93505060406145bc87828801614036565b92505060606145cd87828801614036565b91505092959194509250565b6000602082840312156145ef576145ee61571b565b5b60006145fd8482850161404b565b91505092915050565b60006020828403121561461c5761461b61571b565b5b600061462a84828501614060565b91505092915050565b6000602082840312156146495761464861571b565b5b600082013567ffffffffffffffff81111561466757614666615716565b5b614673848285016140a3565b91505092915050565b600080600080600060a086880312156146985761469761571b565b5b600086013567ffffffffffffffff8111156146b6576146b5615716565b5b6146c2888289016140a3565b95505060206146d388828901614036565b94505060406146e4888289016140e6565b93505060606146f588828901614036565b925050608061470688828901614036565b9150509295509295909350565b6000602082840312156147295761472861571b565b5b6000614737848285016140d1565b91505092915050565b6000602082840312156147565761475561571b565b5b6000614764848285016140e6565b91505092915050565b6000806000604084860312156147865761478561571b565b5b6000614794868287016140e6565b935050602084013567ffffffffffffffff8111156147b5576147b4615716565b5b6147c186828701613f9d565b92509250509250925092565b60006147d98383614c7c565b60608301905092915050565b60006147f18383614d00565b60208301905092915050565b6148068161541d565b82525050565b6148158161541d565b82525050565b61482c6148278261541d565b6155b8565b82525050565b600061483d826151f9565b614847818561523f565b9350614852836151d9565b8060005b8381101561488357815161486a88826147cd565b975061487583615225565b925050600181019050614856565b5085935050505092915050565b600061489b82615204565b6148a58185615250565b93506148b0836151e9565b8060005b838110156148e15781516148c888826147e5565b97506148d383615232565b9250506001810190506148b4565b5085935050505092915050565b6148f78161542f565b82525050565b6149068161542f565b82525050565b6149158161543b565b82525050565b61492c6149278261543b565b6155ca565b82525050565b600061493d8261520f565b6149478185615261565b93506149578185602086016154d9565b61496081615720565b840191505092915050565b60006149768261520f565b6149808185615272565b93506149908185602086016154d9565b80840191505092915050565b60006149a78261521a565b6149b1818561527d565b93506149c18185602086016154d9565b6149ca81615720565b840191505092915050565b60006149e08261521a565b6149ea818561528e565b93506149fa8185602086016154d9565b80840191505092915050565b6000614a1360068361527d565b9150614a1e8261573e565b602082019050919050565b6000614a3660068361527d565b9150614a4182615767565b602082019050919050565b6000614a5960068361527d565b9150614a6482615790565b602082019050919050565b6000614a7c60068361527d565b9150614a87826157b9565b602082019050919050565b6000614a9f60068361527d565b9150614aaa826157e2565b602082019050919050565b6000614ac260068361527d565b9150614acd8261580b565b602082019050919050565b6000614ae560068361527d565b9150614af082615834565b602082019050919050565b6000614b0860068361527d565b9150614b138261585d565b602082019050919050565b6000614b2b60068361527d565b9150614b3682615886565b602082019050919050565b6000614b4e60068361527d565b9150614b59826158af565b602082019050919050565b6000614b7160068361527d565b9150614b7c826158d8565b602082019050919050565b6000614b94600083615272565b9150614b9f82615901565b600082019050919050565b6000614bb760068361527d565b9150614bc282615904565b602082019050919050565b6000614bda601f8361527d565b9150614be58261592d565b602082019050919050565b6000614bfd60068361527d565b9150614c0882615956565b602082019050919050565b6000614c2060068361527d565b9150614c2b8261597f565b602082019050919050565b6000614c4360058361528e565b9150614c4e826159a8565b600582019050919050565b6000614c6660068361527d565b9150614c71826159d1565b602082019050919050565b606082016000820151614c9260008501826147fd565b506020820151614ca56020850182614d1e565b506040820151614cb860408501826148ee565b50505050565b606082016000820151614cd460008501826147fd565b506020820151614ce76020850182614d1e565b506040820151614cfa60408501826148ee565b50505050565b614d098161549f565b82525050565b614d188161549f565b82525050565b614d27816154a9565b82525050565b614d36816154bd565b82525050565b6000614d48828461481b565b60148201915081905092915050565b6000614d63828561496b565b9150614d6f828461491b565b6020820191508190509392505050565b6000614d8b82856149d5565b9150614d9782846149d5565b9150614da282614c36565b91508190509392505050565b6000614db982614b87565b9150819050919050565b6000602082019050614dd8600083018461480c565b92915050565b6000608082019050614df3600083018761480c565b614e00602083018661480c565b614e0d6040830185614d0f565b8181036060830152614e1f8184614932565b905095945050505050565b60006020820190508181036000830152614e448184614832565b905092915050565b60006020820190508181036000830152614e668184614890565b905092915050565b6000602082019050614e8360008301846148fd565b92915050565b6000608082019050614e9e600083018761490c565b614eab6020830186614d2d565b614eb8604083018561490c565b614ec5606083018461490c565b95945050505050565b60006020820190508181036000830152614ee8818461499c565b905092915050565b60006020820190508181036000830152614f0981614a06565b9050919050565b60006020820190508181036000830152614f2981614a29565b9050919050565b60006020820190508181036000830152614f4981614a4c565b9050919050565b60006020820190508181036000830152614f6981614a6f565b9050919050565b60006020820190508181036000830152614f8981614a92565b9050919050565b60006020820190508181036000830152614fa981614ab5565b9050919050565b60006020820190508181036000830152614fc981614ad8565b9050919050565b60006020820190508181036000830152614fe981614afb565b9050919050565b6000602082019050818103600083015261500981614b1e565b9050919050565b6000602082019050818103600083015261502981614b41565b9050919050565b6000602082019050818103600083015261504981614b64565b9050919050565b6000602082019050818103600083015261506981614baa565b9050919050565b6000602082019050818103600083015261508981614bcd565b9050919050565b600060208201905081810360008301526150a981614bf0565b9050919050565b600060208201905081810360008301526150c981614c13565b9050919050565b600060208201905081810360008301526150e981614c59565b9050919050565b60006060820190506151056000830184614cbe565b92915050565b60006020820190506151206000830184614d0f565b92915050565b6000615130615141565b905061513c828261553e565b919050565b6000604051905090565b600067ffffffffffffffff821115615166576151656156d3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615192576151916156d3565b5b61519b82615720565b9050602081019050919050565b600067ffffffffffffffff8211156151c3576151c26156d3565b5b6151cc82615720565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152a482615471565b91506152af83615471565b92508261ffff038211156152c6576152c5615617565b5b828201905092915050565b60006152dc8261549f565b91506152e78361549f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561531c5761531b615617565b5b828201905092915050565b6000615332826154bd565b915061533d836154bd565b92508260ff0382111561535357615352615617565b5b828201905092915050565b60006153698261549f565b91506153748361549f565b92508261538457615383615646565b5b828204905092915050565b600061539a8261549f565b91506153a58361549f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153de576153dd615617565b5b828202905092915050565b60006153f48261549f565b91506153ff8361549f565b92508282101561541257615411615617565b5b828203905092915050565b60006154288261547f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156154f75780820151818401526020810190506154dc565b83811115615506576000848401525b50505050565b6000600282049050600182168061552457607f821691505b6020821081141561553857615537615675565b5b50919050565b61554782615720565b810181811067ffffffffffffffff82111715615566576155656156d3565b5b80604052505050565b600061557a8261549f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155ad576155ac615617565b5b600182019050919050565b60006155c3826155d4565b9050919050565b6000819050919050565b60006155df82615731565b9050919050565b60006155f18261549f565b91506155fc8361549f565b92508261560c5761560b615646565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552523a53410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a4d410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a57500000000000000000000000000000000000000000000000000000600082015250565b7f4552523a4e520000000000000000000000000000000000000000000000000000600082015250565b7f4552523a574d0000000000000000000000000000000000000000000000000000600082015250565b7f4552523a574c0000000000000000000000000000000000000000000000000000600082015250565b7f4552523a57410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a50410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a4e410000000000000000000000000000000000000000000000000000600082015250565b7f4552523a49500000000000000000000000000000000000000000000000000000600082015250565b7f4552523a57460000000000000000000000000000000000000000000000000000600082015250565b50565b7f4552523a4e460000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552523a414d0000000000000000000000000000000000000000000000000000600082015250565b7f4552523a544c0000000000000000000000000000000000000000000000000000600082015250565b7f2e4a534f4e000000000000000000000000000000000000000000000000000000600082015250565b7f4552523a43500000000000000000000000000000000000000000000000000000600082015250565b615a038161541d565b8114615a0e57600080fd5b50565b615a1a8161542f565b8114615a2557600080fd5b50565b615a318161543b565b8114615a3c57600080fd5b50565b615a4881615445565b8114615a5357600080fd5b50565b615a5f8161549f565b8114615a6a57600080fd5b50565b615a76816154bd565b8114615a8157600080fd5b5056fea2646970667358221220b8caefab35905e760b89fb276c08bb299671799112d64f8d9e8450761b25d8c664736f6c63430008070033

Deployed Bytecode Sourcemap

61062:16935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29301:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66902:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32587:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34264:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33759:439;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66565:141;;;;;;;;;;;;;:::i;:::-;;28541:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69319:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35252:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35493:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70639:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66741:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73651:2159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50162:541;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62518:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32395:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75818:1915;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29720:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66401:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54115:998;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66031:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61434:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72581:566;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32756:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51093:2573;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34581:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67317:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35749:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49544:459;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32931:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69978:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68048:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66198:148;;;;;;;;;;;;;:::i;:::-;;68729:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34971:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67090:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61467:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29301:355;29448:4;29505:25;29490:40;;;:11;:40;;;;:105;;;;29562:33;29547:48;;;:11;:48;;;;29490:105;:158;;;;29612:36;29636:11;29612:23;:36::i;:::-;29490:158;29470:178;;29301:355;;;:::o;66902:131::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;67020:5:::1;67011:6;;:14;;;;;;;;;;;;;;;;;;66902:131:::0;:::o;32587:100::-;32641:13;32674:5;32667:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32587:100;:::o;34264:245::-;34368:7;34398:16;34406:7;34398;:16::i;:::-;34393:64;;34423:34;;;;;;;;;;;;;;34393:64;34477:15;:24;34493:7;34477:24;;;;;;;;;;;;;;;;;;;;;34470:31;;34264:245;;;:::o;33759:439::-;33832:13;33848:24;33864:7;33848:15;:24::i;:::-;33832:40;;33893:5;33887:11;;:2;:11;;;33883:48;;;33907:24;;;;;;;;;;;;;;33883:48;33964:5;33948:21;;:12;:10;:12::i;:::-;:21;;;33944:161;;33989:37;34006:5;34013:12;:10;:12::i;:::-;33989:16;:37::i;:::-;33984:121;;34054:35;;;;;;;;;;;;;;33984:121;33944:161;34144:2;34117:15;:24;34133:7;34117:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34182:7;34178:2;34162:28;;34171:5;34162:28;;;;;;;;;;;;33821:377;33759:439;;:::o;66565:141::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66693:5:::1;66675:15;;:23;;;;;;;;;;;;;;;;;;66565:141::o:0;28541:312::-;28594:7;28819:15;:13;:15::i;:::-;28804:12;;28788:13;;:28;:46;28781:53;;28541:312;:::o;69319:281::-;69481:14;69497:2;69501;69505;65790:41;65804:14;65820:2;65824;65828;65790:13;:41::i;:::-;65782:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;69587:5:::1;69569:15;;:23;;;;;;;;;;;;;;;;;;69319:281:::0;;;;;;;;:::o;35252:170::-;35386:28;35396:4;35402:2;35406:7;35386:9;:28::i;:::-;35252:170;;;:::o;35493:185::-;35631:39;35648:4;35654:2;35658:7;35631:39;;;;;;;;;;;;:16;:39::i;:::-;35493:185;;;:::o;70639:234::-;70812:14;70828:2;70832;70836;65790:41;65804:14;65820:2;65824;65828;65790:13;:41::i;:::-;65782:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;70860:5:::1;70851:6;;:14;;;;;;;;;;;;;;;;;;70639:234:::0;;;;;;;;;:::o;66741:120::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66849:4:::1;66839:7;:14;;;;;;;;;;;;:::i;:::-;;66741:120:::0;:::o;73651:2159::-;59689:1;60287:7;;:19;;60279:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59689:1;60420:7;:18;;;;65359:6:::1;;;;;;;;;;;65358:7;65350:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;73899:5:::2;;;;;;;;;;;73885:19;;:10;:19;;;;:50;;;;73908:15;:27;73924:10;73908:27;;;;;;;;;;;;;;;;;;;;;;;;;73885:50;73881:373;;;74027:1;74017:6;:11;;;;74009:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;74210:1;74200:6;74170:15;:27;74186:10;74170:27;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:41;;;;74162:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;73881:373;74336:15;;;;;;;;;;;74328:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;74445:27;74459:12;;74445:13;:27::i;:::-;74437:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;74647:14;;;;;;;;;;;74621:40;;74630:13;:11;:13::i;:::-;74621:6;:22;;;;;;:::i;:::-;:40;;74613:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;74769:5;;;;;;;;;;;74755:19;;:10;:19;;;74751:952;;74831:17;74860:14;;74851:6;:23;;;;;;:::i;:::-;74831:43;;74993:9;74980;:22;74972:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;75097:12;75115:5;;;;;;;;;;;:10;;75133:9;75115:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75096:51;;;75235:7;75227:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;74776:511;;74751:952;;;75542:4;75532:6;75515:23;;:14;;;;;;;;;;;:23;;;;:::i;:::-;:31;;;;75507:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;75685:6;75667:24;;:14;;:24;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74751:952;75764:38;75774:10;75794:6;75786:15;;75764:9;:38::i;:::-;59645:1:::0;60599:7;:22;;;;73651:2159;;;:::o;50162:541::-;50287:23;50353:22;50378:8;:15;50353:40;;50408:34;50484:14;50445:68;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;50408:105;;50533:9;50528:125;50549:14;50544:1;:19;50528:125;;50605:32;50625:8;50634:1;50625:11;;;;;;;;:::i;:::-;;;;;;;;50605:19;:32::i;:::-;50589:10;50600:1;50589:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;50565:3;;;;;50528:125;;;;50674:10;50667:17;;;;50162:541;;;:::o;62518:18::-;;;;;;;;;;;;;:::o;32395:125::-;32459:7;32486:21;32499:7;32486:12;:21::i;:::-;:26;;;32479:33;;32395:125;;;:::o;75818:1915::-;59689:1;60287:7;;:19;;60279:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59689:1;60420:7;:18;;;;65359:6:::1;;;;;;;;;;;65358:7;65350:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;75983:5:::2;;;;;;;;;;;75969:19;;:10;:19;;;;:50;;;;75992:15;:27;76008:10;75992:27;;;;;;;;;;;;;;;;;;;;;;;;;75969:50;75965:373;;;76111:1;76101:6;:11;;;;76093:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;76294:1;76284:6;76254:15;:27;76270:10;76254:27;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:41;;;;76246:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;75965:373;76409:15;;;;;;;;;;;76408:16;76400:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;76591:10;;;;;;;;;;;76565:36;;76574:13;:11;:13::i;:::-;76565:6;:22;;;;;;:::i;:::-;:36;;76557:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;76704:5;;;;;;;;;;;76690:19;;:10;:19;;;76686:947;;76766:17;76795:11;;76786:6;:20;;;;;;:::i;:::-;76766:40;;76922:9;76909;:22;76901:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;77027:12;77045:5;;;;;;;;;;;:10;;77063:9;77045:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77026:51;;;77165:7;77157:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;76711:506;;76686:947;;;77472:4;77462:6;77445:23;;:14;;;;;;;;;;;:23;;;;:::i;:::-;:31;;;;77437:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;77615:6;77597:24;;:14;;:24;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;76686:947;77687:38;77697:10;77717:6;77709:15;;77687:9;:38::i;:::-;59645:1:::0;60599:7;:22;;;;75818:1915;:::o;29720:206::-;29784:7;29825:1;29808:19;;:5;:19;;;29804:60;;;29836:28;;;;;;;;;;;;;;29804:60;29890:12;:19;29903:5;29890:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29882:36;;29875:43;;29720:206;;;:::o;66401:126::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66515:4:::1;66502:10;:17;;;;66401:126:::0;:::o;54115:998::-;54221:16;54280:19;54314:25;54354:22;54379:16;54389:5;54379:9;:16::i;:::-;54354:41;;54410:25;54452:14;54438:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54410:57;;54482:31;;:::i;:::-;54551:9;54563:15;:13;:15::i;:::-;54551:27;;54528:537;54612:14;54597:11;:29;54528:537;;54695:11;:14;54707:1;54695:14;;;;;;;;;;;54683:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54732:9;:16;;;54728:73;;;54773:8;;54728:73;54849:1;54823:28;;:9;:14;;;:28;;;54819:111;;54896:9;:14;;;54876:34;;54819:111;54973:5;54952:26;;:17;:26;;;54948:102;;;55029:1;55003:8;55012:13;;;;;;55003:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;54948:102;54528:537;54645:3;;;;;54528:537;;;;55086:8;55079:15;;;;;;;54115:998;;;:::o;66031:114::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66133:4:::1;66125:5;;:12;;;;;;;;;;;;;;;;;;66031:114:::0;:::o;61434:26::-;;;;:::o;72581:566::-;72685:4;72769:12;72811:10;72794:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72784:39;;;;;;72769:54;;72983:50;73002:12;;72983:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73016:10;;73028:4;72983:18;:50::i;:::-;72961:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;73135:4;73128:11;;;72581:566;;;;:::o;32756:104::-;32812:13;32845:7;32838:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32756:104;:::o;51093:2573::-;51228:16;51295:4;51286:5;:13;51282:45;;51308:19;;;;;;;;;;;;;;51282:45;51342:19;51376:17;51396:13;;51376:33;;51495:15;:13;:15::i;:::-;51487:5;:23;51483:87;;;51539:15;:13;:15::i;:::-;51531:23;;51483:87;51650:9;51643:4;:16;51639:73;;;51687:9;51680:16;;51639:73;51726:25;51754:16;51764:5;51754:9;:16::i;:::-;51726:44;;51948:4;51940:5;:12;51936:278;;;51973:19;52002:5;51995:4;:12;51973:34;;52044:17;52030:11;:31;52026:111;;;52106:11;52086:31;;52026:111;51954:198;51936:278;;;52197:1;52177:21;;51936:278;52228:25;52270:17;52256:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52228:60;;52328:1;52307:17;:22;52303:78;;;52357:8;52350:15;;;;;;;;52303:78;52525:31;52559:26;52579:5;52559:19;:26::i;:::-;52525:60;;52600:25;52845:9;:16;;;52840:92;;52902:9;:14;;;52882:34;;52840:92;52969:9;52981:5;52969:17;;52946:543;53010:4;53005:1;:9;;:45;;;;;53033:17;53018:11;:32;;53005:45;52946:543;;;53119:11;:14;53131:1;53119:14;;;;;;;;;;;53107:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53156:9;:16;;;53152:73;;;53197:8;;53152:73;53273:1;53247:28;;:9;:14;;;:28;;;53243:111;;53320:9;:14;;;53300:34;;53243:111;53397:5;53376:26;;:17;:26;;;53372:102;;;53453:1;53427:8;53436:13;;;;;;53427:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;53372:102;52946:543;53069:3;;;;;52946:543;;;;53591:11;53581:8;53574:29;53639:8;53632:15;;;;;;;;51093:2573;;;;;;:::o;34581:319::-;34724:12;:10;:12::i;:::-;34712:24;;:8;:24;;;34708:54;;;34745:17;;;;;;;;;;;;;;34708:54;34820:8;34775:18;:32;34794:12;:10;:12::i;:::-;34775:32;;;;;;;;;;;;;;;:42;34808:8;34775:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34873:8;34844:48;;34859:12;:10;:12::i;:::-;34844:48;;;34883:8;34844:48;;;;;;:::i;:::-;;;;;;;;34581:319;;:::o;67317:112::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;67395:15:::1;:26;67411:9;67395:26;;;;;;;;;;;;;;;;67388:33;;;;;;;;;;;67317:112:::0;:::o;35749:392::-;35916:28;35926:4;35932:2;35936:7;35916:9;:28::i;:::-;35959:15;:2;:13;;;:15::i;:::-;35955:179;;;35994:56;36025:4;36031:2;36035:7;36044:5;35994:30;:56::i;:::-;35989:145;;36078:40;;;;;;;;;;;;;;35989:145;35955:179;35749:392;;;;:::o;49544:459::-;49656:21;;:::i;:::-;49695:31;;:::i;:::-;49751:15;:13;:15::i;:::-;49741:7;:25;:53;;;;49781:13;;49770:7;:24;;49741:53;49737:102;;;49818:9;49811:16;;;;;49737:102;49861:11;:20;49873:7;49861:20;;;;;;;;;;;49849:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49896:9;:16;;;49892:65;;;49936:9;49929:16;;;;;49892:65;49974:21;49987:7;49974:12;:21::i;:::-;49967:28;;;49544:459;;;;:::o;32931:424::-;33049:13;33085:16;33093:7;33085;:16::i;:::-;33080:59;;33110:29;;;;;;;;;;;;;;33080:59;33152:21;33176:10;:8;:10::i;:::-;33152:34;;33242:1;33223:7;33217:21;:26;;:130;;;;;;;;;;;;;;;;;33287:7;33296:18;:7;:16;:18::i;:::-;33270:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33217:130;33197:150;;;32931:424;;;:::o;69978:278::-;70164:14;70180:2;70184;70188;65790:41;65804:14;65820:2;65824;65828;65790:13;:41::i;:::-;65782:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;70244:4:::1;70234:7;:14;;;;;;;;;;;;:::i;:::-;;69978:278:::0;;;;;;;;;:::o;68048:269::-;68229:14;68245:2;68249;68253;65790:41;65804:14;65820:2;65824;65828;65790:13;:41::i;:::-;65782:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;68305:4:::1;68297:5;;:12;;;;;;;;;;;;;;;;;;68048:269:::0;;;;;;;;;:::o;66198:148::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66282:4:::1;66265:13;:11;:13::i;:::-;:21;66257:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;66333:5;;66326:12;;;;;;;;;;;66198:148::o:0;68729:282::-;68912:14;68928:2;68932;68936;65790:41;65804:14;65820:2;65824;65828;65790:13;:41::i;:::-;65782:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;68999:4:::1;68986:10;:17;;;;68729:282:::0;;;;;;;;;:::o;34971:214::-;35113:4;35142:18;:25;35161:5;35142:25;;;;;;;;;;;;;;;:35;35168:8;35142:35;;;;;;;;;;;;;;;;;;;;;;;;;35135:42;;34971:214;;;;:::o;67090:99::-;64990:5;;;;;;;;;;;64976:19;;:10;:19;;;64968:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;67177:4:::1;67153:15;:21;67169:4;67153:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;67090:99:::0;:::o;61467:29::-;;;;:::o;14592:326::-;14652:4;14909:1;14887:7;:19;;;:23;14880:30;;14592:326;;;:::o;26253:207::-;26383:4;26427:25;26412:40;;;:11;:40;;;;26405:47;;26253:207;;;:::o;36396:213::-;36453:4;36509:7;36490:15;:13;:15::i;:::-;:26;;:66;;;;;36543:13;;36533:7;:23;36490:66;:111;;;;;36574:11;:20;36586:7;36574:20;;;;;;;;;;;:27;;;;;;;;;;;;36573:28;36490:111;36470:131;;36396:213;;;:::o;23012:98::-;23065:7;23092:10;23085:17;;23012:98;:::o;28315:92::-;28371:7;28315:92;:::o;71375:921::-;71522:4;71677:10;71666:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;71656:33;;;;;;71638:14;:51;71630:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;71800:19;:56;;;;;;;;;;;;;;;;;;;71915:27;71986:6;71994:14;71969:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71945:75;;;;;;71915:105;;72088:14;72105:42;72115:19;72136:2;72140;72144;72105:42;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72088:59;;72267:5;;;;;;;;;;;72257:15;;:6;:15;;;72256:32;;72283:5;72256:32;;;72276:4;72256:32;72249:39;;;;;71375:921;;;;;;:::o;40796:2127::-;40911:35;40949:21;40962:7;40949:12;:21::i;:::-;40911:59;;41009:4;40987:26;;:13;:18;;;:26;;;40983:67;;41022:28;;;;;;;;;;;;;;40983:67;41063:22;41105:4;41089:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41126:36;41143:4;41149:12;:10;:12::i;:::-;41126:16;:36::i;:::-;41089:73;:126;;;;41203:12;:10;:12::i;:::-;41179:36;;:20;41191:7;41179:11;:20::i;:::-;:36;;;41089:126;41063:153;;41234:17;41229:66;;41260:35;;;;;;;;;;;;;;41229:66;41324:1;41310:16;;:2;:16;;;41306:52;;;41335:23;;;;;;;;;;;;;;41306:52;41371:43;41393:4;41399:2;41403:7;41412:1;41371:21;:43::i;:::-;41487:15;:24;41503:7;41487:24;;;;;;;;;;;;41480:31;;;;;;;;;;;41837:1;41807:12;:18;41820:4;41807:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41881:1;41853:12;:16;41866:2;41853:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41899:31;41933:11;:20;41945:7;41933:20;;;;;;;;;;;41899:54;;41984:2;41968:8;:13;;;:18;;;;;;;;;;;;;;;;;;42034:15;42001:8;:23;;;:49;;;;;;;;;;;;;;;;;;42302:19;42334:1;42324:7;:11;42302:33;;42350:31;42384:11;:24;42396:11;42384:24;;;;;;;;;;;42350:58;;42452:1;42427:27;;:8;:13;;;;;;;;;;;;:27;;;42423:384;;;42637:13;;42622:11;:28;42618:174;;42691:4;42675:8;:13;;;:20;;;;;;;;;;;;;;;;;;42744:13;:28;;;42718:8;:23;;;:54;;;;;;;;;;;;;;;;;;42618:174;42423:384;41782:1036;;;42854:7;42850:2;42835:27;;42844:4;42835:27;;;;;;;;;;;;42873:42;42894:4;42900:2;42904:7;42913:1;42873:20;:42::i;:::-;40900:2023;;40796:2127;;;:::o;36693:104::-;36762:27;36772:2;36776:8;36762:27;;;;;;;;;;;;:9;:27::i;:::-;36693:104;;:::o;31101:1232::-;31190:21;;:::i;:::-;31229:12;31244:7;31229:22;;31312:4;31293:15;:13;:15::i;:::-;:23;31289:977;;31346:13;;31339:4;:20;31335:931;;;31384:31;31418:11;:17;31430:4;31418:17;;;;;;;;;;;31384:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31463:9;:16;;;31458:789;;31538:1;31512:28;;:9;:14;;;:28;;;31508:109;;31580:9;31573:16;;;;;;31508:109;31939:285;31946:4;31939:285;;;31983:6;;;;;;;;32032:11;:17;32044:4;32032:17;;;;;;;;;;;32020:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32110:1;32084:28;;:9;:14;;;:28;;;32080:117;;32156:9;32149:16;;;;;;32080:117;31939:285;;;31458:789;31361:905;31335:931;31289:977;32294:31;;;;;;;;;;;;;;31101:1232;;;;:::o;56344:190::-;56469:4;56522;56493:25;56506:5;56513:4;56493:12;:25::i;:::-;:33;56486:40;;56344:190;;;;;:::o;46216:772::-;46379:4;46429:2;46413:36;;;46468:12;:10;:12::i;:::-;46499:4;46522:7;46548:5;46413:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46396:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46756:1;46739:6;:13;:18;46735:235;;;46785:40;;;;;;;;;;;;;;46735:235;46928:6;46922:13;46913:6;46909:2;46905:15;46898:38;46396:585;46634:45;;;46624:55;;;:6;:55;;;;46617:62;;;46216:772;;;;;;:::o;77864:130::-;77924:13;77957:7;77950:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77864:130;:::o;23595:723::-;23651:13;23881:1;23872:5;:10;23868:53;;;23899:10;;;;;;;;;;;;;;;;;;;;;23868:53;23931:12;23946:5;23931:20;;23962:14;23987:78;24002:1;23994:4;:9;23987:78;;24020:8;;;;;:::i;:::-;;;;24051:2;24043:10;;;;;:::i;:::-;;;23987:78;;;24075:19;24107:6;24097:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24075:39;;24125:154;24141:1;24132:5;:10;24125:154;;24169:1;24159:11;;;;;:::i;:::-;;;24236:2;24228:5;:10;;;;:::i;:::-;24215:2;:24;;;;:::i;:::-;24202:39;;24185:6;24192;24185:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;24265:2;24256:11;;;;;:::i;:::-;;;24125:154;;;24303:6;24289:21;;;;;23595:723;;;;:::o;47636:159::-;;;;;:::o;48454:158::-;;;;;:::o;37170:1940::-;37293:20;37316:13;;37293:36;;37358:1;37344:16;;:2;:16;;;37340:48;;;37369:19;;;;;;;;;;;;;;37340:48;37415:1;37403:8;:13;37399:44;;;37425:18;;;;;;;;;;;;;;37399:44;37456:61;37486:1;37490:2;37494:12;37508:8;37456:21;:61::i;:::-;37829:8;37794:12;:16;37807:2;37794:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37893:8;37853:12;:16;37866:2;37853:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37952:2;37919:11;:25;37931:12;37919:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38019:15;37969:11;:25;37981:12;37969:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38052:20;38075:12;38052:35;;38102:11;38131:8;38116:12;:23;38102:37;;38160:15;:2;:13;;;:15::i;:::-;38156:822;;;38196:504;38252:12;38248:2;38227:38;;38244:1;38227:38;;;;;;;;;;;;38319:212;38388:1;38421:2;38454:14;;;;;;38499:5;38319:30;:212::i;:::-;38288:365;;38589:40;;;;;;;;;;;;;;38288:365;38695:3;38680:12;:18;38196:504;;38781:12;38764:13;;:29;38760:43;;38795:8;;;38760:43;38156:822;;;38844:119;38900:14;;;;;;38896:2;38875:40;;38892:1;38875:40;;;;;;;;;;;;38958:3;38943:12;:18;38844:119;;38156:822;39008:12;38992:13;:28;;;;37769:1263;;39042:60;39071:1;39075:2;39079:12;39093:8;39042:20;:60::i;:::-;37282:1828;37170:1940;;;:::o;56895:707::-;57005:7;57030:20;57053:4;57030:27;;57073:9;57068:497;57092:5;:12;57088:1;:16;57068:497;;;57126:20;57149:5;57155:1;57149:8;;;;;;;;:::i;:::-;;;;;;;;57126:31;;57192:12;57176;:28;57172:382;;57319:42;57334:12;57348;57319:14;:42::i;:::-;57304:57;;57172:382;;;57496:42;57511:12;57525;57496:14;:42::i;:::-;57481:57;;57172:382;57111:454;57106:3;;;;;:::i;:::-;;;;57068:497;;;;57582:12;57575:19;;;56895:707;;;;:::o;57610:256::-;57705:13;57773:1;57767:4;57760:15;57802:1;57796:4;57789:15;57843:4;57837;57827:21;57818:30;;57610:256;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:568::-;1821:8;1831:6;1881:3;1874:4;1866:6;1862:17;1858:27;1848:122;;1889:79;;:::i;:::-;1848:122;2002:6;1989:20;1979:30;;2032:18;2024:6;2021:30;2018:117;;;2054:79;;:::i;:::-;2018:117;2168:4;2160:6;2156:17;2144:29;;2222:3;2214:4;2206:6;2202:17;2192:8;2188:32;2185:41;2182:128;;;2229:79;;:::i;:::-;2182:128;1748:568;;;;;:::o;2339:370::-;2410:5;2459:3;2452:4;2444:6;2440:17;2436:27;2426:122;;2467:79;;:::i;:::-;2426:122;2584:6;2571:20;2609:94;2699:3;2691:6;2684:4;2676:6;2672:17;2609:94;:::i;:::-;2600:103;;2416:293;2339:370;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:135::-;4195:5;4233:6;4220:20;4211:29;;4249:31;4274:5;4249:31;:::i;:::-;4151:135;;;;:::o;4292:329::-;4351:6;4400:2;4388:9;4379:7;4375:23;4371:32;4368:119;;;4406:79;;:::i;:::-;4368:119;4526:1;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4497:117;4292:329;;;;:::o;4627:474::-;4695:6;4703;4752:2;4740:9;4731:7;4727:23;4723:32;4720:119;;;4758:79;;:::i;:::-;4720:119;4878:1;4903:53;4948:7;4939:6;4928:9;4924:22;4903:53;:::i;:::-;4893:63;;4849:117;5005:2;5031:53;5076:7;5067:6;5056:9;5052:22;5031:53;:::i;:::-;5021:63;;4976:118;4627:474;;;;;:::o;5107:619::-;5184:6;5192;5200;5249:2;5237:9;5228:7;5224:23;5220:32;5217:119;;;5255:79;;:::i;:::-;5217:119;5375:1;5400:53;5445:7;5436:6;5425:9;5421:22;5400:53;:::i;:::-;5390:63;;5346:117;5502:2;5528:53;5573:7;5564:6;5553:9;5549:22;5528:53;:::i;:::-;5518:63;;5473:118;5630:2;5656:53;5701:7;5692:6;5681:9;5677:22;5656:53;:::i;:::-;5646:63;;5601:118;5107:619;;;;;:::o;5732:943::-;5827:6;5835;5843;5851;5900:3;5888:9;5879:7;5875:23;5871:33;5868:120;;;5907:79;;:::i;:::-;5868:120;6027:1;6052:53;6097:7;6088:6;6077:9;6073:22;6052:53;:::i;:::-;6042:63;;5998:117;6154:2;6180:53;6225:7;6216:6;6205:9;6201:22;6180:53;:::i;:::-;6170:63;;6125:118;6282:2;6308:53;6353:7;6344:6;6333:9;6329:22;6308:53;:::i;:::-;6298:63;;6253:118;6438:2;6427:9;6423:18;6410:32;6469:18;6461:6;6458:30;6455:117;;;6491:79;;:::i;:::-;6455:117;6596:62;6650:7;6641:6;6630:9;6626:22;6596:62;:::i;:::-;6586:72;;6381:287;5732:943;;;;;;;:::o;6681:468::-;6746:6;6754;6803:2;6791:9;6782:7;6778:23;6774:32;6771:119;;;6809:79;;:::i;:::-;6771:119;6929:1;6954:53;6999:7;6990:6;6979:9;6975:22;6954:53;:::i;:::-;6944:63;;6900:117;7056:2;7082:50;7124:7;7115:6;7104:9;7100:22;7082:50;:::i;:::-;7072:60;;7027:115;6681:468;;;;;:::o;7155:907::-;7248:6;7256;7264;7272;7280;7329:3;7317:9;7308:7;7304:23;7300:33;7297:120;;;7336:79;;:::i;:::-;7297:120;7456:1;7481:53;7526:7;7517:6;7506:9;7502:22;7481:53;:::i;:::-;7471:63;;7427:117;7583:2;7609:53;7654:7;7645:6;7634:9;7630:22;7609:53;:::i;:::-;7599:63;;7554:118;7711:2;7737:51;7780:7;7771:6;7760:9;7756:22;7737:51;:::i;:::-;7727:61;;7682:116;7837:2;7863:53;7908:7;7899:6;7888:9;7884:22;7863:53;:::i;:::-;7853:63;;7808:118;7965:3;7992:53;8037:7;8028:6;8017:9;8013:22;7992:53;:::i;:::-;7982:63;;7936:119;7155:907;;;;;;;;:::o;8068:474::-;8136:6;8144;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:53;8389:7;8380:6;8369:9;8365:22;8344:53;:::i;:::-;8334:63;;8290:117;8446:2;8472:53;8517:7;8508:6;8497:9;8493:22;8472:53;:::i;:::-;8462:63;;8417:118;8068:474;;;;;:::o;8548:619::-;8625:6;8633;8641;8690:2;8678:9;8669:7;8665:23;8661:32;8658:119;;;8696:79;;:::i;:::-;8658:119;8816:1;8841:53;8886:7;8877:6;8866:9;8862:22;8841:53;:::i;:::-;8831:63;;8787:117;8943:2;8969:53;9014:7;9005:6;8994:9;8990:22;8969:53;:::i;:::-;8959:63;;8914:118;9071:2;9097:53;9142:7;9133:6;9122:9;9118:22;9097:53;:::i;:::-;9087:63;;9042:118;8548:619;;;;;:::o;9173:559::-;9259:6;9267;9316:2;9304:9;9295:7;9291:23;9287:32;9284:119;;;9322:79;;:::i;:::-;9284:119;9470:1;9459:9;9455:17;9442:31;9500:18;9492:6;9489:30;9486:117;;;9522:79;;:::i;:::-;9486:117;9635:80;9707:7;9698:6;9687:9;9683:22;9635:80;:::i;:::-;9617:98;;;;9413:312;9173:559;;;;;:::o;9738:539::-;9822:6;9871:2;9859:9;9850:7;9846:23;9842:32;9839:119;;;9877:79;;:::i;:::-;9839:119;10025:1;10014:9;10010:17;9997:31;10055:18;10047:6;10044:30;10041:117;;;10077:79;;:::i;:::-;10041:117;10182:78;10252:7;10243:6;10232:9;10228:22;10182:78;:::i;:::-;10172:88;;9968:302;9738:539;;;;:::o;10283:323::-;10339:6;10388:2;10376:9;10367:7;10363:23;10359:32;10356:119;;;10394:79;;:::i;:::-;10356:119;10514:1;10539:50;10581:7;10572:6;10561:9;10557:22;10539:50;:::i;:::-;10529:60;;10485:114;10283:323;;;;:::o;10612:901::-;10702:6;10710;10718;10726;10734;10783:3;10771:9;10762:7;10758:23;10754:33;10751:120;;;10790:79;;:::i;:::-;10751:120;10910:1;10935:50;10977:7;10968:6;10957:9;10953:22;10935:50;:::i;:::-;10925:60;;10881:114;11034:2;11060:53;11105:7;11096:6;11085:9;11081:22;11060:53;:::i;:::-;11050:63;;11005:118;11162:2;11188:51;11231:7;11222:6;11211:9;11207:22;11188:51;:::i;:::-;11178:61;;11133:116;11288:2;11314:53;11359:7;11350:6;11339:9;11335:22;11314:53;:::i;:::-;11304:63;;11259:118;11416:3;11443:53;11488:7;11479:6;11468:9;11464:22;11443:53;:::i;:::-;11433:63;;11387:119;10612:901;;;;;;;;:::o;11519:329::-;11578:6;11627:2;11615:9;11606:7;11602:23;11598:32;11595:119;;;11633:79;;:::i;:::-;11595:119;11753:1;11778:53;11823:7;11814:6;11803:9;11799:22;11778:53;:::i;:::-;11768:63;;11724:117;11519:329;;;;:::o;11854:907::-;11947:6;11955;11963;11971;11979;12028:3;12016:9;12007:7;12003:23;11999:33;11996:120;;;12035:79;;:::i;:::-;11996:120;12155:1;12180:53;12225:7;12216:6;12205:9;12201:22;12180:53;:::i;:::-;12170:63;;12126:117;12282:2;12308:53;12353:7;12344:6;12333:9;12329:22;12308:53;:::i;:::-;12298:63;;12253:118;12410:2;12436:51;12479:7;12470:6;12459:9;12455:22;12436:51;:::i;:::-;12426:61;;12381:116;12536:2;12562:53;12607:7;12598:6;12587:9;12583:22;12562:53;:::i;:::-;12552:63;;12507:118;12664:3;12691:53;12736:7;12727:6;12716:9;12712:22;12691:53;:::i;:::-;12681:63;;12635:119;11854:907;;;;;;;;:::o;12767:761::-;12851:6;12859;12867;12875;12924:3;12912:9;12903:7;12899:23;12895:33;12892:120;;;12931:79;;:::i;:::-;12892:120;13051:1;13076:53;13121:7;13112:6;13101:9;13097:22;13076:53;:::i;:::-;13066:63;;13022:117;13178:2;13204:51;13247:7;13238:6;13227:9;13223:22;13204:51;:::i;:::-;13194:61;;13149:116;13304:2;13330:53;13375:7;13366:6;13355:9;13351:22;13330:53;:::i;:::-;13320:63;;13275:118;13432:2;13458:53;13503:7;13494:6;13483:9;13479:22;13458:53;:::i;:::-;13448:63;;13403:118;12767:761;;;;;;;:::o;13534:327::-;13592:6;13641:2;13629:9;13620:7;13616:23;13612:32;13609:119;;;13647:79;;:::i;:::-;13609:119;13767:1;13792:52;13836:7;13827:6;13816:9;13812:22;13792:52;:::i;:::-;13782:62;;13738:116;13534:327;;;;:::o;13867:349::-;13936:6;13985:2;13973:9;13964:7;13960:23;13956:32;13953:119;;;13991:79;;:::i;:::-;13953:119;14111:1;14136:63;14191:7;14182:6;14171:9;14167:22;14136:63;:::i;:::-;14126:73;;14082:127;13867:349;;;;:::o;14222:509::-;14291:6;14340:2;14328:9;14319:7;14315:23;14311:32;14308:119;;;14346:79;;:::i;:::-;14308:119;14494:1;14483:9;14479:17;14466:31;14524:18;14516:6;14513:30;14510:117;;;14546:79;;:::i;:::-;14510:117;14651:63;14706:7;14697:6;14686:9;14682:22;14651:63;:::i;:::-;14641:73;;14437:287;14222:509;;;;:::o;14737:1087::-;14840:6;14848;14856;14864;14872;14921:3;14909:9;14900:7;14896:23;14892:33;14889:120;;;14928:79;;:::i;:::-;14889:120;15076:1;15065:9;15061:17;15048:31;15106:18;15098:6;15095:30;15092:117;;;15128:79;;:::i;:::-;15092:117;15233:63;15288:7;15279:6;15268:9;15264:22;15233:63;:::i;:::-;15223:73;;15019:287;15345:2;15371:53;15416:7;15407:6;15396:9;15392:22;15371:53;:::i;:::-;15361:63;;15316:118;15473:2;15499:51;15542:7;15533:6;15522:9;15518:22;15499:51;:::i;:::-;15489:61;;15444:116;15599:2;15625:53;15670:7;15661:6;15650:9;15646:22;15625:53;:::i;:::-;15615:63;;15570:118;15727:3;15754:53;15799:7;15790:6;15779:9;15775:22;15754:53;:::i;:::-;15744:63;;15698:119;14737:1087;;;;;;;;:::o;15830:329::-;15889:6;15938:2;15926:9;15917:7;15913:23;15909:32;15906:119;;;15944:79;;:::i;:::-;15906:119;16064:1;16089:53;16134:7;16125:6;16114:9;16110:22;16089:53;:::i;:::-;16079:63;;16035:117;15830:329;;;;:::o;16165:325::-;16222:6;16271:2;16259:9;16250:7;16246:23;16242:32;16239:119;;;16277:79;;:::i;:::-;16239:119;16397:1;16422:51;16465:7;16456:6;16445:9;16441:22;16422:51;:::i;:::-;16412:61;;16368:115;16165:325;;;;:::o;16496:700::-;16589:6;16597;16605;16654:2;16642:9;16633:7;16629:23;16625:32;16622:119;;;16660:79;;:::i;:::-;16622:119;16780:1;16805:51;16848:7;16839:6;16828:9;16824:22;16805:51;:::i;:::-;16795:61;;16751:115;16933:2;16922:9;16918:18;16905:32;16964:18;16956:6;16953:30;16950:117;;;16986:79;;:::i;:::-;16950:117;17099:80;17171:7;17162:6;17151:9;17147:22;17099:80;:::i;:::-;17081:98;;;;16876:313;16496:700;;;;;:::o;17202:303::-;17333:10;17354:108;17458:3;17450:6;17354:108;:::i;:::-;17494:4;17489:3;17485:14;17471:28;;17202:303;;;;:::o;17511:179::-;17580:10;17601:46;17643:3;17635:6;17601:46;:::i;:::-;17679:4;17674:3;17670:14;17656:28;;17511:179;;;;:::o;17696:108::-;17773:24;17791:5;17773:24;:::i;:::-;17768:3;17761:37;17696:108;;:::o;17810:118::-;17897:24;17915:5;17897:24;:::i;:::-;17892:3;17885:37;17810:118;;:::o;17934:157::-;18039:45;18059:24;18077:5;18059:24;:::i;:::-;18039:45;:::i;:::-;18034:3;18027:58;17934:157;;:::o;18173:980::-;18354:3;18383:85;18462:5;18383:85;:::i;:::-;18484:117;18594:6;18589:3;18484:117;:::i;:::-;18477:124;;18625:87;18706:5;18625:87;:::i;:::-;18735:7;18766:1;18751:377;18776:6;18773:1;18770:13;18751:377;;;18852:6;18846:13;18879:125;19000:3;18985:13;18879:125;:::i;:::-;18872:132;;19027:91;19111:6;19027:91;:::i;:::-;19017:101;;18811:317;18798:1;18795;18791:9;18786:14;;18751:377;;;18755:14;19144:3;19137:10;;18359:794;;;18173:980;;;;:::o;19189:732::-;19308:3;19337:54;19385:5;19337:54;:::i;:::-;19407:86;19486:6;19481:3;19407:86;:::i;:::-;19400:93;;19517:56;19567:5;19517:56;:::i;:::-;19596:7;19627:1;19612:284;19637:6;19634:1;19631:13;19612:284;;;19713:6;19707:13;19740:63;19799:3;19784:13;19740:63;:::i;:::-;19733:70;;19826:60;19879:6;19826:60;:::i;:::-;19816:70;;19672:224;19659:1;19656;19652:9;19647:14;;19612:284;;;19616:14;19912:3;19905:10;;19313:608;;;19189:732;;;;:::o;19927:99::-;19998:21;20013:5;19998:21;:::i;:::-;19993:3;19986:34;19927:99;;:::o;20032:109::-;20113:21;20128:5;20113:21;:::i;:::-;20108:3;20101:34;20032:109;;:::o;20147:118::-;20234:24;20252:5;20234:24;:::i;:::-;20229:3;20222:37;20147:118;;:::o;20271:157::-;20376:45;20396:24;20414:5;20396:24;:::i;:::-;20376:45;:::i;:::-;20371:3;20364:58;20271:157;;:::o;20434:360::-;20520:3;20548:38;20580:5;20548:38;:::i;:::-;20602:70;20665:6;20660:3;20602:70;:::i;:::-;20595:77;;20681:52;20726:6;20721:3;20714:4;20707:5;20703:16;20681:52;:::i;:::-;20758:29;20780:6;20758:29;:::i;:::-;20753:3;20749:39;20742:46;;20524:270;20434:360;;;;:::o;20800:373::-;20904:3;20932:38;20964:5;20932:38;:::i;:::-;20986:88;21067:6;21062:3;20986:88;:::i;:::-;20979:95;;21083:52;21128:6;21123:3;21116:4;21109:5;21105:16;21083:52;:::i;:::-;21160:6;21155:3;21151:16;21144:23;;20908:265;20800:373;;;;:::o;21179:364::-;21267:3;21295:39;21328:5;21295:39;:::i;:::-;21350:71;21414:6;21409:3;21350:71;:::i;:::-;21343:78;;21430:52;21475:6;21470:3;21463:4;21456:5;21452:16;21430:52;:::i;:::-;21507:29;21529:6;21507:29;:::i;:::-;21502:3;21498:39;21491:46;;21271:272;21179:364;;;;:::o;21549:377::-;21655:3;21683:39;21716:5;21683:39;:::i;:::-;21738:89;21820:6;21815:3;21738:89;:::i;:::-;21731:96;;21836:52;21881:6;21876:3;21869:4;21862:5;21858:16;21836:52;:::i;:::-;21913:6;21908:3;21904:16;21897:23;;21659:267;21549:377;;;;:::o;21932:365::-;22074:3;22095:66;22159:1;22154:3;22095:66;:::i;:::-;22088:73;;22170:93;22259:3;22170:93;:::i;:::-;22288:2;22283:3;22279:12;22272:19;;21932:365;;;:::o;22303:::-;22445:3;22466:66;22530:1;22525:3;22466:66;:::i;:::-;22459:73;;22541:93;22630:3;22541:93;:::i;:::-;22659:2;22654:3;22650:12;22643:19;;22303:365;;;:::o;22674:::-;22816:3;22837:66;22901:1;22896:3;22837:66;:::i;:::-;22830:73;;22912:93;23001:3;22912:93;:::i;:::-;23030:2;23025:3;23021:12;23014:19;;22674:365;;;:::o;23045:::-;23187:3;23208:66;23272:1;23267:3;23208:66;:::i;:::-;23201:73;;23283:93;23372:3;23283:93;:::i;:::-;23401:2;23396:3;23392:12;23385:19;;23045:365;;;:::o;23416:::-;23558:3;23579:66;23643:1;23638:3;23579:66;:::i;:::-;23572:73;;23654:93;23743:3;23654:93;:::i;:::-;23772:2;23767:3;23763:12;23756:19;;23416:365;;;:::o;23787:::-;23929:3;23950:66;24014:1;24009:3;23950:66;:::i;:::-;23943:73;;24025:93;24114:3;24025:93;:::i;:::-;24143:2;24138:3;24134:12;24127:19;;23787:365;;;:::o;24158:::-;24300:3;24321:66;24385:1;24380:3;24321:66;:::i;:::-;24314:73;;24396:93;24485:3;24396:93;:::i;:::-;24514:2;24509:3;24505:12;24498:19;;24158:365;;;:::o;24529:::-;24671:3;24692:66;24756:1;24751:3;24692:66;:::i;:::-;24685:73;;24767:93;24856:3;24767:93;:::i;:::-;24885:2;24880:3;24876:12;24869:19;;24529:365;;;:::o;24900:::-;25042:3;25063:66;25127:1;25122:3;25063:66;:::i;:::-;25056:73;;25138:93;25227:3;25138:93;:::i;:::-;25256:2;25251:3;25247:12;25240:19;;24900:365;;;:::o;25271:::-;25413:3;25434:66;25498:1;25493:3;25434:66;:::i;:::-;25427:73;;25509:93;25598:3;25509:93;:::i;:::-;25627:2;25622:3;25618:12;25611:19;;25271:365;;;:::o;25642:::-;25784:3;25805:66;25869:1;25864:3;25805:66;:::i;:::-;25798:73;;25880:93;25969:3;25880:93;:::i;:::-;25998:2;25993:3;25989:12;25982:19;;25642:365;;;:::o;26013:398::-;26172:3;26193:83;26274:1;26269:3;26193:83;:::i;:::-;26186:90;;26285:93;26374:3;26285:93;:::i;:::-;26403:1;26398:3;26394:11;26387:18;;26013:398;;;:::o;26417:365::-;26559:3;26580:66;26644:1;26639:3;26580:66;:::i;:::-;26573:73;;26655:93;26744:3;26655:93;:::i;:::-;26773:2;26768:3;26764:12;26757:19;;26417:365;;;:::o;26788:366::-;26930:3;26951:67;27015:2;27010:3;26951:67;:::i;:::-;26944:74;;27027:93;27116:3;27027:93;:::i;:::-;27145:2;27140:3;27136:12;27129:19;;26788:366;;;:::o;27160:365::-;27302:3;27323:66;27387:1;27382:3;27323:66;:::i;:::-;27316:73;;27398:93;27487:3;27398:93;:::i;:::-;27516:2;27511:3;27507:12;27500:19;;27160:365;;;:::o;27531:::-;27673:3;27694:66;27758:1;27753:3;27694:66;:::i;:::-;27687:73;;27769:93;27858:3;27769:93;:::i;:::-;27887:2;27882:3;27878:12;27871:19;;27531:365;;;:::o;27902:400::-;28062:3;28083:84;28165:1;28160:3;28083:84;:::i;:::-;28076:91;;28176:93;28265:3;28176:93;:::i;:::-;28294:1;28289:3;28285:11;28278:18;;27902:400;;;:::o;28308:365::-;28450:3;28471:66;28535:1;28530:3;28471:66;:::i;:::-;28464:73;;28546:93;28635:3;28546:93;:::i;:::-;28664:2;28659:3;28655:12;28648:19;;28308:365;;;:::o;28751:687::-;28900:4;28895:3;28891:14;28987:4;28980:5;28976:16;28970:23;29006:63;29063:4;29058:3;29054:14;29040:12;29006:63;:::i;:::-;28915:164;29171:4;29164:5;29160:16;29154:23;29190:61;29245:4;29240:3;29236:14;29222:12;29190:61;:::i;:::-;29089:172;29345:4;29338:5;29334:16;29328:23;29364:57;29415:4;29410:3;29406:14;29392:12;29364:57;:::i;:::-;29271:160;28869:569;28751:687;;:::o;29516:697::-;29675:4;29670:3;29666:14;29762:4;29755:5;29751:16;29745:23;29781:63;29838:4;29833:3;29829:14;29815:12;29781:63;:::i;:::-;29690:164;29946:4;29939:5;29935:16;29929:23;29965:61;30020:4;30015:3;30011:14;29997:12;29965:61;:::i;:::-;29864:172;30120:4;30113:5;30109:16;30103:23;30139:57;30190:4;30185:3;30181:14;30167:12;30139:57;:::i;:::-;30046:160;29644:569;29516:697;;:::o;30219:108::-;30296:24;30314:5;30296:24;:::i;:::-;30291:3;30284:37;30219:108;;:::o;30333:118::-;30420:24;30438:5;30420:24;:::i;:::-;30415:3;30408:37;30333:118;;:::o;30457:105::-;30532:23;30549:5;30532:23;:::i;:::-;30527:3;30520:36;30457:105;;:::o;30568:112::-;30651:22;30667:5;30651:22;:::i;:::-;30646:3;30639:35;30568:112;;:::o;30686:256::-;30798:3;30813:75;30884:3;30875:6;30813:75;:::i;:::-;30913:2;30908:3;30904:12;30897:19;;30933:3;30926:10;;30686:256;;;;:::o;30948:412::-;31106:3;31128:93;31217:3;31208:6;31128:93;:::i;:::-;31121:100;;31231:75;31302:3;31293:6;31231:75;:::i;:::-;31331:2;31326:3;31322:12;31315:19;;31351:3;31344:10;;30948:412;;;;;:::o;31366:701::-;31647:3;31669:95;31760:3;31751:6;31669:95;:::i;:::-;31662:102;;31781:95;31872:3;31863:6;31781:95;:::i;:::-;31774:102;;31893:148;32037:3;31893:148;:::i;:::-;31886:155;;32058:3;32051:10;;31366:701;;;;;:::o;32073:379::-;32257:3;32279:147;32422:3;32279:147;:::i;:::-;32272:154;;32443:3;32436:10;;32073:379;;;:::o;32458:222::-;32551:4;32589:2;32578:9;32574:18;32566:26;;32602:71;32670:1;32659:9;32655:17;32646:6;32602:71;:::i;:::-;32458:222;;;;:::o;32686:640::-;32881:4;32919:3;32908:9;32904:19;32896:27;;32933:71;33001:1;32990:9;32986:17;32977:6;32933:71;:::i;:::-;33014:72;33082:2;33071:9;33067:18;33058:6;33014:72;:::i;:::-;33096;33164:2;33153:9;33149:18;33140:6;33096:72;:::i;:::-;33215:9;33209:4;33205:20;33200:2;33189:9;33185:18;33178:48;33243:76;33314:4;33305:6;33243:76;:::i;:::-;33235:84;;32686:640;;;;;;;:::o;33332:497::-;33537:4;33575:2;33564:9;33560:18;33552:26;;33624:9;33618:4;33614:20;33610:1;33599:9;33595:17;33588:47;33652:170;33817:4;33808:6;33652:170;:::i;:::-;33644:178;;33332:497;;;;:::o;33835:373::-;33978:4;34016:2;34005:9;34001:18;33993:26;;34065:9;34059:4;34055:20;34051:1;34040:9;34036:17;34029:47;34093:108;34196:4;34187:6;34093:108;:::i;:::-;34085:116;;33835:373;;;;:::o;34214:210::-;34301:4;34339:2;34328:9;34324:18;34316:26;;34352:65;34414:1;34403:9;34399:17;34390:6;34352:65;:::i;:::-;34214:210;;;;:::o;34430:545::-;34603:4;34641:3;34630:9;34626:19;34618:27;;34655:71;34723:1;34712:9;34708:17;34699:6;34655:71;:::i;:::-;34736:68;34800:2;34789:9;34785:18;34776:6;34736:68;:::i;:::-;34814:72;34882:2;34871:9;34867:18;34858:6;34814:72;:::i;:::-;34896;34964:2;34953:9;34949:18;34940:6;34896:72;:::i;:::-;34430:545;;;;;;;:::o;34981:313::-;35094:4;35132:2;35121:9;35117:18;35109:26;;35181:9;35175:4;35171:20;35167:1;35156:9;35152:17;35145:47;35209:78;35282:4;35273:6;35209:78;:::i;:::-;35201:86;;34981:313;;;;:::o;35300:419::-;35466:4;35504:2;35493:9;35489:18;35481:26;;35553:9;35547:4;35543:20;35539:1;35528:9;35524:17;35517:47;35581:131;35707:4;35581:131;:::i;:::-;35573:139;;35300:419;;;:::o;35725:::-;35891:4;35929:2;35918:9;35914:18;35906:26;;35978:9;35972:4;35968:20;35964:1;35953:9;35949:17;35942:47;36006:131;36132:4;36006:131;:::i;:::-;35998:139;;35725:419;;;:::o;36150:::-;36316:4;36354:2;36343:9;36339:18;36331:26;;36403:9;36397:4;36393:20;36389:1;36378:9;36374:17;36367:47;36431:131;36557:4;36431:131;:::i;:::-;36423:139;;36150:419;;;:::o;36575:::-;36741:4;36779:2;36768:9;36764:18;36756:26;;36828:9;36822:4;36818:20;36814:1;36803:9;36799:17;36792:47;36856:131;36982:4;36856:131;:::i;:::-;36848:139;;36575:419;;;:::o;37000:::-;37166:4;37204:2;37193:9;37189:18;37181:26;;37253:9;37247:4;37243:20;37239:1;37228:9;37224:17;37217:47;37281:131;37407:4;37281:131;:::i;:::-;37273:139;;37000:419;;;:::o;37425:::-;37591:4;37629:2;37618:9;37614:18;37606:26;;37678:9;37672:4;37668:20;37664:1;37653:9;37649:17;37642:47;37706:131;37832:4;37706:131;:::i;:::-;37698:139;;37425:419;;;:::o;37850:::-;38016:4;38054:2;38043:9;38039:18;38031:26;;38103:9;38097:4;38093:20;38089:1;38078:9;38074:17;38067:47;38131:131;38257:4;38131:131;:::i;:::-;38123:139;;37850:419;;;:::o;38275:::-;38441:4;38479:2;38468:9;38464:18;38456:26;;38528:9;38522:4;38518:20;38514:1;38503:9;38499:17;38492:47;38556:131;38682:4;38556:131;:::i;:::-;38548:139;;38275:419;;;:::o;38700:::-;38866:4;38904:2;38893:9;38889:18;38881:26;;38953:9;38947:4;38943:20;38939:1;38928:9;38924:17;38917:47;38981:131;39107:4;38981:131;:::i;:::-;38973:139;;38700:419;;;:::o;39125:::-;39291:4;39329:2;39318:9;39314:18;39306:26;;39378:9;39372:4;39368:20;39364:1;39353:9;39349:17;39342:47;39406:131;39532:4;39406:131;:::i;:::-;39398:139;;39125:419;;;:::o;39550:::-;39716:4;39754:2;39743:9;39739:18;39731:26;;39803:9;39797:4;39793:20;39789:1;39778:9;39774:17;39767:47;39831:131;39957:4;39831:131;:::i;:::-;39823:139;;39550:419;;;:::o;39975:::-;40141:4;40179:2;40168:9;40164:18;40156:26;;40228:9;40222:4;40218:20;40214:1;40203:9;40199:17;40192:47;40256:131;40382:4;40256:131;:::i;:::-;40248:139;;39975:419;;;:::o;40400:::-;40566:4;40604:2;40593:9;40589:18;40581:26;;40653:9;40647:4;40643:20;40639:1;40628:9;40624:17;40617:47;40681:131;40807:4;40681:131;:::i;:::-;40673:139;;40400:419;;;:::o;40825:::-;40991:4;41029:2;41018:9;41014:18;41006:26;;41078:9;41072:4;41068:20;41064:1;41053:9;41049:17;41042:47;41106:131;41232:4;41106:131;:::i;:::-;41098:139;;40825:419;;;:::o;41250:::-;41416:4;41454:2;41443:9;41439:18;41431:26;;41503:9;41497:4;41493:20;41489:1;41478:9;41474:17;41467:47;41531:131;41657:4;41531:131;:::i;:::-;41523:139;;41250:419;;;:::o;41675:::-;41841:4;41879:2;41868:9;41864:18;41856:26;;41928:9;41922:4;41918:20;41914:1;41903:9;41899:17;41892:47;41956:131;42082:4;41956:131;:::i;:::-;41948:139;;41675:419;;;:::o;42100:346::-;42255:4;42293:2;42282:9;42278:18;42270:26;;42306:133;42436:1;42425:9;42421:17;42412:6;42306:133;:::i;:::-;42100:346;;;;:::o;42452:222::-;42545:4;42583:2;42572:9;42568:18;42560:26;;42596:71;42664:1;42653:9;42649:17;42640:6;42596:71;:::i;:::-;42452:222;;;;:::o;42680:129::-;42714:6;42741:20;;:::i;:::-;42731:30;;42770:33;42798:4;42790:6;42770:33;:::i;:::-;42680:129;;;:::o;42815:75::-;42848:6;42881:2;42875:9;42865:19;;42815:75;:::o;42896:311::-;42973:4;43063:18;43055:6;43052:30;43049:56;;;43085:18;;:::i;:::-;43049:56;43135:4;43127:6;43123:17;43115:25;;43195:4;43189;43185:15;43177:23;;42896:311;;;:::o;43213:307::-;43274:4;43364:18;43356:6;43353:30;43350:56;;;43386:18;;:::i;:::-;43350:56;43424:29;43446:6;43424:29;:::i;:::-;43416:37;;43508:4;43502;43498:15;43490:23;;43213:307;;;:::o;43526:308::-;43588:4;43678:18;43670:6;43667:30;43664:56;;;43700:18;;:::i;:::-;43664:56;43738:29;43760:6;43738:29;:::i;:::-;43730:37;;43822:4;43816;43812:15;43804:23;;43526:308;;;:::o;43840:163::-;43938:4;43961:3;43953:11;;43991:4;43986:3;43982:14;43974:22;;43840:163;;;:::o;44009:132::-;44076:4;44099:3;44091:11;;44129:4;44124:3;44120:14;44112:22;;44009:132;;;:::o;44147:145::-;44245:6;44279:5;44273:12;44263:22;;44147:145;;;:::o;44298:114::-;44365:6;44399:5;44393:12;44383:22;;44298:114;;;:::o;44418:98::-;44469:6;44503:5;44497:12;44487:22;;44418:98;;;:::o;44522:99::-;44574:6;44608:5;44602:12;44592:22;;44522:99;;;:::o;44627:144::-;44728:4;44760;44755:3;44751:14;44743:22;;44627:144;;;:::o;44777:113::-;44847:4;44879;44874:3;44870:14;44862:22;;44777:113;;;:::o;44896:215::-;45026:11;45060:6;45055:3;45048:19;45100:4;45095:3;45091:14;45076:29;;44896:215;;;;:::o;45117:184::-;45216:11;45250:6;45245:3;45238:19;45290:4;45285:3;45281:14;45266:29;;45117:184;;;;:::o;45307:168::-;45390:11;45424:6;45419:3;45412:19;45464:4;45459:3;45455:14;45440:29;;45307:168;;;;:::o;45481:147::-;45582:11;45619:3;45604:18;;45481:147;;;;:::o;45634:169::-;45718:11;45752:6;45747:3;45740:19;45792:4;45787:3;45783:14;45768:29;;45634:169;;;;:::o;45809:148::-;45911:11;45948:3;45933:18;;45809:148;;;;:::o;45963:242::-;46002:3;46021:19;46038:1;46021:19;:::i;:::-;46016:24;;46054:19;46071:1;46054:19;:::i;:::-;46049:24;;46147:1;46139:6;46135:14;46132:1;46129:21;46126:47;;;46153:18;;:::i;:::-;46126:47;46197:1;46194;46190:9;46183:16;;45963:242;;;;:::o;46211:305::-;46251:3;46270:20;46288:1;46270:20;:::i;:::-;46265:25;;46304:20;46322:1;46304:20;:::i;:::-;46299:25;;46458:1;46390:66;46386:74;46383:1;46380:81;46377:107;;;46464:18;;:::i;:::-;46377:107;46508:1;46505;46501:9;46494:16;;46211:305;;;;:::o;46522:237::-;46560:3;46579:18;46595:1;46579:18;:::i;:::-;46574:23;;46611:18;46627:1;46611:18;:::i;:::-;46606:23;;46701:1;46695:4;46691:12;46688:1;46685:19;46682:45;;;46707:18;;:::i;:::-;46682:45;46751:1;46748;46744:9;46737:16;;46522:237;;;;:::o;46765:185::-;46805:1;46822:20;46840:1;46822:20;:::i;:::-;46817:25;;46856:20;46874:1;46856:20;:::i;:::-;46851:25;;46895:1;46885:35;;46900:18;;:::i;:::-;46885:35;46942:1;46939;46935:9;46930:14;;46765:185;;;;:::o;46956:348::-;46996:7;47019:20;47037:1;47019:20;:::i;:::-;47014:25;;47053:20;47071:1;47053:20;:::i;:::-;47048:25;;47241:1;47173:66;47169:74;47166:1;47163:81;47158:1;47151:9;47144:17;47140:105;47137:131;;;47248:18;;:::i;:::-;47137:131;47296:1;47293;47289:9;47278:20;;46956:348;;;;:::o;47310:191::-;47350:4;47370:20;47388:1;47370:20;:::i;:::-;47365:25;;47404:20;47422:1;47404:20;:::i;:::-;47399:25;;47443:1;47440;47437:8;47434:34;;;47448:18;;:::i;:::-;47434:34;47493:1;47490;47486:9;47478:17;;47310:191;;;;:::o;47507:96::-;47544:7;47573:24;47591:5;47573:24;:::i;:::-;47562:35;;47507:96;;;:::o;47609:90::-;47643:7;47686:5;47679:13;47672:21;47661:32;;47609:90;;;:::o;47705:77::-;47742:7;47771:5;47760:16;;47705:77;;;:::o;47788:149::-;47824:7;47864:66;47857:5;47853:78;47842:89;;47788:149;;;:::o;47943:89::-;47979:7;48019:6;48012:5;48008:18;47997:29;;47943:89;;;:::o;48038:126::-;48075:7;48115:42;48108:5;48104:54;48093:65;;48038:126;;;:::o;48170:77::-;48207:7;48236:5;48225:16;;48170:77;;;:::o;48253:101::-;48289:7;48329:18;48322:5;48318:30;48307:41;;48253:101;;;:::o;48360:86::-;48395:7;48435:4;48428:5;48424:16;48413:27;;48360:86;;;:::o;48452:154::-;48536:6;48531:3;48526;48513:30;48598:1;48589:6;48584:3;48580:16;48573:27;48452:154;;;:::o;48612:307::-;48680:1;48690:113;48704:6;48701:1;48698:13;48690:113;;;48789:1;48784:3;48780:11;48774:18;48770:1;48765:3;48761:11;48754:39;48726:2;48723:1;48719:10;48714:15;;48690:113;;;48821:6;48818:1;48815:13;48812:101;;;48901:1;48892:6;48887:3;48883:16;48876:27;48812:101;48661:258;48612:307;;;:::o;48925:320::-;48969:6;49006:1;49000:4;48996:12;48986:22;;49053:1;49047:4;49043:12;49074:18;49064:81;;49130:4;49122:6;49118:17;49108:27;;49064:81;49192:2;49184:6;49181:14;49161:18;49158:38;49155:84;;;49211:18;;:::i;:::-;49155:84;48976:269;48925:320;;;:::o;49251:281::-;49334:27;49356:4;49334:27;:::i;:::-;49326:6;49322:40;49464:6;49452:10;49449:22;49428:18;49416:10;49413:34;49410:62;49407:88;;;49475:18;;:::i;:::-;49407:88;49515:10;49511:2;49504:22;49294:238;49251:281;;:::o;49538:233::-;49577:3;49600:24;49618:5;49600:24;:::i;:::-;49591:33;;49646:66;49639:5;49636:77;49633:103;;;49716:18;;:::i;:::-;49633:103;49763:1;49756:5;49752:13;49745:20;;49538:233;;;:::o;49777:100::-;49816:7;49845:26;49865:5;49845:26;:::i;:::-;49834:37;;49777:100;;;:::o;49883:79::-;49922:7;49951:5;49940:16;;49883:79;;;:::o;49968:94::-;50007:7;50036:20;50050:5;50036:20;:::i;:::-;50025:31;;49968:94;;;:::o;50068:176::-;50100:1;50117:20;50135:1;50117:20;:::i;:::-;50112:25;;50151:20;50169:1;50151:20;:::i;:::-;50146:25;;50190:1;50180:35;;50195:18;;:::i;:::-;50180:35;50236:1;50233;50229:9;50224:14;;50068:176;;;;:::o;50250:180::-;50298:77;50295:1;50288:88;50395:4;50392:1;50385:15;50419:4;50416:1;50409:15;50436:180;50484:77;50481:1;50474:88;50581:4;50578:1;50571:15;50605:4;50602:1;50595:15;50622:180;50670:77;50667:1;50660:88;50767:4;50764:1;50757:15;50791:4;50788:1;50781:15;50808:180;50856:77;50853:1;50846:88;50953:4;50950:1;50943:15;50977:4;50974:1;50967:15;50994:180;51042:77;51039:1;51032:88;51139:4;51136:1;51129:15;51163:4;51160:1;51153:15;51180:117;51289:1;51286;51279:12;51303:117;51412:1;51409;51402:12;51426:117;51535:1;51532;51525:12;51549:117;51658:1;51655;51648:12;51672:117;51781:1;51778;51771:12;51795:117;51904:1;51901;51894:12;51918:102;51959:6;52010:2;52006:7;52001:2;51994:5;51990:14;51986:28;51976:38;;51918:102;;;:::o;52026:94::-;52059:8;52107:5;52103:2;52099:14;52078:35;;52026:94;;;:::o;52126:156::-;52266:8;52262:1;52254:6;52250:14;52243:32;52126:156;:::o;52288:::-;52428:8;52424:1;52416:6;52412:14;52405:32;52288:156;:::o;52450:::-;52590:8;52586:1;52578:6;52574:14;52567:32;52450:156;:::o;52612:::-;52752:8;52748:1;52740:6;52736:14;52729:32;52612:156;:::o;52774:::-;52914:8;52910:1;52902:6;52898:14;52891:32;52774:156;:::o;52936:::-;53076:8;53072:1;53064:6;53060:14;53053:32;52936:156;:::o;53098:::-;53238:8;53234:1;53226:6;53222:14;53215:32;53098:156;:::o;53260:::-;53400:8;53396:1;53388:6;53384:14;53377:32;53260:156;:::o;53422:::-;53562:8;53558:1;53550:6;53546:14;53539:32;53422:156;:::o;53584:::-;53724:8;53720:1;53712:6;53708:14;53701:32;53584:156;:::o;53746:::-;53886:8;53882:1;53874:6;53870:14;53863:32;53746:156;:::o;53908:114::-;;:::o;54028:156::-;54168:8;54164:1;54156:6;54152:14;54145:32;54028:156;:::o;54190:181::-;54330:33;54326:1;54318:6;54314:14;54307:57;54190:181;:::o;54377:156::-;54517:8;54513:1;54505:6;54501:14;54494:32;54377:156;:::o;54539:::-;54679:8;54675:1;54667:6;54663:14;54656:32;54539:156;:::o;54701:155::-;54841:7;54837:1;54829:6;54825:14;54818:31;54701:155;:::o;54862:156::-;55002:8;54998:1;54990:6;54986:14;54979:32;54862:156;:::o;55024:122::-;55097:24;55115:5;55097:24;:::i;:::-;55090:5;55087:35;55077:63;;55136:1;55133;55126:12;55077:63;55024:122;:::o;55152:116::-;55222:21;55237:5;55222:21;:::i;:::-;55215:5;55212:32;55202:60;;55258:1;55255;55248:12;55202:60;55152:116;:::o;55274:122::-;55347:24;55365:5;55347:24;:::i;:::-;55340:5;55337:35;55327:63;;55386:1;55383;55376:12;55327:63;55274:122;:::o;55402:120::-;55474:23;55491:5;55474:23;:::i;:::-;55467:5;55464:34;55454:62;;55512:1;55509;55502:12;55454:62;55402:120;:::o;55528:122::-;55601:24;55619:5;55601:24;:::i;:::-;55594:5;55591:35;55581:63;;55640:1;55637;55630:12;55581:63;55528:122;:::o;55656:118::-;55727:22;55743:5;55727:22;:::i;:::-;55720:5;55717:33;55707:61;;55764:1;55761;55754:12;55707:61;55656:118;:::o

Swarm Source

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