ETH Price: $3,449.92 (-0.79%)
Gas: 13 Gwei

Token

Moon Titans (TITAN)
 

Overview

Max Total Supply

5,000 TITAN

Holders

361

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TITAN
0x4fc6c8097687377e27ab173d93a2a30666ebe303
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:
MoonTitans

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**

████████████████████████████████████████████████████████████████████████████████████████████████
█▄─█▀▀▀█─▄█─█─█▄─▄▄─█▄─▀█▄─▄███─▄─▄─█─█─█▄─▄▄─███─▄▄▄─█─▄▄─█▄─▀█▀─▄█▄─▄▄─█─▄─▄─███─█─█▄─▄█─▄─▄─█
██─█─█─█─██─▄─██─▄█▀██─█▄▀─██████─███─▄─██─▄█▀███─███▀█─██─██─█▄█─███─▄█▀███─█████─▄─██─████─███
▀▀▄▄▄▀▄▄▄▀▀▄▀▄▀▄▄▄▄▄▀▄▄▄▀▀▄▄▀▀▀▀▄▄▄▀▀▄▀▄▀▄▄▄▄▄▀▀▀▄▄▄▄▄▀▄▄▄▄▀▄▄▄▀▄▄▄▀▄▄▄▄▄▀▀▄▄▄▀▀▀▀▄▀▄▀▄▄▄▀▀▄▄▄▀▀
██████████████████████████████████████████████████████████████████████████████
█─▄─▄─█─█─█▄─▄▄─███▄─▄▄─██▀▄─██▄─▄▄▀█─▄─▄─█─█─███████─▄▄─█▄─▀█▄─▄█▄─▄███▄─█─▄█
███─███─▄─██─▄█▀████─▄█▀██─▀─███─▄─▄███─███─▄─█░░████─██─██─█▄▀─███─██▀██▄─▄██
▀▀▄▄▄▀▀▄▀▄▀▄▄▄▄▄▀▀▀▄▄▄▄▄▀▄▄▀▄▄▀▄▄▀▄▄▀▀▄▄▄▀▀▄▀▄▀▀▄▀▀▀▀▄▄▄▄▀▄▄▄▀▀▄▄▀▄▄▄▄▄▀▀▄▄▄▀▀
████████████████████████████████████████████████████████████████████████████████████████████
█─▄─▄─█─█─█─▄▄─█─▄▄▄▄█▄─▄▄─███▄─█▀▀▀█─▄█▄─▄█─▄─▄─█─█─███─▄─▄─█▄─▄█─▄─▄─██▀▄─██▄─▀█▄─▄█─▄▄▄▄█
███─███─▄─█─██─█▄▄▄▄─██─▄█▀████─█─█─█─███─████─███─▄─█████─████─████─████─▀─███─█▄▀─██▄▄▄▄─█
▀▀▄▄▄▀▀▄▀▄▀▄▄▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀▀▀▀▄▄▄▀▄▄▄▀▀▄▄▄▀▀▄▄▄▀▀▄▀▄▀▀▀▀▄▄▄▀▀▄▄▄▀▀▄▄▄▀▀▄▄▀▄▄▀▄▄▄▀▀▄▄▀▄▄▄▄▄▀
████████████████████████████████████████████████
█─▄▄▄▄█▄─██─▄█▄─▄▄▀█▄─█─▄█▄─▄█▄─█─▄█▄─▄▄─█▄─▄▄▀█
█▄▄▄▄─██─██─███─▄─▄██▄▀▄███─███▄▀▄███─▄█▀██─██─█
▀▄▄▄▄▄▀▀▄▄▄▄▀▀▄▄▀▄▄▀▀▀▄▀▀▀▄▄▄▀▀▀▄▀▀▀▄▄▄▄▄▀▄▄▄▄▀▀

*/

pragma solidity ^0.8.0;

library Counters {
    struct Counter {

        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter:decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity ^0.8.0;

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

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function approve(address to, uint256 tokenId) external;

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

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

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

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


pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.0;

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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

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

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

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

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

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


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();

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.4;

contract MoonTitans is ERC721A, Ownable {
    using Strings for uint256;
    string private baseURI;
    string public hiddenMetadataUri;
    uint256 public price = 0.005 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxFreePerWallet = 1;
    uint256 public totalFree = 5000;
    uint256 public maxSupply = 5000;
    uint public nextId = 0;
    bool public mintEnabled = false;
    bool public revealed = true;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Moon Titans", "TITAN") {
        setHiddenMetadataUri("https://api.moontitans.com/");
        setBaseURI("https://api.moontitans.com/");
    }

    function mint(uint256 count) external payable {
      uint256 cost = price;
      bool isFree =
      ((totalSupply() + count < totalFree + 1) &&
      (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

      if (isFree) {
      cost = 0;
     }

     else {
      require(msg.value >= count * price, "Please send the exact amount.");
      require(totalSupply() + count <= maxSupply, "No more Titans");
      require(mintEnabled, "Minting is not live yet");
      require(count <= maxPerTx, "Max per TX reached.");
     }

      if (isFree) {
         _mintedFreeAmount[msg.sender] += count;
      }

     _safeMint(msg.sender, count);
     nextId += count;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
         return string(abi.encodePacked(hiddenMetadataUri));
        }
    
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
     hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

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

    function setRevealed() external onlyOwner {
     revealed = !revealed;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function getNextId() public view returns(uint){
     return nextId;
    }

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

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

    function FreeMintWL(address to, uint256 quantity)public onlyOwner{
    require(totalSupply() + quantity <= maxSupply, "reached max supply");
    _safeMint(to, quantity);
  }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"FreeMintWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","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":[],"name":"getNextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600b55600a600c556001600d55611388600e55611388600f5560006010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600b81526020017f4d6f6f6e20546974616e730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f544954414e0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f29291906200042d565b5080600390805190602001906200010b9291906200042d565b506200011c620001d660201b60201c565b60008190555050506200014462000138620001df60201b60201c565b620001e760201b60201c565b6200018a6040518060400160405280601b81526020017f68747470733a2f2f6170692e6d6f6f6e746974616e732e636f6d2f0000000000815250620002ad60201b60201c565b620001d06040518060400160405280601b81526020017f68747470733a2f2f6170692e6d6f6f6e746974616e732e636f6d2f00000000008152506200035860201b60201c565b620005c5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bd620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e36200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003339062000504565b60405180910390fd5b80600a9080519060200190620003549291906200042d565b5050565b62000368620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038e6200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de9062000504565b60405180910390fd5b8060099080519060200190620003ff9291906200042d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043b9062000537565b90600052602060002090601f0160209004810192826200045f5760008555620004ab565b82601f106200047a57805160ff1916838001178555620004ab565b82800160010185558215620004ab579182015b82811115620004aa5782518255916020019190600101906200048d565b5b509050620004ba9190620004be565b5090565b5b80821115620004d9576000816000905550600101620004bf565b5090565b6000620004ec60208362000526565b9150620004f9826200059c565b602082019050919050565b600060208201905081810360008301526200051f81620004dd565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055057607f821691505b602082108114156200056757620005666200056d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613bed80620005d56000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063e985e9c51461075d578063f2fde38b1461079a578063f968adbe146107c3578063fa122776146107ee5761020f565b8063b88d4fde14610676578063bc9683261461069f578063c87b56dd146106ca578063d1239730146107075761020f565b8063a035b1fe116100e7578063a035b1fe146105b0578063a0712d68146105db578063a22cb465146105f7578063a45ba8e714610620578063a70273571461064b5761020f565b80638da5cb5b1461050857806391b7f5ed1461053357806392910eec1461055c57806395d89b41146105855761020f565b806342842e0e1161019b57806361b8ce8c1161016a57806361b8ce8c146104355780636352211e1461046057806370a082311461049d578063715018a6146104da5780637ba5e621146104f15761020f565b806342842e0e1461038f5780634fdd43cb146103b857806351830227146103e157806355f804b31461040c5761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d578063333e44e6146103365780633bd64968146103615780633ccfd60b146103785761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612ef6565b610817565b6040516102489190613358565b60405180910390f35b34801561025d57600080fd5b506102666108f9565b6040516102739190613373565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f99565b61098b565b6040516102b091906132f1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb6565b610a07565b005b3480156102ee57600080fd5b506102f7610b12565b60405161030491906134b5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612da0565b610b29565b005b34801561034257600080fd5b5061034b610b39565b60405161035891906134b5565b60405180910390f35b34801561036d57600080fd5b50610376610b3f565b005b34801561038457600080fd5b5061038d610be7565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612da0565b610d12565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612f50565b610d32565b005b3480156103ed57600080fd5b506103f6610dc8565b6040516104039190613358565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612f50565b610ddb565b005b34801561044157600080fd5b5061044a610e71565b60405161045791906134b5565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612f99565b610e77565b60405161049491906132f1565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190612d33565b610e8d565b6040516104d191906134b5565b60405180910390f35b3480156104e657600080fd5b506104ef610f5d565b005b3480156104fd57600080fd5b50610506610fe5565b005b34801561051457600080fd5b5061051d61108d565b60405161052a91906132f1565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f99565b6110b7565b005b34801561056857600080fd5b50610583600480360381019061057e9190612f99565b61113d565b005b34801561059157600080fd5b5061059a6111c3565b6040516105a79190613373565b60405180910390f35b3480156105bc57600080fd5b506105c5611255565b6040516105d291906134b5565b60405180910390f35b6105f560048036038101906105f09190612f99565b61125b565b005b34801561060357600080fd5b5061061e60048036038101906106199190612e76565b6114b1565b005b34801561062c57600080fd5b50610635611629565b6040516106429190613373565b60405180910390f35b34801561065757600080fd5b506106606116b7565b60405161066d91906134b5565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612df3565b6116bd565b005b3480156106ab57600080fd5b506106b4611739565b6040516106c191906134b5565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612f99565b611743565b6040516106fe9190613373565b60405180910390f35b34801561071357600080fd5b5061071c611804565b6040516107299190613358565b60405180910390f35b34801561073e57600080fd5b50610747611817565b60405161075491906134b5565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612d60565b61181d565b6040516107919190613358565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190612d33565b6118b1565b005b3480156107cf57600080fd5b506107d86119a9565b6040516107e591906134b5565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190612eb6565b6119af565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611a90565b5b9050919050565b60606002805461090890613785565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613785565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611afa565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611b48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610acb5750610ac981610ac4611b48565b61181d565b155b15610b02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0d838383611b50565b505050565b6000610b1c611c02565b6001546000540303905090565b610b34838383611c0b565b505050565b600e5481565b610b47611b48565b73ffffffffffffffffffffffffffffffffffffffff16610b6561108d565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613415565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bef611b48565b73ffffffffffffffffffffffffffffffffffffffff16610c0d61108d565b73ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90613415565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c89906132dc565b60006040518083038185875af1925050503d8060008114610cc6576040519150601f19603f3d011682016040523d82523d6000602084013e610ccb565b606091505b5050905080610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690613475565b60405180910390fd5b50565b610d2d838383604051806020016040528060008152506116bd565b505050565b610d3a611b48565b73ffffffffffffffffffffffffffffffffffffffff16610d5861108d565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590613415565b60405180910390fd5b80600a9080519060200190610dc4929190612b04565b5050565b601160019054906101000a900460ff1681565b610de3611b48565b73ffffffffffffffffffffffffffffffffffffffff16610e0161108d565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613415565b60405180910390fd5b8060099080519060200190610e6d929190612b04565b5050565b60105481565b6000610e82826120c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f65611b48565b73ffffffffffffffffffffffffffffffffffffffff16610f8361108d565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613415565b60405180910390fd5b610fe36000612350565b565b610fed611b48565b73ffffffffffffffffffffffffffffffffffffffff1661100b61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613415565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110bf611b48565b73ffffffffffffffffffffffffffffffffffffffff166110dd61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90613415565b60405180910390fd5b80600b8190555050565b611145611b48565b73ffffffffffffffffffffffffffffffffffffffff1661116361108d565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613415565b60405180910390fd5b80600e8190555050565b6060600380546111d290613785565b80601f01602080910402602001604051908101604052809291908181526020018280546111fe90613785565b801561124b5780601f106112205761010080835404028352916020019161124b565b820191906000526020600020905b81548152906001019060200180831161122e57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461127391906135ba565b8361127c610b12565b61128691906135ba565b1080156112df5750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dc91906135ba565b11155b905080156112f0576000915061142c565b600b54836112fe9190613641565b341015611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613455565b60405180910390fd5b600f548361134c610b12565b61135691906135ba565b1115611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90613395565b60405180910390fd5b601160009054906101000a900460ff166113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906133b5565b60405180910390fd5b600c5483111561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613495565b60405180910390fd5b5b80156114895782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148191906135ba565b925050819055505b6114933384612416565b82601060008282546114a591906135ba565b92505081905550505050565b6114b9611b48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061152b611b48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d8611b48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161d9190613358565b60405180910390a35050565b600a805461163690613785565b80601f016020809104026020016040519081016040528092919081815260200182805461166290613785565b80156116af5780601f10611684576101008083540402835291602001916116af565b820191906000526020600020905b81548152906001019060200180831161169257829003601f168201915b505050505081565b600d5481565b6116c8848484611c0b565b6116e78373ffffffffffffffffffffffffffffffffffffffff16612434565b80156116fc57506116fa84848484612457565b155b15611733576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061174e82611afa565b61178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613435565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156117d157600a6040516020016117bb9190613296565b60405160208183030381529060405290506117ff565b60096117dc836125b7565b6040516020016117ed9291906132ad565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b9611b48565b73ffffffffffffffffffffffffffffffffffffffff166118d761108d565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611994906133d5565b60405180910390fd5b6119a681612350565b50565b600c5481565b6119b7611b48565b73ffffffffffffffffffffffffffffffffffffffff166119d561108d565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613415565b60405180910390fd5b600f5481611a37610b12565b611a4191906135ba565b1115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906133f5565b60405180910390fd5b611a8c8282612416565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b05611c02565b11158015611b14575060005482105b8015611b41575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c16826120c1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ca2611b48565b73ffffffffffffffffffffffffffffffffffffffff161480611cd15750611cd085611ccb611b48565b61181d565b5b80611d165750611cdf611b48565b73ffffffffffffffffffffffffffffffffffffffff16611cfe8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dc38585856001612718565b611dcf60008487611b50565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561204f57600054821461204e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba858585600161271e565b5050505050565b6120c9612b8a565b6000829050806120d7611c02565b111580156120e6575060005481105b15612319576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121fb57809250505061234b565b5b60011561231657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231157809250505061234b565b6121fc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612430828260405180602001604052806000815250612724565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247d611b48565b8786866040518563ffffffff1660e01b815260040161249f949392919061330c565b602060405180830381600087803b1580156124b957600080fd5b505af19250505080156124ea57506040513d601f19601f820116820180604052508101906124e79190612f23565b60015b612564573d806000811461251a576040519150601f19603f3d011682016040523d82523d6000602084013e61251f565b606091505b5060008151141561255c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612713565b600082905060005b6000821461263157808061261a906137e8565b915050600a8261262a9190613610565b9150612607565b60008167ffffffffffffffff81111561264d5761264c61391e565b5b6040519080825280601f01601f19166020018201604052801561267f5781602001600182028036833780820191505090505b5090505b6000851461270c57600182612698919061369b565b9150600a856126a79190613831565b60306126b391906135ba565b60f81b8183815181106126c9576126c86138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127059190613610565b9450612683565b8093505050505b919050565b50505050565b50505050565b6127318383836001612736565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127eb6000868387612718565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129b557506129b48773ffffffffffffffffffffffffffffffffffffffff16612434565b5b15612a7b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2a6000888480600101955088612457565b612a60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129bb578260005414612a7657600080fd5b612ae7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a7c575b816000819055505050612afd600086838761271e565b5050505050565b828054612b1090613785565b90600052602060002090601f016020900481019282612b325760008555612b79565b82601f10612b4b57805160ff1916838001178555612b79565b82800160010185558215612b79579182015b82811115612b78578251825591602001919060010190612b5d565b5b509050612b869190612bcd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf8846134f5565b6134d0565b905082815260208101848484011115612c1957612c18613952565b5b612c24848285613743565b509392505050565b6000612c3f612c3a84613526565b6134d0565b905082815260208101848484011115612c5b57612c5a613952565b5b612c66848285613743565b509392505050565b600081359050612c7d81613b5b565b92915050565b600081359050612c9281613b72565b92915050565b600081359050612ca781613b89565b92915050565b600081519050612cbc81613b89565b92915050565b600082601f830112612cd757612cd661394d565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d0461394d565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d81613ba0565b92915050565b600060208284031215612d4957612d4861395c565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d7661395c565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db861395c565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c61395c565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613957565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c61395c565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc61395c565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b61395c565b5b6000612f1a84828501612c98565b91505092915050565b600060208284031215612f3957612f3861395c565b5b6000612f4784828501612cad565b91505092915050565b600060208284031215612f6657612f6561395c565b5b600082013567ffffffffffffffff811115612f8457612f83613957565b5b612f9084828501612cf0565b91505092915050565b600060208284031215612faf57612fae61395c565b5b6000612fbd84828501612d1e565b91505092915050565b612fcf816136cf565b82525050565b612fde816136e1565b82525050565b6000612fef8261356c565b612ff98185613582565b9350613009818560208601613752565b61301281613961565b840191505092915050565b600061302882613577565b613032818561359e565b9350613042818560208601613752565b61304b81613961565b840191505092915050565b600061306182613577565b61306b81856135af565b935061307b818560208601613752565b80840191505092915050565b6000815461309481613785565b61309e81866135af565b945060018216600081146130b957600181146130ca576130fd565b60ff198316865281860193506130fd565b6130d385613557565b60005b838110156130f5578154818901526001820191506020810190506130d6565b838801955050505b50505092915050565b6000613113600e8361359e565b915061311e82613972565b602082019050919050565b600061313660178361359e565b91506131418261399b565b602082019050919050565b600061315960268361359e565b9150613164826139c4565b604082019050919050565b600061317c60128361359e565b915061318782613a13565b602082019050919050565b600061319f6005836135af565b91506131aa82613a3c565b600582019050919050565b60006131c260208361359e565b91506131cd82613a65565b602082019050919050565b60006131e5602f8361359e565b91506131f082613a8e565b604082019050919050565b6000613208601d8361359e565b915061321382613add565b602082019050919050565b600061322b600083613593565b915061323682613b06565b600082019050919050565b600061324e60108361359e565b915061325982613b09565b602082019050919050565b600061327160138361359e565b915061327c82613b32565b602082019050919050565b61329081613739565b82525050565b60006132a28284613087565b915081905092915050565b60006132b98285613087565b91506132c58284613056565b91506132d082613192565b91508190509392505050565b60006132e78261321e565b9150819050919050565b60006020820190506133066000830184612fc6565b92915050565b60006080820190506133216000830187612fc6565b61332e6020830186612fc6565b61333b6040830185613287565b818103606083015261334d8184612fe4565b905095945050505050565b600060208201905061336d6000830184612fd5565b92915050565b6000602082019050818103600083015261338d818461301d565b905092915050565b600060208201905081810360008301526133ae81613106565b9050919050565b600060208201905081810360008301526133ce81613129565b9050919050565b600060208201905081810360008301526133ee8161314c565b9050919050565b6000602082019050818103600083015261340e8161316f565b9050919050565b6000602082019050818103600083015261342e816131b5565b9050919050565b6000602082019050818103600083015261344e816131d8565b9050919050565b6000602082019050818103600083015261346e816131fb565b9050919050565b6000602082019050818103600083015261348e81613241565b9050919050565b600060208201905081810360008301526134ae81613264565b9050919050565b60006020820190506134ca6000830184613287565b92915050565b60006134da6134eb565b90506134e682826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156135105761350f61391e565b5b61351982613961565b9050602081019050919050565b600067ffffffffffffffff8211156135415761354061391e565b5b61354a82613961565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c582613739565b91506135d083613739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561360557613604613862565b5b828201905092915050565b600061361b82613739565b915061362683613739565b92508261363657613635613891565b5b828204905092915050565b600061364c82613739565b915061365783613739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136905761368f613862565b5b828202905092915050565b60006136a682613739565b91506136b183613739565b9250828210156136c4576136c3613862565b5b828203905092915050565b60006136da82613719565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c082613961565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613739565b915061384783613739565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726520546974616e73000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b64816136cf565b8114613b6f57600080fd5b50565b613b7b816136e1565b8114613b8657600080fd5b50565b613b92816136ed565b8114613b9d57600080fd5b50565b613ba981613739565b8114613bb457600080fd5b5056fea26469706673582212205a76f000d527ba60ae648cf4edef5b6a7a19256c010932252174449be51b70b764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063e985e9c51461075d578063f2fde38b1461079a578063f968adbe146107c3578063fa122776146107ee5761020f565b8063b88d4fde14610676578063bc9683261461069f578063c87b56dd146106ca578063d1239730146107075761020f565b8063a035b1fe116100e7578063a035b1fe146105b0578063a0712d68146105db578063a22cb465146105f7578063a45ba8e714610620578063a70273571461064b5761020f565b80638da5cb5b1461050857806391b7f5ed1461053357806392910eec1461055c57806395d89b41146105855761020f565b806342842e0e1161019b57806361b8ce8c1161016a57806361b8ce8c146104355780636352211e1461046057806370a082311461049d578063715018a6146104da5780637ba5e621146104f15761020f565b806342842e0e1461038f5780634fdd43cb146103b857806351830227146103e157806355f804b31461040c5761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d578063333e44e6146103365780633bd64968146103615780633ccfd60b146103785761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612ef6565b610817565b6040516102489190613358565b60405180910390f35b34801561025d57600080fd5b506102666108f9565b6040516102739190613373565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f99565b61098b565b6040516102b091906132f1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb6565b610a07565b005b3480156102ee57600080fd5b506102f7610b12565b60405161030491906134b5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612da0565b610b29565b005b34801561034257600080fd5b5061034b610b39565b60405161035891906134b5565b60405180910390f35b34801561036d57600080fd5b50610376610b3f565b005b34801561038457600080fd5b5061038d610be7565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612da0565b610d12565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612f50565b610d32565b005b3480156103ed57600080fd5b506103f6610dc8565b6040516104039190613358565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612f50565b610ddb565b005b34801561044157600080fd5b5061044a610e71565b60405161045791906134b5565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612f99565b610e77565b60405161049491906132f1565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190612d33565b610e8d565b6040516104d191906134b5565b60405180910390f35b3480156104e657600080fd5b506104ef610f5d565b005b3480156104fd57600080fd5b50610506610fe5565b005b34801561051457600080fd5b5061051d61108d565b60405161052a91906132f1565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f99565b6110b7565b005b34801561056857600080fd5b50610583600480360381019061057e9190612f99565b61113d565b005b34801561059157600080fd5b5061059a6111c3565b6040516105a79190613373565b60405180910390f35b3480156105bc57600080fd5b506105c5611255565b6040516105d291906134b5565b60405180910390f35b6105f560048036038101906105f09190612f99565b61125b565b005b34801561060357600080fd5b5061061e60048036038101906106199190612e76565b6114b1565b005b34801561062c57600080fd5b50610635611629565b6040516106429190613373565b60405180910390f35b34801561065757600080fd5b506106606116b7565b60405161066d91906134b5565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612df3565b6116bd565b005b3480156106ab57600080fd5b506106b4611739565b6040516106c191906134b5565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612f99565b611743565b6040516106fe9190613373565b60405180910390f35b34801561071357600080fd5b5061071c611804565b6040516107299190613358565b60405180910390f35b34801561073e57600080fd5b50610747611817565b60405161075491906134b5565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612d60565b61181d565b6040516107919190613358565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190612d33565b6118b1565b005b3480156107cf57600080fd5b506107d86119a9565b6040516107e591906134b5565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190612eb6565b6119af565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611a90565b5b9050919050565b60606002805461090890613785565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613785565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611afa565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611b48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610acb5750610ac981610ac4611b48565b61181d565b155b15610b02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0d838383611b50565b505050565b6000610b1c611c02565b6001546000540303905090565b610b34838383611c0b565b505050565b600e5481565b610b47611b48565b73ffffffffffffffffffffffffffffffffffffffff16610b6561108d565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613415565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bef611b48565b73ffffffffffffffffffffffffffffffffffffffff16610c0d61108d565b73ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90613415565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c89906132dc565b60006040518083038185875af1925050503d8060008114610cc6576040519150601f19603f3d011682016040523d82523d6000602084013e610ccb565b606091505b5050905080610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690613475565b60405180910390fd5b50565b610d2d838383604051806020016040528060008152506116bd565b505050565b610d3a611b48565b73ffffffffffffffffffffffffffffffffffffffff16610d5861108d565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590613415565b60405180910390fd5b80600a9080519060200190610dc4929190612b04565b5050565b601160019054906101000a900460ff1681565b610de3611b48565b73ffffffffffffffffffffffffffffffffffffffff16610e0161108d565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613415565b60405180910390fd5b8060099080519060200190610e6d929190612b04565b5050565b60105481565b6000610e82826120c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f65611b48565b73ffffffffffffffffffffffffffffffffffffffff16610f8361108d565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613415565b60405180910390fd5b610fe36000612350565b565b610fed611b48565b73ffffffffffffffffffffffffffffffffffffffff1661100b61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613415565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110bf611b48565b73ffffffffffffffffffffffffffffffffffffffff166110dd61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90613415565b60405180910390fd5b80600b8190555050565b611145611b48565b73ffffffffffffffffffffffffffffffffffffffff1661116361108d565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613415565b60405180910390fd5b80600e8190555050565b6060600380546111d290613785565b80601f01602080910402602001604051908101604052809291908181526020018280546111fe90613785565b801561124b5780601f106112205761010080835404028352916020019161124b565b820191906000526020600020905b81548152906001019060200180831161122e57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461127391906135ba565b8361127c610b12565b61128691906135ba565b1080156112df5750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dc91906135ba565b11155b905080156112f0576000915061142c565b600b54836112fe9190613641565b341015611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613455565b60405180910390fd5b600f548361134c610b12565b61135691906135ba565b1115611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90613395565b60405180910390fd5b601160009054906101000a900460ff166113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906133b5565b60405180910390fd5b600c5483111561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613495565b60405180910390fd5b5b80156114895782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148191906135ba565b925050819055505b6114933384612416565b82601060008282546114a591906135ba565b92505081905550505050565b6114b9611b48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061152b611b48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d8611b48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161d9190613358565b60405180910390a35050565b600a805461163690613785565b80601f016020809104026020016040519081016040528092919081815260200182805461166290613785565b80156116af5780601f10611684576101008083540402835291602001916116af565b820191906000526020600020905b81548152906001019060200180831161169257829003601f168201915b505050505081565b600d5481565b6116c8848484611c0b565b6116e78373ffffffffffffffffffffffffffffffffffffffff16612434565b80156116fc57506116fa84848484612457565b155b15611733576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061174e82611afa565b61178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613435565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156117d157600a6040516020016117bb9190613296565b60405160208183030381529060405290506117ff565b60096117dc836125b7565b6040516020016117ed9291906132ad565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b9611b48565b73ffffffffffffffffffffffffffffffffffffffff166118d761108d565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611994906133d5565b60405180910390fd5b6119a681612350565b50565b600c5481565b6119b7611b48565b73ffffffffffffffffffffffffffffffffffffffff166119d561108d565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613415565b60405180910390fd5b600f5481611a37610b12565b611a4191906135ba565b1115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906133f5565b60405180910390fd5b611a8c8282612416565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b05611c02565b11158015611b14575060005482105b8015611b41575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c16826120c1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ca2611b48565b73ffffffffffffffffffffffffffffffffffffffff161480611cd15750611cd085611ccb611b48565b61181d565b5b80611d165750611cdf611b48565b73ffffffffffffffffffffffffffffffffffffffff16611cfe8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dc38585856001612718565b611dcf60008487611b50565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561204f57600054821461204e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba858585600161271e565b5050505050565b6120c9612b8a565b6000829050806120d7611c02565b111580156120e6575060005481105b15612319576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121fb57809250505061234b565b5b60011561231657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231157809250505061234b565b6121fc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612430828260405180602001604052806000815250612724565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247d611b48565b8786866040518563ffffffff1660e01b815260040161249f949392919061330c565b602060405180830381600087803b1580156124b957600080fd5b505af19250505080156124ea57506040513d601f19601f820116820180604052508101906124e79190612f23565b60015b612564573d806000811461251a576040519150601f19603f3d011682016040523d82523d6000602084013e61251f565b606091505b5060008151141561255c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612713565b600082905060005b6000821461263157808061261a906137e8565b915050600a8261262a9190613610565b9150612607565b60008167ffffffffffffffff81111561264d5761264c61391e565b5b6040519080825280601f01601f19166020018201604052801561267f5781602001600182028036833780820191505090505b5090505b6000851461270c57600182612698919061369b565b9150600a856126a79190613831565b60306126b391906135ba565b60f81b8183815181106126c9576126c86138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127059190613610565b9450612683565b8093505050505b919050565b50505050565b50505050565b6127318383836001612736565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127eb6000868387612718565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129b557506129b48773ffffffffffffffffffffffffffffffffffffffff16612434565b5b15612a7b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2a6000888480600101955088612457565b612a60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129bb578260005414612a7657600080fd5b612ae7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a7c575b816000819055505050612afd600086838761271e565b5050505050565b828054612b1090613785565b90600052602060002090601f016020900481019282612b325760008555612b79565b82601f10612b4b57805160ff1916838001178555612b79565b82800160010185558215612b79579182015b82811115612b78578251825591602001919060010190612b5d565b5b509050612b869190612bcd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf8846134f5565b6134d0565b905082815260208101848484011115612c1957612c18613952565b5b612c24848285613743565b509392505050565b6000612c3f612c3a84613526565b6134d0565b905082815260208101848484011115612c5b57612c5a613952565b5b612c66848285613743565b509392505050565b600081359050612c7d81613b5b565b92915050565b600081359050612c9281613b72565b92915050565b600081359050612ca781613b89565b92915050565b600081519050612cbc81613b89565b92915050565b600082601f830112612cd757612cd661394d565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d0461394d565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d81613ba0565b92915050565b600060208284031215612d4957612d4861395c565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d7661395c565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db861395c565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c61395c565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613957565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c61395c565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc61395c565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b61395c565b5b6000612f1a84828501612c98565b91505092915050565b600060208284031215612f3957612f3861395c565b5b6000612f4784828501612cad565b91505092915050565b600060208284031215612f6657612f6561395c565b5b600082013567ffffffffffffffff811115612f8457612f83613957565b5b612f9084828501612cf0565b91505092915050565b600060208284031215612faf57612fae61395c565b5b6000612fbd84828501612d1e565b91505092915050565b612fcf816136cf565b82525050565b612fde816136e1565b82525050565b6000612fef8261356c565b612ff98185613582565b9350613009818560208601613752565b61301281613961565b840191505092915050565b600061302882613577565b613032818561359e565b9350613042818560208601613752565b61304b81613961565b840191505092915050565b600061306182613577565b61306b81856135af565b935061307b818560208601613752565b80840191505092915050565b6000815461309481613785565b61309e81866135af565b945060018216600081146130b957600181146130ca576130fd565b60ff198316865281860193506130fd565b6130d385613557565b60005b838110156130f5578154818901526001820191506020810190506130d6565b838801955050505b50505092915050565b6000613113600e8361359e565b915061311e82613972565b602082019050919050565b600061313660178361359e565b91506131418261399b565b602082019050919050565b600061315960268361359e565b9150613164826139c4565b604082019050919050565b600061317c60128361359e565b915061318782613a13565b602082019050919050565b600061319f6005836135af565b91506131aa82613a3c565b600582019050919050565b60006131c260208361359e565b91506131cd82613a65565b602082019050919050565b60006131e5602f8361359e565b91506131f082613a8e565b604082019050919050565b6000613208601d8361359e565b915061321382613add565b602082019050919050565b600061322b600083613593565b915061323682613b06565b600082019050919050565b600061324e60108361359e565b915061325982613b09565b602082019050919050565b600061327160138361359e565b915061327c82613b32565b602082019050919050565b61329081613739565b82525050565b60006132a28284613087565b915081905092915050565b60006132b98285613087565b91506132c58284613056565b91506132d082613192565b91508190509392505050565b60006132e78261321e565b9150819050919050565b60006020820190506133066000830184612fc6565b92915050565b60006080820190506133216000830187612fc6565b61332e6020830186612fc6565b61333b6040830185613287565b818103606083015261334d8184612fe4565b905095945050505050565b600060208201905061336d6000830184612fd5565b92915050565b6000602082019050818103600083015261338d818461301d565b905092915050565b600060208201905081810360008301526133ae81613106565b9050919050565b600060208201905081810360008301526133ce81613129565b9050919050565b600060208201905081810360008301526133ee8161314c565b9050919050565b6000602082019050818103600083015261340e8161316f565b9050919050565b6000602082019050818103600083015261342e816131b5565b9050919050565b6000602082019050818103600083015261344e816131d8565b9050919050565b6000602082019050818103600083015261346e816131fb565b9050919050565b6000602082019050818103600083015261348e81613241565b9050919050565b600060208201905081810360008301526134ae81613264565b9050919050565b60006020820190506134ca6000830184613287565b92915050565b60006134da6134eb565b90506134e682826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156135105761350f61391e565b5b61351982613961565b9050602081019050919050565b600067ffffffffffffffff8211156135415761354061391e565b5b61354a82613961565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c582613739565b91506135d083613739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561360557613604613862565b5b828201905092915050565b600061361b82613739565b915061362683613739565b92508261363657613635613891565b5b828204905092915050565b600061364c82613739565b915061365783613739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136905761368f613862565b5b828202905092915050565b60006136a682613739565b91506136b183613739565b9250828210156136c4576136c3613862565b5b828203905092915050565b60006136da82613719565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c082613961565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613739565b915061384783613739565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726520546974616e73000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b64816136cf565b8114613b6f57600080fd5b50565b613b7b816136e1565b8114613b8657600080fd5b50565b613b92816136ed565b8114613b9d57600080fd5b50565b613ba981613739565b8114613bb457600080fd5b5056fea26469706673582212205a76f000d527ba60ae648cf4edef5b6a7a19256c010932252174449be51b70b764736f6c63430008070033

Deployed Bytecode Sourcemap

63572:3172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47337:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50450:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51953:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51516:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46586:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52818:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63836:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65989:78;;;;;;;;;;;;;:::i;:::-;;66351:206;;;;;;;;;;;;;:::i;:::-;;53059:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65643:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63979:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65547:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63912:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50258:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47706:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8452:103;;;;;;;;;;;;;:::i;:::-;;66075:84;;;;;;;;;;;;;:::i;:::-;;7801:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65889:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65786:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50619:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63718:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64251:699;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52229:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63680:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63794:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53315:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66167:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65074:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63941:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63874;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52587:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8710:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63759:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66565:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47337:305;47439:4;47491:25;47476:40;;;:11;:40;;;;:105;;;;47548:33;47533:48;;;:11;:48;;;;47476:105;:158;;;;47598:36;47622:11;47598:23;:36::i;:::-;47476:158;47456:178;;47337:305;;;:::o;50450:100::-;50504:13;50537:5;50530:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50450:100;:::o;51953:204::-;52021:7;52046:16;52054:7;52046;:16::i;:::-;52041:64;;52071:34;;;;;;;;;;;;;;52041:64;52125:15;:24;52141:7;52125:24;;;;;;;;;;;;;;;;;;;;;52118:31;;51953:204;;;:::o;51516:371::-;51589:13;51605:24;51621:7;51605:15;:24::i;:::-;51589:40;;51650:5;51644:11;;:2;:11;;;51640:48;;;51664:24;;;;;;;;;;;;;;51640:48;51721:5;51705:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;51731:37;51748:5;51755:12;:10;:12::i;:::-;51731:16;:37::i;:::-;51730:38;51705:63;51701:138;;;51792:35;;;;;;;;;;;;;;51701:138;51851:28;51860:2;51864:7;51873:5;51851:8;:28::i;:::-;51578:309;51516:371;;:::o;46586:303::-;46630:7;46855:15;:13;:15::i;:::-;46840:12;;46824:13;;:28;:46;46817:53;;46586:303;:::o;52818:170::-;52952:28;52962:4;52968:2;52972:7;52952:9;:28::i;:::-;52818:170;;;:::o;63836:31::-;;;;:::o;65989:78::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66051:8:::1;;;;;;;;;;;66050:9;66039:8;;:20;;;;;;;;;;;;;;;;;;65989:78::o:0;66351:206::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66402:12:::1;66428:10;66420:24;;66466:21;66420:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66401:101;;;66521:7;66513:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;66390:167;66351:206::o:0;53059:185::-;53197:39;53214:4;53220:2;53224:7;53197:39;;;;;;;;;;;;:16;:39::i;:::-;53059:185;;;:::o;65643:135::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65752:18:::1;65732:17;:38;;;;;;;;;;;;:::i;:::-;;65643:135:::0;:::o;63979:27::-;;;;;;;;;;;;;:::o;65547:88::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65624:3:::1;65614:7;:13;;;;;;;;;;;;:::i;:::-;;65547:88:::0;:::o;63912:22::-;;;;:::o;50258:125::-;50322:7;50349:21;50362:7;50349:12;:21::i;:::-;:26;;;50342:33;;50258:125;;;:::o;47706:206::-;47770:7;47811:1;47794:19;;:5;:19;;;47790:60;;;47822:28;;;;;;;;;;;;;;47790:60;47876:12;:19;47889:5;47876:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;47868:36;;47861:43;;47706:206;;;:::o;8452:103::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8517:30:::1;8544:1;8517:18;:30::i;:::-;8452:103::o:0;66075:84::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66140:11:::1;;;;;;;;;;;66139:12;66125:11;;:26;;;;;;;;;;;;;;;;;;66075:84::o:0;7801:87::-;7847:7;7874:6;;;;;;;;;;;7867:13;;7801:87;:::o;65889:92::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65964:9:::1;65956:5;:17;;;;65889:92:::0;:::o;65786:95::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65867:6:::1;65855:9;:18;;;;65786:95:::0;:::o;50619:104::-;50675:13;50708:7;50701:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50619:104;:::o;63718:34::-;;;;:::o;64251:699::-;64306:12;64321:5;;64306:20;;64335:11;64394:1;64382:9;;:13;;;;:::i;:::-;64374:5;64358:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;64357:109;;;;;64449:16;;64440:5;64408:17;:29;64426:10;64408:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;64357:109;64335:132;;64482:6;64478:322;;;64506:1;64499:8;;64478:322;;;64568:5;;64560;:13;;;;:::i;:::-;64547:9;:26;;64539:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64649:9;;64640:5;64624:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;64616:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;64694:11;;;;;;;;;;;64686:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;64759:8;;64750:5;:17;;64742:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;64478:322;64814:6;64810:72;;;64867:5;64834:17;:29;64852:10;64834:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;64810:72;64891:28;64901:10;64913:5;64891:9;:28::i;:::-;64937:5;64927:6;;:15;;;;;;;:::i;:::-;;;;;;;;64297:653;;64251:699;:::o;52229:287::-;52340:12;:10;:12::i;:::-;52328:24;;:8;:24;;;52324:54;;;52361:17;;;;;;;;;;;;;;52324:54;52436:8;52391:18;:32;52410:12;:10;:12::i;:::-;52391:32;;;;;;;;;;;;;;;:42;52424:8;52391:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;52489:8;52460:48;;52475:12;:10;:12::i;:::-;52460:48;;;52499:8;52460:48;;;;;;:::i;:::-;;;;;;;;52229:287;;:::o;63680:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63794:35::-;;;;:::o;53315:369::-;53482:28;53492:4;53498:2;53502:7;53482:9;:28::i;:::-;53525:15;:2;:13;;;:15::i;:::-;:76;;;;;53545:56;53576:4;53582:2;53586:7;53595:5;53545:30;:56::i;:::-;53544:57;53525:76;53521:156;;;53625:40;;;;;;;;;;;;;;53521:156;53315:369;;;;:::o;66167:75::-;66208:4;66228:6;;66221:13;;66167:75;:::o;65074:465::-;65192:13;65245:16;65253:7;65245;:16::i;:::-;65223:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;65365:5;65353:17;;:8;;;;;;;;;;;:17;;;65349:97;;;65415:17;65398:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;65384:50;;;;65349:97;65493:7;65502:18;:7;:16;:18::i;:::-;65476:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65462:69;;65074:465;;;;:::o;63941:31::-;;;;;;;;;;;;;:::o;63874:::-;;;;:::o;52587:164::-;52684:4;52708:18;:25;52727:5;52708:25;;;;;;;;;;;;;;;:35;52734:8;52708:35;;;;;;;;;;;;;;;;;;;;;;;;;52701:42;;52587:164;;;;:::o;8710:201::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8819:1:::1;8799:22;;:8;:22;;;;8791:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8875:28;8894:8;8875:18;:28::i;:::-;8710:201:::0;:::o;63759:28::-;;;;:::o;66565:176::-;8032:12;:10;:12::i;:::-;8021:23;;:7;:5;:7::i;:::-;:23;;;8013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66673:9:::1;;66661:8;66645:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;66637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66712:23;66722:2;66726:8;66712:9;:23::i;:::-;66565:176:::0;;:::o;19445:157::-;19530:4;19569:25;19554:40;;;:11;:40;;;;19547:47;;19445:157;;;:::o;53939:174::-;53996:4;54039:7;54020:15;:13;:15::i;:::-;:26;;:53;;;;;54060:13;;54050:7;:23;54020:53;:85;;;;;54078:11;:20;54090:7;54078:20;;;;;;;;;;;:27;;;;;;;;;;;;54077:28;54020:85;54013:92;;53939:174;;;:::o;7146:98::-;7199:7;7226:10;7219:17;;7146:98;:::o;61850:196::-;61992:2;61965:15;:24;61981:7;61965:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62030:7;62026:2;62010:28;;62019:5;62010:28;;;;;;;;;;;;61850:196;;;:::o;66250:93::-;66307:7;66334:1;66327:8;;66250:93;:::o;56793:2130::-;56908:35;56946:21;56959:7;56946:12;:21::i;:::-;56908:59;;57006:4;56984:26;;:13;:18;;;:26;;;56980:67;;57019:28;;;;;;;;;;;;;;56980:67;57060:22;57102:4;57086:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;57123:36;57140:4;57146:12;:10;:12::i;:::-;57123:16;:36::i;:::-;57086:73;:126;;;;57200:12;:10;:12::i;:::-;57176:36;;:20;57188:7;57176:11;:20::i;:::-;:36;;;57086:126;57060:153;;57231:17;57226:66;;57257:35;;;;;;;;;;;;;;57226:66;57321:1;57307:16;;:2;:16;;;57303:52;;;57332:23;;;;;;;;;;;;;;57303:52;57368:43;57390:4;57396:2;57400:7;57409:1;57368:21;:43::i;:::-;57476:35;57493:1;57497:7;57506:4;57476:8;:35::i;:::-;57837:1;57807:12;:18;57820:4;57807:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57881:1;57853:12;:16;57866:2;57853:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57899:31;57933:11;:20;57945:7;57933:20;;;;;;;;;;;57899:54;;57984:2;57968:8;:13;;;:18;;;;;;;;;;;;;;;;;;58034:15;58001:8;:23;;;:49;;;;;;;;;;;;;;;;;;58302:19;58334:1;58324:7;:11;58302:33;;58350:31;58384:11;:24;58396:11;58384:24;;;;;;;;;;;58350:58;;58452:1;58427:27;;:8;:13;;;;;;;;;;;;:27;;;58423:384;;;58637:13;;58622:11;:28;58618:174;;58691:4;58675:8;:13;;;:20;;;;;;;;;;;;;;;;;;58744:13;:28;;;58718:8;:23;;;:54;;;;;;;;;;;;;;;;;;58618:174;58423:384;57782:1036;;;58854:7;58850:2;58835:27;;58844:4;58835:27;;;;;;;;;;;;58873:42;58894:4;58900:2;58904:7;58913:1;58873:20;:42::i;:::-;56897:2026;;56793:2130;;;:::o;49087:1109::-;49149:21;;:::i;:::-;49183:12;49198:7;49183:22;;49266:4;49247:15;:13;:15::i;:::-;:23;;:47;;;;;49281:13;;49274:4;:20;49247:47;49243:886;;;49315:31;49349:11;:17;49361:4;49349:17;;;;;;;;;;;49315:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49390:9;:16;;;49385:729;;49461:1;49435:28;;:9;:14;;;:28;;;49431:101;;49499:9;49492:16;;;;;;49431:101;49834:261;49841:4;49834:261;;;49874:6;;;;;;;;49919:11;:17;49931:4;49919:17;;;;;;;;;;;49907:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49993:1;49967:28;;:9;:14;;;:28;;;49963:109;;50035:9;50028:16;;;;;;49963:109;49834:261;;;49385:729;49296:833;49243:886;50157:31;;;;;;;;;;;;;;49087:1109;;;;:::o;9071:191::-;9145:16;9164:6;;;;;;;;;;;9145:25;;9190:8;9181:6;;:17;;;;;;;;;;;;;;;;;;9245:8;9214:40;;9235:8;9214:40;;;;;;;;;;;;9134:128;9071:191;:::o;54121:104::-;54190:27;54200:2;54204:8;54190:27;;;;;;;;;;;;:9;:27::i;:::-;54121:104;;:::o;10375:326::-;10435:4;10692:1;10670:7;:19;;;:23;10663:30;;10375:326;;;:::o;62538:667::-;62701:4;62738:2;62722:36;;;62759:12;:10;:12::i;:::-;62773:4;62779:7;62788:5;62722:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;62718:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62973:1;62956:6;:13;:18;62952:235;;;63002:40;;;;;;;;;;;;;;62952:235;63145:6;63139:13;63130:6;63126:2;63122:15;63115:38;62718:480;62851:45;;;62841:55;;;:6;:55;;;;62834:62;;;62538:667;;;;;;:::o;4820:723::-;4876:13;5106:1;5097:5;:10;5093:53;;;5124:10;;;;;;;;;;;;;;;;;;;;;5093:53;5156:12;5171:5;5156:20;;5187:14;5212:78;5227:1;5219:4;:9;5212:78;;5245:8;;;;;:::i;:::-;;;;5276:2;5268:10;;;;;:::i;:::-;;;5212:78;;;5300:19;5332:6;5322:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300:39;;5350:154;5366:1;5357:5;:10;5350:154;;5394:1;5384:11;;;;;:::i;:::-;;;5461:2;5453:5;:10;;;;:::i;:::-;5440:2;:24;;;;:::i;:::-;5427:39;;5410:6;5417;5410:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5490:2;5481:11;;;;;:::i;:::-;;;5350:154;;;5528:6;5514:21;;;;;4820:723;;;;:::o;63213:159::-;;;;;:::o;63380:158::-;;;;;:::o;54588:163::-;54711:32;54717:2;54721:8;54731:5;54738:4;54711:5;:32::i;:::-;54588:163;;;:::o;55010:1775::-;55149:20;55172:13;;55149:36;;55214:1;55200:16;;:2;:16;;;55196:48;;;55225:19;;;;;;;;;;;;;;55196:48;55271:1;55259:8;:13;55255:44;;;55281:18;;;;;;;;;;;;;;55255:44;55312:61;55342:1;55346:2;55350:12;55364:8;55312:21;:61::i;:::-;55685:8;55650:12;:16;55663:2;55650:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55749:8;55709:12;:16;55722:2;55709:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55808:2;55775:11;:25;55787:12;55775:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;55875:15;55825:11;:25;55837:12;55825:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;55908:20;55931:12;55908:35;;55958:11;55987:8;55972:12;:23;55958:37;;56016:4;:23;;;;;56024:15;:2;:13;;;:15::i;:::-;56016:23;56012:641;;;56060:314;56116:12;56112:2;56091:38;;56108:1;56091:38;;;;;;;;;;;;56157:69;56196:1;56200:2;56204:14;;;;;;56220:5;56157:30;:69::i;:::-;56152:174;;56262:40;;;;;;;;;;;;;;56152:174;56369:3;56353:12;:19;;56060:314;;56455:12;56438:13;;:29;56434:43;;56469:8;;;56434:43;56012:641;;;56518:120;56574:14;;;;;;56570:2;56549:40;;56566:1;56549:40;;;;;;;;;;;;56633:3;56617:12;:19;;56518:120;;56012:641;56683:12;56667:13;:28;;;;55625:1082;;56717:60;56746:1;56750:2;56754:12;56768:8;56717:20;:60::i;:::-;55138:1647;55010:1775;;;;:::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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:400::-;11039:3;11060:84;11142:1;11137:3;11060:84;:::i;:::-;11053:91;;11153:93;11242:3;11153:93;:::i;:::-;11271:1;11266:3;11262:11;11255:18;;10879:400;;;:::o;11285:366::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:398::-;12560:3;12581:83;12662:1;12657:3;12581:83;:::i;:::-;12574:90;;12673:93;12762:3;12673:93;:::i;:::-;12791:1;12786:3;12782:11;12775:18;;12401:398;;;:::o;12805:366::-;12947:3;12968:67;13032:2;13027:3;12968:67;:::i;:::-;12961:74;;13044:93;13133:3;13044:93;:::i;:::-;13162:2;13157:3;13153:12;13146:19;;12805:366;;;:::o;13177:::-;13319:3;13340:67;13404:2;13399:3;13340:67;:::i;:::-;13333:74;;13416:93;13505:3;13416:93;:::i;:::-;13534:2;13529:3;13525:12;13518:19;;13177:366;;;:::o;13549:118::-;13636:24;13654:5;13636:24;:::i;:::-;13631:3;13624:37;13549:118;;:::o;13673:269::-;13802:3;13824:92;13912:3;13903:6;13824:92;:::i;:::-;13817:99;;13933:3;13926:10;;13673:269;;;;:::o;13948:695::-;14226:3;14248:92;14336:3;14327:6;14248:92;:::i;:::-;14241:99;;14357:95;14448:3;14439:6;14357:95;:::i;:::-;14350:102;;14469:148;14613:3;14469:148;:::i;:::-;14462:155;;14634:3;14627:10;;13948:695;;;;;:::o;14649:379::-;14833:3;14855:147;14998:3;14855:147;:::i;:::-;14848:154;;15019:3;15012:10;;14649:379;;;:::o;15034:222::-;15127:4;15165:2;15154:9;15150:18;15142:26;;15178:71;15246:1;15235:9;15231:17;15222:6;15178:71;:::i;:::-;15034:222;;;;:::o;15262:640::-;15457:4;15495:3;15484:9;15480:19;15472:27;;15509:71;15577:1;15566:9;15562:17;15553:6;15509:71;:::i;:::-;15590:72;15658:2;15647:9;15643:18;15634:6;15590:72;:::i;:::-;15672;15740:2;15729:9;15725:18;15716:6;15672:72;:::i;:::-;15791:9;15785:4;15781:20;15776:2;15765:9;15761:18;15754:48;15819:76;15890:4;15881:6;15819:76;:::i;:::-;15811:84;;15262:640;;;;;;;:::o;15908:210::-;15995:4;16033:2;16022:9;16018:18;16010:26;;16046:65;16108:1;16097:9;16093:17;16084:6;16046:65;:::i;:::-;15908:210;;;;:::o;16124:313::-;16237:4;16275:2;16264:9;16260:18;16252:26;;16324:9;16318:4;16314:20;16310:1;16299:9;16295:17;16288:47;16352:78;16425:4;16416:6;16352:78;:::i;:::-;16344:86;;16124:313;;;;:::o;16443:419::-;16609:4;16647:2;16636:9;16632:18;16624:26;;16696:9;16690:4;16686:20;16682:1;16671:9;16667:17;16660:47;16724:131;16850:4;16724:131;:::i;:::-;16716:139;;16443:419;;;:::o;16868:::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:::-;17459:4;17497:2;17486:9;17482:18;17474:26;;17546:9;17540:4;17536:20;17532:1;17521:9;17517:17;17510:47;17574:131;17700:4;17574:131;:::i;:::-;17566:139;;17293:419;;;:::o;17718:::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:131;18125:4;17999:131;:::i;:::-;17991:139;;17718:419;;;:::o;18143:::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:::-;18734:4;18772:2;18761:9;18757:18;18749:26;;18821:9;18815:4;18811:20;18807:1;18796:9;18792:17;18785:47;18849:131;18975:4;18849:131;:::i;:::-;18841:139;;18568:419;;;:::o;18993:::-;19159:4;19197:2;19186:9;19182:18;19174:26;;19246:9;19240:4;19236:20;19232:1;19221:9;19217:17;19210:47;19274:131;19400:4;19274:131;:::i;:::-;19266:139;;18993:419;;;:::o;19418:::-;19584:4;19622:2;19611:9;19607:18;19599:26;;19671:9;19665:4;19661:20;19657:1;19646:9;19642:17;19635:47;19699:131;19825:4;19699:131;:::i;:::-;19691:139;;19418:419;;;:::o;19843:::-;20009:4;20047:2;20036:9;20032:18;20024:26;;20096:9;20090:4;20086:20;20082:1;20071:9;20067:17;20060:47;20124:131;20250:4;20124:131;:::i;:::-;20116:139;;19843:419;;;:::o;20268:222::-;20361:4;20399:2;20388:9;20384:18;20376:26;;20412:71;20480:1;20469:9;20465:17;20456:6;20412:71;:::i;:::-;20268:222;;;;:::o;20496:129::-;20530:6;20557:20;;:::i;:::-;20547:30;;20586:33;20614:4;20606:6;20586:33;:::i;:::-;20496:129;;;:::o;20631:75::-;20664:6;20697:2;20691:9;20681:19;;20631:75;:::o;20712:307::-;20773:4;20863:18;20855:6;20852:30;20849:56;;;20885:18;;:::i;:::-;20849:56;20923:29;20945:6;20923:29;:::i;:::-;20915:37;;21007:4;21001;20997:15;20989:23;;20712:307;;;:::o;21025:308::-;21087:4;21177:18;21169:6;21166:30;21163:56;;;21199:18;;:::i;:::-;21163:56;21237:29;21259:6;21237:29;:::i;:::-;21229:37;;21321:4;21315;21311:15;21303:23;;21025:308;;;:::o;21339:141::-;21388:4;21411:3;21403:11;;21434:3;21431:1;21424:14;21468:4;21465:1;21455:18;21447:26;;21339:141;;;:::o;21486:98::-;21537:6;21571:5;21565:12;21555:22;;21486:98;;;:::o;21590:99::-;21642:6;21676:5;21670:12;21660:22;;21590:99;;;:::o;21695:168::-;21778:11;21812:6;21807:3;21800:19;21852:4;21847:3;21843:14;21828:29;;21695:168;;;;:::o;21869:147::-;21970:11;22007:3;21992:18;;21869:147;;;;:::o;22022:169::-;22106:11;22140:6;22135:3;22128:19;22180:4;22175:3;22171:14;22156:29;;22022:169;;;;:::o;22197:148::-;22299:11;22336:3;22321:18;;22197:148;;;;:::o;22351:305::-;22391:3;22410:20;22428:1;22410:20;:::i;:::-;22405:25;;22444:20;22462:1;22444:20;:::i;:::-;22439:25;;22598:1;22530:66;22526:74;22523:1;22520:81;22517:107;;;22604:18;;:::i;:::-;22517:107;22648:1;22645;22641:9;22634:16;;22351:305;;;;:::o;22662:185::-;22702:1;22719:20;22737:1;22719:20;:::i;:::-;22714:25;;22753:20;22771:1;22753:20;:::i;:::-;22748:25;;22792:1;22782:35;;22797:18;;:::i;:::-;22782:35;22839:1;22836;22832:9;22827:14;;22662:185;;;;:::o;22853:348::-;22893:7;22916:20;22934:1;22916:20;:::i;:::-;22911:25;;22950:20;22968:1;22950:20;:::i;:::-;22945:25;;23138:1;23070:66;23066:74;23063:1;23060:81;23055:1;23048:9;23041:17;23037:105;23034:131;;;23145:18;;:::i;:::-;23034:131;23193:1;23190;23186:9;23175:20;;22853:348;;;;:::o;23207:191::-;23247:4;23267:20;23285:1;23267:20;:::i;:::-;23262:25;;23301:20;23319:1;23301:20;:::i;:::-;23296:25;;23340:1;23337;23334:8;23331:34;;;23345:18;;:::i;:::-;23331:34;23390:1;23387;23383:9;23375:17;;23207:191;;;;:::o;23404:96::-;23441:7;23470:24;23488:5;23470:24;:::i;:::-;23459:35;;23404:96;;;:::o;23506:90::-;23540:7;23583:5;23576:13;23569:21;23558:32;;23506:90;;;:::o;23602:149::-;23638:7;23678:66;23671:5;23667:78;23656:89;;23602:149;;;:::o;23757:126::-;23794:7;23834:42;23827:5;23823:54;23812:65;;23757:126;;;:::o;23889:77::-;23926:7;23955:5;23944:16;;23889:77;;;:::o;23972:154::-;24056:6;24051:3;24046;24033:30;24118:1;24109:6;24104:3;24100:16;24093:27;23972:154;;;:::o;24132:307::-;24200:1;24210:113;24224:6;24221:1;24218:13;24210:113;;;24309:1;24304:3;24300:11;24294:18;24290:1;24285:3;24281:11;24274:39;24246:2;24243:1;24239:10;24234:15;;24210:113;;;24341:6;24338:1;24335:13;24332:101;;;24421:1;24412:6;24407:3;24403:16;24396:27;24332:101;24181:258;24132:307;;;:::o;24445:320::-;24489:6;24526:1;24520:4;24516:12;24506:22;;24573:1;24567:4;24563:12;24594:18;24584:81;;24650:4;24642:6;24638:17;24628:27;;24584:81;24712:2;24704:6;24701:14;24681:18;24678:38;24675:84;;;24731:18;;:::i;:::-;24675:84;24496:269;24445:320;;;:::o;24771:281::-;24854:27;24876:4;24854:27;:::i;:::-;24846:6;24842:40;24984:6;24972:10;24969:22;24948:18;24936:10;24933:34;24930:62;24927:88;;;24995:18;;:::i;:::-;24927:88;25035:10;25031:2;25024:22;24814:238;24771:281;;:::o;25058:233::-;25097:3;25120:24;25138:5;25120:24;:::i;:::-;25111:33;;25166:66;25159:5;25156:77;25153:103;;;25236:18;;:::i;:::-;25153:103;25283:1;25276:5;25272:13;25265:20;;25058:233;;;:::o;25297:176::-;25329:1;25346:20;25364:1;25346:20;:::i;:::-;25341:25;;25380:20;25398:1;25380:20;:::i;:::-;25375:25;;25419:1;25409:35;;25424:18;;:::i;:::-;25409:35;25465:1;25462;25458:9;25453:14;;25297:176;;;;:::o;25479:180::-;25527:77;25524:1;25517:88;25624:4;25621:1;25614:15;25648:4;25645:1;25638:15;25665:180;25713:77;25710:1;25703:88;25810:4;25807:1;25800:15;25834:4;25831:1;25824:15;25851:180;25899:77;25896:1;25889:88;25996:4;25993:1;25986:15;26020:4;26017:1;26010:15;26037:180;26085:77;26082:1;26075:88;26182:4;26179:1;26172:15;26206:4;26203:1;26196:15;26223:180;26271:77;26268:1;26261:88;26368:4;26365:1;26358:15;26392:4;26389:1;26382:15;26409:117;26518:1;26515;26508:12;26532:117;26641:1;26638;26631:12;26655:117;26764:1;26761;26754:12;26778:117;26887:1;26884;26877:12;26901:102;26942:6;26993:2;26989:7;26984:2;26977:5;26973:14;26969:28;26959:38;;26901:102;;;:::o;27009:164::-;27149:16;27145:1;27137:6;27133:14;27126:40;27009:164;:::o;27179:173::-;27319:25;27315:1;27307:6;27303:14;27296:49;27179:173;:::o;27358:225::-;27498:34;27494:1;27486:6;27482:14;27475:58;27567:8;27562:2;27554:6;27550:15;27543:33;27358:225;:::o;27589:168::-;27729:20;27725:1;27717:6;27713:14;27706:44;27589:168;:::o;27763:155::-;27903:7;27899:1;27891:6;27887:14;27880:31;27763:155;:::o;27924:182::-;28064:34;28060:1;28052:6;28048:14;28041:58;27924:182;:::o;28112:234::-;28252:34;28248:1;28240:6;28236:14;28229:58;28321:17;28316:2;28308:6;28304:15;28297:42;28112:234;:::o;28352:179::-;28492:31;28488:1;28480:6;28476:14;28469:55;28352:179;:::o;28537:114::-;;:::o;28657:166::-;28797:18;28793:1;28785:6;28781:14;28774:42;28657:166;:::o;28829:169::-;28969:21;28965:1;28957:6;28953:14;28946:45;28829:169;:::o;29004:122::-;29077:24;29095:5;29077:24;:::i;:::-;29070:5;29067:35;29057:63;;29116:1;29113;29106:12;29057:63;29004:122;:::o;29132:116::-;29202:21;29217:5;29202:21;:::i;:::-;29195:5;29192:32;29182:60;;29238:1;29235;29228:12;29182:60;29132:116;:::o;29254:120::-;29326:23;29343:5;29326:23;:::i;:::-;29319:5;29316:34;29306:62;;29364:1;29361;29354:12;29306:62;29254:120;:::o;29380:122::-;29453:24;29471:5;29453:24;:::i;:::-;29446:5;29443:35;29433:63;;29492:1;29489;29482:12;29433:63;29380:122;:::o

Swarm Source

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