ETH Price: $2,526.07 (+0.11%)
Gas: 0.85 Gwei

Token

Hidden Programmed (HiddenProgrammed)
 

Overview

Max Total Supply

1,449 HiddenProgrammed

Holders

584

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HiddenProgrammed
0x98a5c59ba7e63af7a00b5142d4c569c037d10424
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HiddenProgrammed

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-08-12
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
/*
$$\   $$\ $$\       $$\       $$\                           $$$$$$$\                                                                                               $$\ 
$$ |  $$ |\__|      $$ |      $$ |                          $$  __$$\                                                                                              $$ |
$$ |  $$ |$$\  $$$$$$$ | $$$$$$$ | $$$$$$\  $$$$$$$\        $$ |  $$ | $$$$$$\   $$$$$$\   $$$$$$\   $$$$$$\  $$$$$$\  $$$$$$\$$$$\  $$$$$$\$$$$\   $$$$$$\   $$$$$$$ |
$$$$$$$$ |$$ |$$  __$$ |$$  __$$ |$$  __$$\ $$  __$$\       $$$$$$$  |$$  __$$\ $$  __$$\ $$  __$$\ $$  __$$\ \____$$\ $$  _$$  _$$\ $$  _$$  _$$\ $$  __$$\ $$  __$$ |
$$  __$$ |$$ |$$ /  $$ |$$ /  $$ |$$$$$$$$ |$$ |  $$ |      $$  ____/ $$ |  \__|$$ /  $$ |$$ /  $$ |$$ |  \__|$$$$$$$ |$$ / $$ / $$ |$$ / $$ / $$ |$$$$$$$$ |$$ /  $$ |
$$ |  $$ |$$ |$$ |  $$ |$$ |  $$ |$$   ____|$$ |  $$ |      $$ |      $$ |      $$ |  $$ |$$ |  $$ |$$ |     $$  __$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$   ____|$$ |  $$ |
$$ |  $$ |$$ |\$$$$$$$ |\$$$$$$$ |\$$$$$$$\ $$ |  $$ |      $$ |      $$ |      \$$$$$$  |\$$$$$$$ |$$ |     \$$$$$$$ |$$ | $$ | $$ |$$ | $$ | $$ |\$$$$$$$\ \$$$$$$$ |
\__|  \__|\__| \_______| \_______| \_______|\__|  \__|      \__|      \__|       \______/  \____$$ |\__|      \_______|\__| \__| \__|\__| \__| \__| \_______| \_______|
                                                                                          $$\   $$ |                                                                   
                                                                                          \$$$$$$  |                                                                   
                                                                                           \______/      
𝟹𝟶𝟶𝟶 𝙽𝙵𝚃 𝙷𝚒𝚍𝚍𝚎𝚗 𝙿𝚛𝚘𝚐𝚛𝚊𝚖𝚖𝚎𝚍
𝟸 𝚏𝚛𝚎𝚎/𝚠𝚊𝚕𝚕𝚎𝚝
𝚘𝚛
𝟻/𝚝𝚡 max 𝚊𝚝 𝟶.𝟶𝟶𝟸

*/
// 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// 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/token/ERC721/IERC721Receiver.sol


// 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/introspection/IERC165.sol


// 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/utils/introspection/ERC165.sol


// 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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// 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/IERC721Metadata.sol


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

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @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
        _approve(address(0), tokenId, from);

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/ERC721AQueryable.sol


pragma solidity ^0.8.4;


error InvalidQueryRange();

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A {
    /**
     * @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 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 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 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 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;
        }
    }
}



pragma solidity ^0.8.4;




contract HiddenProgrammed is ERC721A, Ownable {

    string public baseURI = "https://storageapi.fleek.co/256e1077-3ba4-4f13-9298-2a063e646bf9-bucket/hdnJson/";
    string public constant baseExtension = ".json";
    uint256 public constant MAX_FREE = 2;
    uint256 public constant MAX_PER_TX = 5;
    uint256 public constant MAX_SUPPLY = 3000;
    uint256 public price = 0.002 ether;

    bool public paused = true;

    constructor() ERC721A("Hidden Programmed", "HiddenProgrammed") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function freeMint() public{
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(MAX_FREE >= uint256(_getAux(_caller)) + 1, "Excess max per free wallet");

        _setAux(_caller, 2);
        _safeMint(_caller, 2);
    }

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

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function teamMint(uint256 _number) external onlyOwner {
        _safeMint(_msgSender(), _number);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806050815260200162003f8b6050913960099080519060200190620000359291906200021d565b5066071afd498d0000600a556001600b60006101000a81548160ff0219169083151502179055503480156200006957600080fd5b506040518060400160405280601181526020017f48696464656e2050726f6772616d6d65640000000000000000000000000000008152506040518060400160405280601081526020017f48696464656e50726f6772616d6d6564000000000000000000000000000000008152508160029080519060200190620000ee9291906200021d565b508060039080519060200190620001079291906200021d565b50620001186200014660201b60201c565b600081905550505062000140620001346200014f60201b60201c565b6200015760201b60201c565b62000332565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c4980620003426000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106ab578063ed6661c2146106e8578063f2fde38b14610713578063f43a22dc1461073c576101e3565b8063a22cb465146105f1578063b88d4fde1461061a578063c668286214610643578063c87b56dd1461066e576101e3565b806391b7f5ed116100d157806391b7f5ed1461055657806395d89b411461057f578063a035b1fe146105aa578063a0712d68146105d5576101e3565b80636c0360eb146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80632fbba1151161017a57806355f804b31161014957806355f804b3146104045780635b70ea9f1461042d5780635c975abb146104445780636352211e1461046f576101e3565b80632fbba1151461037057806332cb6b0c146103995780633ccfd60b146103c457806342842e0e146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f01565b610767565b60405161021c9190613371565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ed4565b610849565b005b34801561025a57600080fd5b506102636108e2565b604051610270919061338c565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612fa4565b610974565b6040516102ad919061330a565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e94565b6109f0565b005b3480156102eb57600080fd5b506102f4610afb565b604051610301919061350e565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612d11565b610b12565b60405161033e919061350e565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612d7e565b610b24565b005b34801561037c57600080fd5b5061039760048036038101906103929190612fa4565b610b34565b005b3480156103a557600080fd5b506103ae610bc4565b6040516103bb919061350e565b60405180910390f35b3480156103d057600080fd5b506103d9610bca565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612d7e565b610d02565b005b34801561041057600080fd5b5061042b60048036038101906104269190612f5b565b610d22565b005b34801561043957600080fd5b50610442610db8565b005b34801561045057600080fd5b50610459610f55565b6040516104669190613371565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612fa4565b610f68565b6040516104a3919061330a565b60405180910390f35b3480156104b857600080fd5b506104c1610f7e565b6040516104ce919061338c565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612d11565b61100c565b60405161050b919061350e565b60405180910390f35b34801561052057600080fd5b506105296110dc565b005b34801561053757600080fd5b50610540611164565b60405161054d919061330a565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612fa4565b61118e565b005b34801561058b57600080fd5b50610594611214565b6040516105a1919061338c565b60405180910390f35b3480156105b657600080fd5b506105bf6112a6565b6040516105cc919061350e565b60405180910390f35b6105ef60048036038101906105ea9190612fa4565b6112ac565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612e54565b6114b1565b005b34801561062657600080fd5b50610641600480360381019061063c9190612dd1565b611629565b005b34801561064f57600080fd5b506106586116a5565b604051610665919061338c565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612fa4565b6116de565b6040516106a2919061338c565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612d3e565b6117bd565b6040516106df9190613371565b60405180910390f35b3480156106f457600080fd5b506106fd611851565b60405161070a919061350e565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612d11565b611856565b005b34801561074857600080fd5b5061075161194e565b60405161075e919061350e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610842575061084182611953565b5b9050919050565b6108516119bd565b73ffffffffffffffffffffffffffffffffffffffff1661086f611164565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc9061348e565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108f1906137de565b80601f016020809104026020016040519081016040528092919081815260200182805461091d906137de565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b5050505050905090565b600061097f826119c5565b6109b5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a826119bd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab45750610ab281610aad6119bd565b6117bd565b155b15610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af6838383611a13565b505050565b6000610b05611ac5565b6001546000540303905090565b6000610b1d82611ace565b9050919050565b610b2f838383611b38565b505050565b610b3c6119bd565b73ffffffffffffffffffffffffffffffffffffffff16610b5a611164565b73ffffffffffffffffffffffffffffffffffffffff1614610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba79061348e565b60405180910390fd5b610bc1610bbb6119bd565b82611fee565b50565b610bb881565b610bd26119bd565b73ffffffffffffffffffffffffffffffffffffffff16610bf0611164565b73ffffffffffffffffffffffffffffffffffffffff1614610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d9061348e565b60405180910390fd5b60004790506000610c556119bd565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c78906132f5565b60006040518083038185875af1925050503d8060008114610cb5576040519150601f19603f3d011682016040523d82523d6000602084013e610cba565b606091505b5050905080610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf5906134ce565b60405180910390fd5b5050565b610d1d83838360405180602001604052806000815250611629565b505050565b610d2a6119bd565b73ffffffffffffffffffffffffffffffffffffffff16610d48611164565b73ffffffffffffffffffffffffffffffffffffffff1614610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061348e565b60405180910390fd5b8060099080519060200190610db4929190612ae2565b5050565b6000610dc26119bd565b9050600b60009054906101000a900460ff1615610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906133ae565b60405180910390fd5b6001610e1e610afb565b610e289190613613565b610bb81015610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e639061344e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906134ee565b60405180910390fd5b6001610ee58261200c565b67ffffffffffffffff16610ef99190613613565b60021015610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f339061342e565b60405180910390fd5b610f4781600261206c565b610f52816002611fee565b50565b600b60009054906101000a900460ff1681565b6000610f73826120d9565b600001519050919050565b60098054610f8b906137de565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb7906137de565b80156110045780601f10610fd957610100808354040283529160200191611004565b820191906000526020600020905b815481529060010190602001808311610fe757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611074576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110e46119bd565b73ffffffffffffffffffffffffffffffffffffffff16611102611164565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f9061348e565b60405180910390fd5b6111626000612368565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111966119bd565b73ffffffffffffffffffffffffffffffffffffffff166111b4611164565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061348e565b60405180910390fd5b80600a8190555050565b606060038054611223906137de565b80601f016020809104026020016040519081016040528092919081815260200182805461124f906137de565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b600a5481565b60006112b66119bd565b9050600b60009054906101000a900460ff1615611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906133ae565b60405180910390fd5b81611311610afb565b61131b9190613613565b610bb8101561135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061344e565b60405180910390fd5b600082116113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906133ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906134ee565b60405180910390fd5b8160051015611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b9061340e565b60405180910390fd5b34600a5483611463919061369a565b146114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a906134ae565b60405180910390fd5b6114ad8183611fee565b5050565b6114b96119bd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061152b6119bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d86119bd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161d9190613371565b60405180910390a35050565b611634848484611b38565b6116538373ffffffffffffffffffffffffffffffffffffffff1661242e565b8015611668575061166684848484612451565b155b1561169f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116e9826119c5565b611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f9061346e565b60405180910390fd5b600060098054611737906137de565b90501161175357604051806020016040528060008152506117b6565b600961175e836125b1565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117a6939291906132c4565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600281565b61185e6119bd565b73ffffffffffffffffffffffffffffffffffffffff1661187c611164565b73ffffffffffffffffffffffffffffffffffffffff16146118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c99061348e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906133ce565b60405180910390fd5b61194b81612368565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119d0611ac5565b111580156119df575060005482105b8015611a0c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b43826120d9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bae576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bcf6119bd565b73ffffffffffffffffffffffffffffffffffffffff161480611bfe5750611bfd85611bf86119bd565b6117bd565b5b80611c435750611c0c6119bd565b73ffffffffffffffffffffffffffffffffffffffff16611c2b84610974565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ce3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf08585856001612712565b611cfc60008487611a13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f7c576000548214611f7b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fe78585856001612718565b5050505050565b61200882826040518060200160405280600081525061271e565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120e1612b68565b6000829050806120ef611ac5565b111580156120fe575060005481105b15612331576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612213578092505050612363565b5b60011561232e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612329578092505050612363565b612214565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124776119bd565b8786866040518563ffffffff1660e01b81526004016124999493929190613325565b602060405180830381600087803b1580156124b357600080fd5b505af19250505080156124e457506040513d601f19601f820116820180604052508101906124e19190612f2e565b60015b61255e573d8060008114612514576040519150601f19603f3d011682016040523d82523d6000602084013e612519565b606091505b50600081511415612556576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270d565b600082905060005b6000821461262b57808061261490613841565b915050600a826126249190613669565b9150612601565b60008167ffffffffffffffff81111561264757612646613977565b5b6040519080825280601f01601f1916602001820160405280156126795781602001600182028036833780820191505090505b5090505b600085146127065760018261269291906136f4565b9150600a856126a1919061388a565b60306126ad9190613613565b60f81b8183815181106126c3576126c2613948565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ff9190613669565b945061267d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561278b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127c6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d36000858386612712565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129948673ffffffffffffffffffffffffffffffffffffffff1661242e565b15612a5a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a096000878480600101955087612451565b612a3f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561299a578260005414612a5557600080fd5b612ac6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a5b575b816000819055505050612adc6000858386612718565b50505050565b828054612aee906137de565b90600052602060002090601f016020900481019282612b105760008555612b57565b82601f10612b2957805160ff1916838001178555612b57565b82800160010185558215612b57579182015b82811115612b56578251825591602001919060010190612b3b565b5b509050612b649190612bab565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bc4576000816000905550600101612bac565b5090565b6000612bdb612bd68461354e565b613529565b905082815260208101848484011115612bf757612bf66139ab565b5b612c0284828561379c565b509392505050565b6000612c1d612c188461357f565b613529565b905082815260208101848484011115612c3957612c386139ab565b5b612c4484828561379c565b509392505050565b600081359050612c5b81613bb7565b92915050565b600081359050612c7081613bce565b92915050565b600081359050612c8581613be5565b92915050565b600081519050612c9a81613be5565b92915050565b600082601f830112612cb557612cb46139a6565b5b8135612cc5848260208601612bc8565b91505092915050565b600082601f830112612ce357612ce26139a6565b5b8135612cf3848260208601612c0a565b91505092915050565b600081359050612d0b81613bfc565b92915050565b600060208284031215612d2757612d266139b5565b5b6000612d3584828501612c4c565b91505092915050565b60008060408385031215612d5557612d546139b5565b5b6000612d6385828601612c4c565b9250506020612d7485828601612c4c565b9150509250929050565b600080600060608486031215612d9757612d966139b5565b5b6000612da586828701612c4c565b9350506020612db686828701612c4c565b9250506040612dc786828701612cfc565b9150509250925092565b60008060008060808587031215612deb57612dea6139b5565b5b6000612df987828801612c4c565b9450506020612e0a87828801612c4c565b9350506040612e1b87828801612cfc565b925050606085013567ffffffffffffffff811115612e3c57612e3b6139b0565b5b612e4887828801612ca0565b91505092959194509250565b60008060408385031215612e6b57612e6a6139b5565b5b6000612e7985828601612c4c565b9250506020612e8a85828601612c61565b9150509250929050565b60008060408385031215612eab57612eaa6139b5565b5b6000612eb985828601612c4c565b9250506020612eca85828601612cfc565b9150509250929050565b600060208284031215612eea57612ee96139b5565b5b6000612ef884828501612c61565b91505092915050565b600060208284031215612f1757612f166139b5565b5b6000612f2584828501612c76565b91505092915050565b600060208284031215612f4457612f436139b5565b5b6000612f5284828501612c8b565b91505092915050565b600060208284031215612f7157612f706139b5565b5b600082013567ffffffffffffffff811115612f8f57612f8e6139b0565b5b612f9b84828501612cce565b91505092915050565b600060208284031215612fba57612fb96139b5565b5b6000612fc884828501612cfc565b91505092915050565b612fda81613728565b82525050565b612fe98161373a565b82525050565b6000612ffa826135c5565b61300481856135db565b93506130148185602086016137ab565b61301d816139ba565b840191505092915050565b6000613033826135d0565b61303d81856135f7565b935061304d8185602086016137ab565b613056816139ba565b840191505092915050565b600061306c826135d0565b6130768185613608565b93506130868185602086016137ab565b80840191505092915050565b6000815461309f816137de565b6130a98186613608565b945060018216600081146130c457600181146130d557613108565b60ff19831686528186019350613108565b6130de856135b0565b60005b83811015613100578154818901526001820191506020810190506130e1565b838801955050505b50505092915050565b600061311e6006836135f7565b9150613129826139cb565b602082019050919050565b60006131416026836135f7565b915061314c826139f4565b604082019050919050565b6000613164600a836135f7565b915061316f82613a43565b602082019050919050565b60006131876016836135f7565b915061319282613a6c565b602082019050919050565b60006131aa601a836135f7565b91506131b582613a95565b602082019050919050565b60006131cd6012836135f7565b91506131d882613abe565b602082019050919050565b60006131f06015836135f7565b91506131fb82613ae7565b602082019050919050565b60006132136020836135f7565b915061321e82613b10565b602082019050919050565b60006132366016836135f7565b915061324182613b39565b602082019050919050565b60006132596000836135ec565b915061326482613b62565b600082019050919050565b600061327c600e836135f7565b915061328782613b65565b602082019050919050565b600061329f600c836135f7565b91506132aa82613b8e565b602082019050919050565b6132be81613792565b82525050565b60006132d08286613092565b91506132dc8285613061565b91506132e88284613061565b9150819050949350505050565b60006133008261324c565b9150819050919050565b600060208201905061331f6000830184612fd1565b92915050565b600060808201905061333a6000830187612fd1565b6133476020830186612fd1565b61335460408301856132b5565b81810360608301526133668184612fef565b905095945050505050565b60006020820190506133866000830184612fe0565b92915050565b600060208201905081810360008301526133a68184613028565b905092915050565b600060208201905081810360008301526133c781613111565b9050919050565b600060208201905081810360008301526133e781613134565b9050919050565b6000602082019050818103600083015261340781613157565b9050919050565b600060208201905081810360008301526134278161317a565b9050919050565b600060208201905081810360008301526134478161319d565b9050919050565b60006020820190508181036000830152613467816131c0565b9050919050565b60006020820190508181036000830152613487816131e3565b9050919050565b600060208201905081810360008301526134a781613206565b9050919050565b600060208201905081810360008301526134c781613229565b9050919050565b600060208201905081810360008301526134e78161326f565b9050919050565b6000602082019050818103600083015261350781613292565b9050919050565b600060208201905061352360008301846132b5565b92915050565b6000613533613544565b905061353f8282613810565b919050565b6000604051905090565b600067ffffffffffffffff82111561356957613568613977565b5b613572826139ba565b9050602081019050919050565b600067ffffffffffffffff82111561359a57613599613977565b5b6135a3826139ba565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061361e82613792565b915061362983613792565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561365e5761365d6138bb565b5b828201905092915050565b600061367482613792565b915061367f83613792565b92508261368f5761368e6138ea565b5b828204905092915050565b60006136a582613792565b91506136b083613792565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136e9576136e86138bb565b5b828202905092915050565b60006136ff82613792565b915061370a83613792565b92508282101561371d5761371c6138bb565b5b828203905092915050565b600061373382613772565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c95780820151818401526020810190506137ae565b838111156137d8576000848401525b50505050565b600060028204905060018216806137f657607f821691505b6020821081141561380a57613809613919565b5b50919050565b613819826139ba565b810181811067ffffffffffffffff8211171561383857613837613977565b5b80604052505050565b600061384c82613792565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561387f5761387e6138bb565b5b600182019050919050565b600061389582613792565b91506138a083613792565b9250826138b0576138af6138ea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bc081613728565b8114613bcb57600080fd5b50565b613bd78161373a565b8114613be257600080fd5b50565b613bee81613746565b8114613bf957600080fd5b50565b613c0581613792565b8114613c1057600080fd5b5056fea2646970667358221220c9a44fce9df9a953ae84314a8c58588f8330d6e6d08814b90f1d1e433f37469d64736f6c6343000807003368747470733a2f2f73746f726167656170692e666c65656b2e636f2f32353665313037372d336261342d346631332d393239382d3261303633653634366266392d6275636b65742f68646e4a736f6e2f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106ab578063ed6661c2146106e8578063f2fde38b14610713578063f43a22dc1461073c576101e3565b8063a22cb465146105f1578063b88d4fde1461061a578063c668286214610643578063c87b56dd1461066e576101e3565b806391b7f5ed116100d157806391b7f5ed1461055657806395d89b411461057f578063a035b1fe146105aa578063a0712d68146105d5576101e3565b80636c0360eb146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80632fbba1151161017a57806355f804b31161014957806355f804b3146104045780635b70ea9f1461042d5780635c975abb146104445780636352211e1461046f576101e3565b80632fbba1151461037057806332cb6b0c146103995780633ccfd60b146103c457806342842e0e146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f01565b610767565b60405161021c9190613371565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ed4565b610849565b005b34801561025a57600080fd5b506102636108e2565b604051610270919061338c565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612fa4565b610974565b6040516102ad919061330a565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e94565b6109f0565b005b3480156102eb57600080fd5b506102f4610afb565b604051610301919061350e565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612d11565b610b12565b60405161033e919061350e565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612d7e565b610b24565b005b34801561037c57600080fd5b5061039760048036038101906103929190612fa4565b610b34565b005b3480156103a557600080fd5b506103ae610bc4565b6040516103bb919061350e565b60405180910390f35b3480156103d057600080fd5b506103d9610bca565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612d7e565b610d02565b005b34801561041057600080fd5b5061042b60048036038101906104269190612f5b565b610d22565b005b34801561043957600080fd5b50610442610db8565b005b34801561045057600080fd5b50610459610f55565b6040516104669190613371565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612fa4565b610f68565b6040516104a3919061330a565b60405180910390f35b3480156104b857600080fd5b506104c1610f7e565b6040516104ce919061338c565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612d11565b61100c565b60405161050b919061350e565b60405180910390f35b34801561052057600080fd5b506105296110dc565b005b34801561053757600080fd5b50610540611164565b60405161054d919061330a565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612fa4565b61118e565b005b34801561058b57600080fd5b50610594611214565b6040516105a1919061338c565b60405180910390f35b3480156105b657600080fd5b506105bf6112a6565b6040516105cc919061350e565b60405180910390f35b6105ef60048036038101906105ea9190612fa4565b6112ac565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612e54565b6114b1565b005b34801561062657600080fd5b50610641600480360381019061063c9190612dd1565b611629565b005b34801561064f57600080fd5b506106586116a5565b604051610665919061338c565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612fa4565b6116de565b6040516106a2919061338c565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612d3e565b6117bd565b6040516106df9190613371565b60405180910390f35b3480156106f457600080fd5b506106fd611851565b60405161070a919061350e565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612d11565b611856565b005b34801561074857600080fd5b5061075161194e565b60405161075e919061350e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610842575061084182611953565b5b9050919050565b6108516119bd565b73ffffffffffffffffffffffffffffffffffffffff1661086f611164565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc9061348e565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108f1906137de565b80601f016020809104026020016040519081016040528092919081815260200182805461091d906137de565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b5050505050905090565b600061097f826119c5565b6109b5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a826119bd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab45750610ab281610aad6119bd565b6117bd565b155b15610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af6838383611a13565b505050565b6000610b05611ac5565b6001546000540303905090565b6000610b1d82611ace565b9050919050565b610b2f838383611b38565b505050565b610b3c6119bd565b73ffffffffffffffffffffffffffffffffffffffff16610b5a611164565b73ffffffffffffffffffffffffffffffffffffffff1614610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba79061348e565b60405180910390fd5b610bc1610bbb6119bd565b82611fee565b50565b610bb881565b610bd26119bd565b73ffffffffffffffffffffffffffffffffffffffff16610bf0611164565b73ffffffffffffffffffffffffffffffffffffffff1614610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d9061348e565b60405180910390fd5b60004790506000610c556119bd565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c78906132f5565b60006040518083038185875af1925050503d8060008114610cb5576040519150601f19603f3d011682016040523d82523d6000602084013e610cba565b606091505b5050905080610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf5906134ce565b60405180910390fd5b5050565b610d1d83838360405180602001604052806000815250611629565b505050565b610d2a6119bd565b73ffffffffffffffffffffffffffffffffffffffff16610d48611164565b73ffffffffffffffffffffffffffffffffffffffff1614610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061348e565b60405180910390fd5b8060099080519060200190610db4929190612ae2565b5050565b6000610dc26119bd565b9050600b60009054906101000a900460ff1615610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906133ae565b60405180910390fd5b6001610e1e610afb565b610e289190613613565b610bb81015610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e639061344e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906134ee565b60405180910390fd5b6001610ee58261200c565b67ffffffffffffffff16610ef99190613613565b60021015610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f339061342e565b60405180910390fd5b610f4781600261206c565b610f52816002611fee565b50565b600b60009054906101000a900460ff1681565b6000610f73826120d9565b600001519050919050565b60098054610f8b906137de565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb7906137de565b80156110045780601f10610fd957610100808354040283529160200191611004565b820191906000526020600020905b815481529060010190602001808311610fe757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611074576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110e46119bd565b73ffffffffffffffffffffffffffffffffffffffff16611102611164565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f9061348e565b60405180910390fd5b6111626000612368565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111966119bd565b73ffffffffffffffffffffffffffffffffffffffff166111b4611164565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061348e565b60405180910390fd5b80600a8190555050565b606060038054611223906137de565b80601f016020809104026020016040519081016040528092919081815260200182805461124f906137de565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b600a5481565b60006112b66119bd565b9050600b60009054906101000a900460ff1615611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906133ae565b60405180910390fd5b81611311610afb565b61131b9190613613565b610bb8101561135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061344e565b60405180910390fd5b600082116113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906133ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906134ee565b60405180910390fd5b8160051015611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b9061340e565b60405180910390fd5b34600a5483611463919061369a565b146114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a906134ae565b60405180910390fd5b6114ad8183611fee565b5050565b6114b96119bd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061152b6119bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d86119bd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161d9190613371565b60405180910390a35050565b611634848484611b38565b6116538373ffffffffffffffffffffffffffffffffffffffff1661242e565b8015611668575061166684848484612451565b155b1561169f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116e9826119c5565b611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f9061346e565b60405180910390fd5b600060098054611737906137de565b90501161175357604051806020016040528060008152506117b6565b600961175e836125b1565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117a6939291906132c4565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600281565b61185e6119bd565b73ffffffffffffffffffffffffffffffffffffffff1661187c611164565b73ffffffffffffffffffffffffffffffffffffffff16146118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c99061348e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906133ce565b60405180910390fd5b61194b81612368565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119d0611ac5565b111580156119df575060005482105b8015611a0c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b43826120d9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bae576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bcf6119bd565b73ffffffffffffffffffffffffffffffffffffffff161480611bfe5750611bfd85611bf86119bd565b6117bd565b5b80611c435750611c0c6119bd565b73ffffffffffffffffffffffffffffffffffffffff16611c2b84610974565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ce3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf08585856001612712565b611cfc60008487611a13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f7c576000548214611f7b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fe78585856001612718565b5050505050565b61200882826040518060200160405280600081525061271e565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120e1612b68565b6000829050806120ef611ac5565b111580156120fe575060005481105b15612331576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612213578092505050612363565b5b60011561232e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612329578092505050612363565b612214565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124776119bd565b8786866040518563ffffffff1660e01b81526004016124999493929190613325565b602060405180830381600087803b1580156124b357600080fd5b505af19250505080156124e457506040513d601f19601f820116820180604052508101906124e19190612f2e565b60015b61255e573d8060008114612514576040519150601f19603f3d011682016040523d82523d6000602084013e612519565b606091505b50600081511415612556576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270d565b600082905060005b6000821461262b57808061261490613841565b915050600a826126249190613669565b9150612601565b60008167ffffffffffffffff81111561264757612646613977565b5b6040519080825280601f01601f1916602001820160405280156126795781602001600182028036833780820191505090505b5090505b600085146127065760018261269291906136f4565b9150600a856126a1919061388a565b60306126ad9190613613565b60f81b8183815181106126c3576126c2613948565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ff9190613669565b945061267d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561278b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127c6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d36000858386612712565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129948673ffffffffffffffffffffffffffffffffffffffff1661242e565b15612a5a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a096000878480600101955087612451565b612a3f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561299a578260005414612a5557600080fd5b612ac6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a5b575b816000819055505050612adc6000858386612718565b50505050565b828054612aee906137de565b90600052602060002090601f016020900481019282612b105760008555612b57565b82601f10612b2957805160ff1916838001178555612b57565b82800160010185558215612b57579182015b82811115612b56578251825591602001919060010190612b3b565b5b509050612b649190612bab565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bc4576000816000905550600101612bac565b5090565b6000612bdb612bd68461354e565b613529565b905082815260208101848484011115612bf757612bf66139ab565b5b612c0284828561379c565b509392505050565b6000612c1d612c188461357f565b613529565b905082815260208101848484011115612c3957612c386139ab565b5b612c4484828561379c565b509392505050565b600081359050612c5b81613bb7565b92915050565b600081359050612c7081613bce565b92915050565b600081359050612c8581613be5565b92915050565b600081519050612c9a81613be5565b92915050565b600082601f830112612cb557612cb46139a6565b5b8135612cc5848260208601612bc8565b91505092915050565b600082601f830112612ce357612ce26139a6565b5b8135612cf3848260208601612c0a565b91505092915050565b600081359050612d0b81613bfc565b92915050565b600060208284031215612d2757612d266139b5565b5b6000612d3584828501612c4c565b91505092915050565b60008060408385031215612d5557612d546139b5565b5b6000612d6385828601612c4c565b9250506020612d7485828601612c4c565b9150509250929050565b600080600060608486031215612d9757612d966139b5565b5b6000612da586828701612c4c565b9350506020612db686828701612c4c565b9250506040612dc786828701612cfc565b9150509250925092565b60008060008060808587031215612deb57612dea6139b5565b5b6000612df987828801612c4c565b9450506020612e0a87828801612c4c565b9350506040612e1b87828801612cfc565b925050606085013567ffffffffffffffff811115612e3c57612e3b6139b0565b5b612e4887828801612ca0565b91505092959194509250565b60008060408385031215612e6b57612e6a6139b5565b5b6000612e7985828601612c4c565b9250506020612e8a85828601612c61565b9150509250929050565b60008060408385031215612eab57612eaa6139b5565b5b6000612eb985828601612c4c565b9250506020612eca85828601612cfc565b9150509250929050565b600060208284031215612eea57612ee96139b5565b5b6000612ef884828501612c61565b91505092915050565b600060208284031215612f1757612f166139b5565b5b6000612f2584828501612c76565b91505092915050565b600060208284031215612f4457612f436139b5565b5b6000612f5284828501612c8b565b91505092915050565b600060208284031215612f7157612f706139b5565b5b600082013567ffffffffffffffff811115612f8f57612f8e6139b0565b5b612f9b84828501612cce565b91505092915050565b600060208284031215612fba57612fb96139b5565b5b6000612fc884828501612cfc565b91505092915050565b612fda81613728565b82525050565b612fe98161373a565b82525050565b6000612ffa826135c5565b61300481856135db565b93506130148185602086016137ab565b61301d816139ba565b840191505092915050565b6000613033826135d0565b61303d81856135f7565b935061304d8185602086016137ab565b613056816139ba565b840191505092915050565b600061306c826135d0565b6130768185613608565b93506130868185602086016137ab565b80840191505092915050565b6000815461309f816137de565b6130a98186613608565b945060018216600081146130c457600181146130d557613108565b60ff19831686528186019350613108565b6130de856135b0565b60005b83811015613100578154818901526001820191506020810190506130e1565b838801955050505b50505092915050565b600061311e6006836135f7565b9150613129826139cb565b602082019050919050565b60006131416026836135f7565b915061314c826139f4565b604082019050919050565b6000613164600a836135f7565b915061316f82613a43565b602082019050919050565b60006131876016836135f7565b915061319282613a6c565b602082019050919050565b60006131aa601a836135f7565b91506131b582613a95565b602082019050919050565b60006131cd6012836135f7565b91506131d882613abe565b602082019050919050565b60006131f06015836135f7565b91506131fb82613ae7565b602082019050919050565b60006132136020836135f7565b915061321e82613b10565b602082019050919050565b60006132366016836135f7565b915061324182613b39565b602082019050919050565b60006132596000836135ec565b915061326482613b62565b600082019050919050565b600061327c600e836135f7565b915061328782613b65565b602082019050919050565b600061329f600c836135f7565b91506132aa82613b8e565b602082019050919050565b6132be81613792565b82525050565b60006132d08286613092565b91506132dc8285613061565b91506132e88284613061565b9150819050949350505050565b60006133008261324c565b9150819050919050565b600060208201905061331f6000830184612fd1565b92915050565b600060808201905061333a6000830187612fd1565b6133476020830186612fd1565b61335460408301856132b5565b81810360608301526133668184612fef565b905095945050505050565b60006020820190506133866000830184612fe0565b92915050565b600060208201905081810360008301526133a68184613028565b905092915050565b600060208201905081810360008301526133c781613111565b9050919050565b600060208201905081810360008301526133e781613134565b9050919050565b6000602082019050818103600083015261340781613157565b9050919050565b600060208201905081810360008301526134278161317a565b9050919050565b600060208201905081810360008301526134478161319d565b9050919050565b60006020820190508181036000830152613467816131c0565b9050919050565b60006020820190508181036000830152613487816131e3565b9050919050565b600060208201905081810360008301526134a781613206565b9050919050565b600060208201905081810360008301526134c781613229565b9050919050565b600060208201905081810360008301526134e78161326f565b9050919050565b6000602082019050818103600083015261350781613292565b9050919050565b600060208201905061352360008301846132b5565b92915050565b6000613533613544565b905061353f8282613810565b919050565b6000604051905090565b600067ffffffffffffffff82111561356957613568613977565b5b613572826139ba565b9050602081019050919050565b600067ffffffffffffffff82111561359a57613599613977565b5b6135a3826139ba565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061361e82613792565b915061362983613792565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561365e5761365d6138bb565b5b828201905092915050565b600061367482613792565b915061367f83613792565b92508261368f5761368e6138ea565b5b828204905092915050565b60006136a582613792565b91506136b083613792565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136e9576136e86138bb565b5b828202905092915050565b60006136ff82613792565b915061370a83613792565b92508282101561371d5761371c6138bb565b5b828203905092915050565b600061373382613772565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c95780820151818401526020810190506137ae565b838111156137d8576000848401525b50505050565b600060028204905060018216806137f657607f821691505b6020821081141561380a57613809613919565b5b50919050565b613819826139ba565b810181811067ffffffffffffffff8211171561383857613837613977565b5b80604052505050565b600061384c82613792565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561387f5761387e6138bb565b5b600182019050919050565b600061389582613792565b91506138a083613792565b9250826138b0576138af6138ea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bc081613728565b8114613bcb57600080fd5b50565b613bd78161373a565b8114613be257600080fd5b50565b613bee81613746565b8114613bf957600080fd5b50565b613c0581613792565b8114613c1057600080fd5b5056fea2646970667358221220c9a44fce9df9a953ae84314a8c58588f8330d6e6d08814b90f1d1e433f37469d64736f6c63430008070033

Deployed Bytecode Sourcemap

53957:2627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28977:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56022:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32090:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33593:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33156:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28226:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55481:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34458:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55815:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54266:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55598:209;;;;;;;;;;;;;:::i;:::-;;34699:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56111:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54968:396;;;;;;;;;;;;;:::i;:::-;;54357:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31898:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54012:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29346:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6767:103;;;;;;;;;;;;;:::i;:::-;;6116:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55928:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32259:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54314:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54464:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33869:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34955:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54125:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56219:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34227:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54178:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7025:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54221:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28977:305;29079:4;29131:25;29116:40;;;:11;:40;;;;:105;;;;29188:33;29173:48;;;:11;:48;;;;29116:105;:158;;;;29238:36;29262:11;29238:23;:36::i;:::-;29116:158;29096:178;;28977:305;;;:::o;56022:81::-;6347:12;:10;:12::i;:::-;6336:23;;:7;:5;:7::i;:::-;:23;;;6328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56089:6:::1;56080;;:15;;;;;;;;;;;;;;;;;;56022:81:::0;:::o;32090:100::-;32144:13;32177:5;32170:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32090:100;:::o;33593:204::-;33661:7;33686:16;33694:7;33686;:16::i;:::-;33681:64;;33711:34;;;;;;;;;;;;;;33681:64;33765:15;:24;33781:7;33765:24;;;;;;;;;;;;;;;;;;;;;33758:31;;33593:204;;;:::o;33156:371::-;33229:13;33245:24;33261:7;33245:15;:24::i;:::-;33229:40;;33290:5;33284:11;;:2;:11;;;33280:48;;;33304:24;;;;;;;;;;;;;;33280:48;33361:5;33345:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33371:37;33388:5;33395:12;:10;:12::i;:::-;33371:16;:37::i;:::-;33370:38;33345:63;33341:138;;;33432:35;;;;;;;;;;;;;;33341:138;33491:28;33500:2;33504:7;33513:5;33491:8;:28::i;:::-;33218:309;33156:371;;:::o;28226:303::-;28270:7;28495:15;:13;:15::i;:::-;28480:12;;28464:13;;:28;:46;28457:53;;28226:303;:::o;55481:109::-;55534:7;55561:21;55575:6;55561:13;:21::i;:::-;55554:28;;55481:109;;;:::o;34458:170::-;34592:28;34602:4;34608:2;34612:7;34592:9;:28::i;:::-;34458:170;;;:::o;55815:105::-;6347:12;:10;:12::i;:::-;6336:23;;:7;:5;:7::i;:::-;:23;;;6328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55880:32:::1;55890:12;:10;:12::i;:::-;55904:7;55880:9;:32::i;:::-;55815:105:::0;:::o;54266:41::-;54303:4;54266:41;:::o;55598:209::-;6347:12;:10;:12::i;:::-;6336:23;;:7;:5;:7::i;:::-;:23;;;6328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55648:15:::1;55666:21;55648:39;;55699:12;55717;:10;:12::i;:::-;:17;;55742:7;55717:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55698:56;;;55773:7;55765:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;55637:170;;55598:209::o:0;34699:185::-;34837:39;34854:4;34860:2;34864:7;34837:39;;;;;;;;;;;;:16;:39::i;:::-;34699:185;;;:::o;56111:100::-;6347:12;:10;:12::i;:::-;6336:23;;:7;:5;:7::i;:::-;:23;;;6328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56195:8:::1;56185:7;:18;;;;;;;;;;;;:::i;:::-;;56111:100:::0;:::o;54968:396::-;55005:15;55023:12;:10;:12::i;:::-;55005:30;;55055:6;;;;;;;;;;;55054:7;55046:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;55121:1;55105:13;:11;:13::i;:::-;:17;;;;:::i;:::-;54303:4;55091:31;;55083:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55177:7;55164:20;;:9;:20;;;55156:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;55260:1;55240:16;55248:7;55240;:16::i;:::-;55232:25;;:29;;;;:::i;:::-;54213:1;55220:41;;55212:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;55305:19;55313:7;55322:1;55305:7;:19::i;:::-;55335:21;55345:7;55354:1;55335:9;:21::i;:::-;54994:370;54968:396::o;54357:25::-;;;;;;;;;;;;;:::o;31898:125::-;31962:7;31989:21;32002:7;31989:12;:21::i;:::-;:26;;;31982:33;;31898:125;;;:::o;54012:106::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29346:206::-;29410:7;29451:1;29434:19;;:5;:19;;;29430:60;;;29462:28;;;;;;;;;;;;;;29430:60;29516:12;:19;29529:5;29516:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29508:36;;29501:43;;29346:206;;;:::o;6767:103::-;6347:12;:10;:12::i;:::-;6336:23;;:7;:5;:7::i;:::-;:23;;;6328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6832:30:::1;6859:1;6832:18;:30::i;:::-;6767:103::o:0;6116:87::-;6162:7;6189:6;;;;;;;;;;;6182:13;;6116:87;:::o;55928:86::-;6347:12;:10;:12::i;:::-;6336:23;;:7;:5;:7::i;:::-;:23;;;6328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56000:6:::1;55992:5;:14;;;;55928:86:::0;:::o;32259:104::-;32315:13;32348:7;32341:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32259:104;:::o;54314:34::-;;;;:::o;54464:496::-;54523:15;54541:12;:10;:12::i;:::-;54523:30;;54573:6;;;;;;;;;;;54572:7;54564:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;54639:7;54623:13;:11;:13::i;:::-;:23;;;;:::i;:::-;54303:4;54609:37;;54601:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54698:1;54688:7;:11;54680:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;54746:7;54733:20;;:9;:20;;;54725:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;54803:7;54258:1;54789:21;;54781:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54876:9;54867:5;;54857:7;:15;;;;:::i;:::-;:28;54849:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54925:27;54935:7;54944;54925:9;:27::i;:::-;54512:448;54464:496;:::o;33869:287::-;33980:12;:10;:12::i;:::-;33968:24;;:8;:24;;;33964:54;;;34001:17;;;;;;;;;;;;;;33964:54;34076:8;34031:18;:32;34050:12;:10;:12::i;:::-;34031:32;;;;;;;;;;;;;;;:42;34064:8;34031:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34129:8;34100:48;;34115:12;:10;:12::i;:::-;34100:48;;;34139:8;34100:48;;;;;;:::i;:::-;;;;;;;;33869:287;;:::o;34955:369::-;35122:28;35132:4;35138:2;35142:7;35122:9;:28::i;:::-;35165:15;:2;:13;;;:15::i;:::-;:76;;;;;35185:56;35216:4;35222:2;35226:7;35235:5;35185:30;:56::i;:::-;35184:57;35165:76;35161:156;;;35265:40;;;;;;;;;;;;;;35161:156;34955:369;;;;:::o;54125:46::-;;;;;;;;;;;;;;;;;;;:::o;56219:362::-;56285:13;56319:17;56327:8;56319:7;:17::i;:::-;56311:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;56404:1;56386:7;56380:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;56462:7;56486:26;56503:8;56486:16;:26::i;:::-;56529:13;;;;;;;;;;;;;;;;;56429:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56380:193;56373:200;;56219:362;;;:::o;34227:164::-;34324:4;34348:18;:25;34367:5;34348:25;;;;;;;;;;;;;;;:35;34374:8;34348:35;;;;;;;;;;;;;;;;;;;;;;;;;34341:42;;34227:164;;;;:::o;54178:36::-;54213:1;54178:36;:::o;7025:201::-;6347:12;:10;:12::i;:::-;6336:23;;:7;:5;:7::i;:::-;:23;;;6328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7134:1:::1;7114:22;;:8;:22;;;;7106:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7190:28;7209:8;7190:18;:28::i;:::-;7025:201:::0;:::o;54221:38::-;54258:1;54221:38;:::o;18923:157::-;19008:4;19047:25;19032:40;;;:11;:40;;;;19025:47;;18923:157;;;:::o;4840:98::-;4893:7;4920:10;4913:17;;4840:98;:::o;35579:174::-;35636:4;35679:7;35660:15;:13;:15::i;:::-;:26;;:53;;;;;35700:13;;35690:7;:23;35660:53;:85;;;;;35718:11;:20;35730:7;35718:20;;;;;;;;;;;:27;;;;;;;;;;;;35717:28;35660:85;35653:92;;35579:174;;;:::o;44805:196::-;44947:2;44920:15;:24;44936:7;44920:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44985:7;44981:2;44965:28;;44974:5;44965:28;;;;;;;;;;;;44805:196;;;:::o;55372:101::-;55437:7;55464:1;55457:8;;55372:101;:::o;29634:137::-;29695:7;29730:12;:19;29743:5;29730:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29722:41;;29715:48;;29634:137;;;:::o;39753:2130::-;39868:35;39906:21;39919:7;39906:12;:21::i;:::-;39868:59;;39966:4;39944:26;;:13;:18;;;:26;;;39940:67;;39979:28;;;;;;;;;;;;;;39940:67;40020:22;40062:4;40046:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40083:36;40100:4;40106:12;:10;:12::i;:::-;40083:16;:36::i;:::-;40046:73;:126;;;;40160:12;:10;:12::i;:::-;40136:36;;:20;40148:7;40136:11;:20::i;:::-;:36;;;40046:126;40020:153;;40191:17;40186:66;;40217:35;;;;;;;;;;;;;;40186:66;40281:1;40267:16;;:2;:16;;;40263:52;;;40292:23;;;;;;;;;;;;;;40263:52;40328:43;40350:4;40356:2;40360:7;40369:1;40328:21;:43::i;:::-;40436:35;40453:1;40457:7;40466:4;40436:8;:35::i;:::-;40797:1;40767:12;:18;40780:4;40767:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40841:1;40813:12;:16;40826:2;40813:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40859:31;40893:11;:20;40905:7;40893:20;;;;;;;;;;;40859:54;;40944:2;40928:8;:13;;;:18;;;;;;;;;;;;;;;;;;40994:15;40961:8;:23;;;:49;;;;;;;;;;;;;;;;;;41262:19;41294:1;41284:7;:11;41262:33;;41310:31;41344:11;:24;41356:11;41344:24;;;;;;;;;;;41310:58;;41412:1;41387:27;;:8;:13;;;;;;;;;;;;:27;;;41383:384;;;41597:13;;41582:11;:28;41578:174;;41651:4;41635:8;:13;;;:20;;;;;;;;;;;;;;;;;;41704:13;:28;;;41678:8;:23;;;:54;;;;;;;;;;;;;;;;;;41578:174;41383:384;40742:1036;;;41814:7;41810:2;41795:27;;41804:4;41795:27;;;;;;;;;;;;41833:42;41854:4;41860:2;41864:7;41873:1;41833:20;:42::i;:::-;39857:2026;;39753:2130;;;:::o;35837:104::-;35906:27;35916:2;35920:8;35906:27;;;;;;;;;;;;:9;:27::i;:::-;35837:104;;:::o;30124:112::-;30179:6;30205:12;:19;30218:5;30205:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;30198:30;;30124:112;;;:::o;30424:101::-;30514:3;30488:12;:19;30501:5;30488:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;30424:101;;:::o;30727:1109::-;30789:21;;:::i;:::-;30823:12;30838:7;30823:22;;30906:4;30887:15;:13;:15::i;:::-;:23;;:47;;;;;30921:13;;30914:4;:20;30887:47;30883:886;;;30955:31;30989:11;:17;31001:4;30989:17;;;;;;;;;;;30955:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31030:9;:16;;;31025:729;;31101:1;31075:28;;:9;:14;;;:28;;;31071:101;;31139:9;31132:16;;;;;;31071:101;31474:261;31481:4;31474:261;;;31514:6;;;;;;;;31559:11;:17;31571:4;31559:17;;;;;;;;;;;31547:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31633:1;31607:28;;:9;:14;;;:28;;;31603:109;;31675:9;31668:16;;;;;;31603:109;31474:261;;;31025:729;30936:833;30883:886;31797:31;;;;;;;;;;;;;;30727:1109;;;;:::o;7386:191::-;7460:16;7479:6;;;;;;;;;;;7460:25;;7505:8;7496:6;;:17;;;;;;;;;;;;;;;;;;7560:8;7529:40;;7550:8;7529:40;;;;;;;;;;;;7449:128;7386:191;:::o;8817:326::-;8877:4;9134:1;9112:7;:19;;;:23;9105:30;;8817:326;;;:::o;45493:667::-;45656:4;45693:2;45677:36;;;45714:12;:10;:12::i;:::-;45728:4;45734:7;45743:5;45677:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45673:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45928:1;45911:6;:13;:18;45907:235;;;45957:40;;;;;;;;;;;;;;45907:235;46100:6;46094:13;46085:6;46081:2;46077:15;46070:38;45673:480;45806:45;;;45796:55;;;:6;:55;;;;45789:62;;;45493:667;;;;;;:::o;2402:723::-;2458:13;2688:1;2679:5;:10;2675:53;;;2706:10;;;;;;;;;;;;;;;;;;;;;2675:53;2738:12;2753:5;2738:20;;2769:14;2794:78;2809:1;2801:4;:9;2794:78;;2827:8;;;;;:::i;:::-;;;;2858:2;2850:10;;;;;:::i;:::-;;;2794:78;;;2882:19;2914:6;2904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2882:39;;2932:154;2948:1;2939:5;:10;2932:154;;2976:1;2966:11;;;;;:::i;:::-;;;3043:2;3035:5;:10;;;;:::i;:::-;3022:2;:24;;;;:::i;:::-;3009:39;;2992:6;2999;2992:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3072:2;3063:11;;;;;:::i;:::-;;;2932:154;;;3110:6;3096:21;;;;;2402:723;;;;:::o;46808:159::-;;;;;:::o;47626:158::-;;;;;:::o;36315:1751::-;36438:20;36461:13;;36438:36;;36503:1;36489:16;;:2;:16;;;36485:48;;;36514:19;;;;;;;;;;;;;;36485:48;36560:1;36548:8;:13;36544:44;;;36570:18;;;;;;;;;;;;;;36544:44;36601:61;36631:1;36635:2;36639:12;36653:8;36601:21;:61::i;:::-;36974:8;36939:12;:16;36952:2;36939:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37038:8;36998:12;:16;37011:2;36998:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37097:2;37064:11;:25;37076:12;37064:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37164:15;37114:11;:25;37126:12;37114:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37197:20;37220:12;37197:35;;37247:11;37276:8;37261:12;:23;37247:37;;37305:15;:2;:13;;;:15::i;:::-;37301:633;;;37341:314;37397:12;37393:2;37372:38;;37389:1;37372:38;;;;;;;;;;;;37438:69;37477:1;37481:2;37485:14;;;;;;37501:5;37438:30;:69::i;:::-;37433:174;;37543:40;;;;;;;;;;;;;;37433:174;37650:3;37634:12;:19;;37341:314;;37736:12;37719:13;;:29;37715:43;;37750:8;;;37715:43;37301:633;;;37799:120;37855:14;;;;;;37851:2;37830:40;;37847:1;37830:40;;;;;;;;;;;;37914:3;37898:12;:19;;37799:120;;37301:633;37964:12;37948:13;:28;;;;36914:1074;;37998:60;38027:1;38031:2;38035:12;38049:8;37998:20;:60::i;:::-;36427:1639;36315:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:398::-;13226:3;13247:83;13328:1;13323:3;13247:83;:::i;:::-;13240:90;;13339:93;13428:3;13339:93;:::i;:::-;13457:1;13452:3;13448:11;13441:18;;13067:398;;;:::o;13471:366::-;13613:3;13634:67;13698:2;13693:3;13634:67;:::i;:::-;13627:74;;13710:93;13799:3;13710:93;:::i;:::-;13828:2;13823:3;13819:12;13812:19;;13471:366;;;:::o;13843:::-;13985:3;14006:67;14070:2;14065:3;14006:67;:::i;:::-;13999:74;;14082:93;14171:3;14082:93;:::i;:::-;14200:2;14195:3;14191:12;14184:19;;13843:366;;;:::o;14215:118::-;14302:24;14320:5;14302:24;:::i;:::-;14297:3;14290:37;14215:118;;:::o;14339:589::-;14564:3;14586:92;14674:3;14665:6;14586:92;:::i;:::-;14579:99;;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:3;14912:10;;14339:589;;;;;;:::o;14934:379::-;15118:3;15140:147;15283:3;15140:147;:::i;:::-;15133:154;;15304:3;15297:10;;14934:379;;;:::o;15319:222::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15463:71;15531:1;15520:9;15516:17;15507:6;15463:71;:::i;:::-;15319:222;;;;:::o;15547:640::-;15742:4;15780:3;15769:9;15765:19;15757:27;;15794:71;15862:1;15851:9;15847:17;15838:6;15794:71;:::i;:::-;15875:72;15943:2;15932:9;15928:18;15919:6;15875:72;:::i;:::-;15957;16025:2;16014:9;16010:18;16001:6;15957:72;:::i;:::-;16076:9;16070:4;16066:20;16061:2;16050:9;16046:18;16039:48;16104:76;16175:4;16166:6;16104:76;:::i;:::-;16096:84;;15547:640;;;;;;;:::o;16193:210::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16331:65;16393:1;16382:9;16378:17;16369:6;16331:65;:::i;:::-;16193:210;;;;:::o;16409:313::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:78;16710:4;16701:6;16637:78;:::i;:::-;16629:86;;16409:313;;;;:::o;16728:419::-;16894:4;16932:2;16921:9;16917:18;16909:26;;16981:9;16975:4;16971:20;16967:1;16956:9;16952:17;16945:47;17009:131;17135:4;17009:131;:::i;:::-;17001:139;;16728:419;;;:::o;17153:::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17831:9;17825:4;17821:20;17817:1;17806:9;17802:17;17795:47;17859:131;17985:4;17859:131;:::i;:::-;17851:139;;17578:419;;;:::o;18003:::-;18169:4;18207:2;18196:9;18192:18;18184:26;;18256:9;18250:4;18246:20;18242:1;18231:9;18227:17;18220:47;18284:131;18410:4;18284:131;:::i;:::-;18276:139;;18003:419;;;:::o;18428:::-;18594:4;18632:2;18621:9;18617:18;18609:26;;18681:9;18675:4;18671:20;18667:1;18656:9;18652:17;18645:47;18709:131;18835:4;18709:131;:::i;:::-;18701:139;;18428:419;;;:::o;18853:::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;18853:419;;;:::o;19278:::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19531:9;19525:4;19521:20;19517:1;19506:9;19502:17;19495:47;19559:131;19685:4;19559:131;:::i;:::-;19551:139;;19278:419;;;:::o;19703:::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:131;20110:4;19984:131;:::i;:::-;19976:139;;19703:419;;;:::o;20128:::-;20294:4;20332:2;20321:9;20317:18;20309:26;;20381:9;20375:4;20371:20;20367:1;20356:9;20352:17;20345:47;20409:131;20535:4;20409:131;:::i;:::-;20401:139;;20128:419;;;:::o;20553:::-;20719:4;20757:2;20746:9;20742:18;20734:26;;20806:9;20800:4;20796:20;20792:1;20781:9;20777:17;20770:47;20834:131;20960:4;20834:131;:::i;:::-;20826:139;;20553:419;;;:::o;20978:::-;21144:4;21182:2;21171:9;21167:18;21159:26;;21231:9;21225:4;21221:20;21217:1;21206:9;21202:17;21195:47;21259:131;21385:4;21259:131;:::i;:::-;21251:139;;20978:419;;;:::o;21403:222::-;21496:4;21534:2;21523:9;21519:18;21511:26;;21547:71;21615:1;21604:9;21600:17;21591:6;21547:71;:::i;:::-;21403:222;;;;:::o;21631:129::-;21665:6;21692:20;;:::i;:::-;21682:30;;21721:33;21749:4;21741:6;21721:33;:::i;:::-;21631:129;;;:::o;21766:75::-;21799:6;21832:2;21826:9;21816:19;;21766:75;:::o;21847:307::-;21908:4;21998:18;21990:6;21987:30;21984:56;;;22020:18;;:::i;:::-;21984:56;22058:29;22080:6;22058:29;:::i;:::-;22050:37;;22142:4;22136;22132:15;22124:23;;21847:307;;;:::o;22160:308::-;22222:4;22312:18;22304:6;22301:30;22298:56;;;22334:18;;:::i;:::-;22298:56;22372:29;22394:6;22372:29;:::i;:::-;22364:37;;22456:4;22450;22446:15;22438:23;;22160:308;;;:::o;22474:141::-;22523:4;22546:3;22538:11;;22569:3;22566:1;22559:14;22603:4;22600:1;22590:18;22582:26;;22474:141;;;:::o;22621:98::-;22672:6;22706:5;22700:12;22690:22;;22621:98;;;:::o;22725:99::-;22777:6;22811:5;22805:12;22795:22;;22725:99;;;:::o;22830:168::-;22913:11;22947:6;22942:3;22935:19;22987:4;22982:3;22978:14;22963:29;;22830:168;;;;:::o;23004:147::-;23105:11;23142:3;23127:18;;23004:147;;;;:::o;23157:169::-;23241:11;23275:6;23270:3;23263:19;23315:4;23310:3;23306:14;23291:29;;23157:169;;;;:::o;23332:148::-;23434:11;23471:3;23456:18;;23332:148;;;;:::o;23486:305::-;23526:3;23545:20;23563:1;23545:20;:::i;:::-;23540:25;;23579:20;23597:1;23579:20;:::i;:::-;23574:25;;23733:1;23665:66;23661:74;23658:1;23655:81;23652:107;;;23739:18;;:::i;:::-;23652:107;23783:1;23780;23776:9;23769:16;;23486:305;;;;:::o;23797:185::-;23837:1;23854:20;23872:1;23854:20;:::i;:::-;23849:25;;23888:20;23906:1;23888:20;:::i;:::-;23883:25;;23927:1;23917:35;;23932:18;;:::i;:::-;23917:35;23974:1;23971;23967:9;23962:14;;23797:185;;;;:::o;23988:348::-;24028:7;24051:20;24069:1;24051:20;:::i;:::-;24046:25;;24085:20;24103:1;24085:20;:::i;:::-;24080:25;;24273:1;24205:66;24201:74;24198:1;24195:81;24190:1;24183:9;24176:17;24172:105;24169:131;;;24280:18;;:::i;:::-;24169:131;24328:1;24325;24321:9;24310:20;;23988:348;;;;:::o;24342:191::-;24382:4;24402:20;24420:1;24402:20;:::i;:::-;24397:25;;24436:20;24454:1;24436:20;:::i;:::-;24431:25;;24475:1;24472;24469:8;24466:34;;;24480:18;;:::i;:::-;24466:34;24525:1;24522;24518:9;24510:17;;24342:191;;;;:::o;24539:96::-;24576:7;24605:24;24623:5;24605:24;:::i;:::-;24594:35;;24539:96;;;:::o;24641:90::-;24675:7;24718:5;24711:13;24704:21;24693:32;;24641:90;;;:::o;24737:149::-;24773:7;24813:66;24806:5;24802:78;24791:89;;24737:149;;;:::o;24892:126::-;24929:7;24969:42;24962:5;24958:54;24947:65;;24892:126;;;:::o;25024:77::-;25061:7;25090:5;25079:16;;25024:77;;;:::o;25107:154::-;25191:6;25186:3;25181;25168:30;25253:1;25244:6;25239:3;25235:16;25228:27;25107:154;;;:::o;25267:307::-;25335:1;25345:113;25359:6;25356:1;25353:13;25345:113;;;25444:1;25439:3;25435:11;25429:18;25425:1;25420:3;25416:11;25409:39;25381:2;25378:1;25374:10;25369:15;;25345:113;;;25476:6;25473:1;25470:13;25467:101;;;25556:1;25547:6;25542:3;25538:16;25531:27;25467:101;25316:258;25267:307;;;:::o;25580:320::-;25624:6;25661:1;25655:4;25651:12;25641:22;;25708:1;25702:4;25698:12;25729:18;25719:81;;25785:4;25777:6;25773:17;25763:27;;25719:81;25847:2;25839:6;25836:14;25816:18;25813:38;25810:84;;;25866:18;;:::i;:::-;25810:84;25631:269;25580:320;;;:::o;25906:281::-;25989:27;26011:4;25989:27;:::i;:::-;25981:6;25977:40;26119:6;26107:10;26104:22;26083:18;26071:10;26068:34;26065:62;26062:88;;;26130:18;;:::i;:::-;26062:88;26170:10;26166:2;26159:22;25949:238;25906:281;;:::o;26193:233::-;26232:3;26255:24;26273:5;26255:24;:::i;:::-;26246:33;;26301:66;26294:5;26291:77;26288:103;;;26371:18;;:::i;:::-;26288:103;26418:1;26411:5;26407:13;26400:20;;26193:233;;;:::o;26432:176::-;26464:1;26481:20;26499:1;26481:20;:::i;:::-;26476:25;;26515:20;26533:1;26515:20;:::i;:::-;26510:25;;26554:1;26544:35;;26559:18;;:::i;:::-;26544:35;26600:1;26597;26593:9;26588:14;;26432:176;;;;:::o;26614:180::-;26662:77;26659:1;26652:88;26759:4;26756:1;26749:15;26783:4;26780:1;26773:15;26800:180;26848:77;26845:1;26838:88;26945:4;26942:1;26935:15;26969:4;26966:1;26959:15;26986:180;27034:77;27031:1;27024:88;27131:4;27128:1;27121:15;27155:4;27152:1;27145:15;27172:180;27220:77;27217:1;27210:88;27317:4;27314:1;27307:15;27341:4;27338:1;27331:15;27358:180;27406:77;27403:1;27396:88;27503:4;27500:1;27493:15;27527:4;27524:1;27517:15;27544:117;27653:1;27650;27643:12;27667:117;27776:1;27773;27766:12;27790:117;27899:1;27896;27889:12;27913:117;28022:1;28019;28012:12;28036:102;28077:6;28128:2;28124:7;28119:2;28112:5;28108:14;28104:28;28094:38;;28036:102;;;:::o;28144:156::-;28284:8;28280:1;28272:6;28268:14;28261:32;28144:156;:::o;28306:225::-;28446:34;28442:1;28434:6;28430:14;28423:58;28515:8;28510:2;28502:6;28498:15;28491:33;28306:225;:::o;28537:160::-;28677:12;28673:1;28665:6;28661:14;28654:36;28537:160;:::o;28703:172::-;28843:24;28839:1;28831:6;28827:14;28820:48;28703:172;:::o;28881:176::-;29021:28;29017:1;29009:6;29005:14;28998:52;28881:176;:::o;29063:168::-;29203:20;29199:1;29191:6;29187:14;29180:44;29063:168;:::o;29237:171::-;29377:23;29373:1;29365:6;29361:14;29354:47;29237:171;:::o;29414:182::-;29554:34;29550:1;29542:6;29538:14;29531:58;29414:182;:::o;29602:172::-;29742:24;29738:1;29730:6;29726:14;29719:48;29602:172;:::o;29780:114::-;;:::o;29900:164::-;30040:16;30036:1;30028:6;30024:14;30017:40;29900:164;:::o;30070:162::-;30210:14;30206:1;30198:6;30194:14;30187:38;30070:162;:::o;30238:122::-;30311:24;30329:5;30311:24;:::i;:::-;30304:5;30301:35;30291:63;;30350:1;30347;30340:12;30291:63;30238:122;:::o;30366:116::-;30436:21;30451:5;30436:21;:::i;:::-;30429:5;30426:32;30416:60;;30472:1;30469;30462:12;30416:60;30366:116;:::o;30488:120::-;30560:23;30577:5;30560:23;:::i;:::-;30553:5;30550:34;30540:62;;30598:1;30595;30588:12;30540:62;30488:120;:::o;30614:122::-;30687:24;30705:5;30687:24;:::i;:::-;30680:5;30677:35;30667:63;;30726:1;30723;30716:12;30667:63;30614:122;:::o

Swarm Source

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