ETH Price: $2,631.64 (-1.04%)
Gas: 1 Gwei

Token

GoblinLGBT (GL)
 

Overview

Max Total Supply

911 GL

Holders

459

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GL
0xdd86eaada59714246baab9c8a940b1028a061d05
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:
GoblinLGBT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity 0.8.10;

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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

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

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

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

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

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

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

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


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

/**
 * @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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    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 {}
}


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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


contract GoblinLGBT is ERC721A, ERC2981, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    string public baseURI = "https://nftservice.s3.amazonaws.com/goblinlgbt/";

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 20;

    uint256 public MAX_TOKENS = 8888;

    bool public saleIsActive = false;

    uint public maxFreePerUser = 1;

    mapping (address => uint256) addressToUserFreeMinted;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    constructor(        
    ) ERC721A("GoblinLGBT", "GL") {
        _setDefaultRoyalty(msg.sender, 200);
        _safeMint(msg.sender, 100);
    }

    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint256 userMinted;
        uint256 userFreeMinted;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return HelperState({
            tokenPrice: tokenPrice,
            maxTokensPerTx: maxTokensPerTx,
            MAX_TOKENS: MAX_TOKENS,
            saleIsActive: saleIsActive,
            totalSupply: uint256(totalSupply()),
            userMinted: uint256(_numberMinted(minter)),
            userFreeMinted : addressToUserFreeMinted[minter]
        });
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Request would exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveTokens(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Request would exceed max supply of tokens");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mintToken(uint numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Sale must be active to mint token");
        require(numberOfTokens <= maxTokensPerTx, "The number of tokens per transaction exceeds the allowed number");
        require(numberOfTokens > 0, "You must mint at least one token");
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of tokens");

        uint256 minted = _numberMinted(msg.sender);
        bool hasFreeToken = false;
        if ( maxFreePerUser <= addressToUserFreeMinted[msg.sender] || maxFreePerUser <= minted) {
            require(msg.value >= numberOfTokens * tokenPrice, "Ether value sent is not correct");
        } else {
            require(msg.value >= (numberOfTokens - 1) * tokenPrice, "Ether value sent is not correct");
            hasFreeToken= true;
        }
        
        _safeMint(msg.sender, numberOfTokens);

        if(hasFreeToken){
            addressToUserFreeMinted[msg.sender] = addressToUserFreeMinted[msg.sender] + 1;
        }
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner{
        tokenPrice = newTokenPrice;
    }

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

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    } 
    
    function numberFreeMinted(address owner) public view returns (uint256) {
        return addressToUserFreeMinted[owner];
    } 

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
      MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint _maxTokensPerTx) external onlyOwner{
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxFreePerUser(uint _maxFreePerUser) external onlyOwner{
        maxFreePerUser = _maxFreePerUser;
    }

    /**
    @notice Sets the contract-wide royalty info.
     */
    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"userFreeMinted","type":"uint256"}],"internalType":"struct GoblinLGBT.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerUser","type":"uint256"}],"name":"setMaxFreePerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602f8152602001620058b8602f9139600c908051906020019062000035929190620009d9565b506611c37937e08000600d556014600e556122b8600f556000601060006101000a81548160ff02191690831515021790555060016011556000601360006101000a81548160ff0219169083600181111562000095576200009462000a89565b5b0217905550348015620000a757600080fd5b506040518060400160405280600a81526020017f476f626c696e4c474254000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f474c00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012c929190620009d9565b50806003908051906020019062000145929190620009d9565b5062000156620001b260201b60201c565b60008190555050506200017e62000172620001b760201b60201c565b620001bf60201b60201c565b6001600b81905550620001993360c86200028560201b60201c565b620001ac3360646200042960201b60201c565b62000e24565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002956200044f60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ed9062000b3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003609062000bb1565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6200044b8282604051806020016040528060008152506200045960201b60201c565b5050565b6000612710905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620004c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000503576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200051860008583866200084860201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620006e68673ffffffffffffffffffffffffffffffffffffffff166200084e60201b620020d51760201c565b15620007b8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200076460008784806001019550876200087160201b60201c565b6200079b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620006ed578260005414620007b257600080fd5b62000824565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620007b9575b816000819055505050620008426000858386620009d360201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200089f620001b760201b60201c565b8786866040518563ffffffff1660e01b8152600401620008c3949392919062000cd7565b6020604051808303816000875af19250505080156200090257506040513d601f19601f82011682018060405250810190620008ff919062000d8d565b60015b62000980573d806000811462000935576040519150601f19603f3d011682016040523d82523d6000602084013e6200093a565b606091505b5060008151141562000978576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009e79062000dee565b90600052602060002090601f01602090048101928262000a0b576000855562000a57565b82601f1062000a2657805160ff191683800117855562000a57565b8280016001018555821562000a57579182015b8281111562000a5657825182559160200191906001019062000a39565b5b50905062000a66919062000a6a565b5090565b5b8082111562000a8557600081600090555060010162000a6b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000b27602a8362000ab8565b915062000b348262000ac9565b604082019050919050565b6000602082019050818103600083015262000b5a8162000b18565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000b9960198362000ab8565b915062000ba68262000b61565b602082019050919050565b6000602082019050818103600083015262000bcc8162000b8a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c008262000bd3565b9050919050565b62000c128162000bf3565b82525050565b6000819050919050565b62000c2d8162000c18565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c6f57808201518184015260208101905062000c52565b8381111562000c7f576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ca38262000c33565b62000caf818562000c3e565b935062000cc181856020860162000c4f565b62000ccc8162000c85565b840191505092915050565b600060808201905062000cee600083018762000c07565b62000cfd602083018662000c07565b62000d0c604083018562000c22565b818103606083015262000d20818462000c96565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d678162000d30565b811462000d7357600080fd5b50565b60008151905062000d878162000d5c565b92915050565b60006020828403121562000da65762000da562000d2b565b5b600062000db68482850162000d76565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e0757607f821691505b6020821081141562000e1e5762000e1d62000dbf565b5b50919050565b614a848062000e346000396000f3fe6080604052600436106102305760003560e01c80636f8b44b01161012e578063b88d4fde116100ab578063e5a519521161006f578063e5a5195214610815578063e985e9c514610852578063eb8d24441461088f578063f2fde38b146108ba578063f47c84c5146108e357610230565b8063b88d4fde1461072d578063b9bed05e14610756578063c634d0321461077f578063c87b56dd1461079b578063dc33e681146107d857610230565b80637ff9b596116100f25780637ff9b5961461065a5780638da5cb5b14610685578063900c71f5146106b057806395d89b41146106d9578063a22cb4651461070457610230565b80636f8b44b01461058b57806370a08231146105b4578063715018a6146105f157806378cf19e914610608578063790750ce1461063157610230565b80632a55205a116101bc57806355f804b31161018057806355f804b3146104a65780635e307a48146104cf5780636352211e146104fa5780636a61e5fc146105375780636c0360eb1461056057610230565b80632a55205a146103d457806334918dfd146104125780633ccfd60b1461042957806342842e0e146104405780634df8bb451461046957610230565b8063095ea7b311610203578063095ea7b3146103035780630f2663511461032c57806318160ddd14610357578063205c28781461038257806323b872dd146103ab57610230565b806301ffc9a71461023557806302fa7c471461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613669565b61090e565b60405161026991906136b1565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061376e565b610920565b005b3480156102a757600080fd5b506102b06109aa565b6040516102bd9190613847565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061389f565b610a3c565b6040516102fa91906138db565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906138f6565b610ab8565b005b34801561033857600080fd5b50610341610bbd565b60405161034e9190613945565b60405180910390f35b34801561036357600080fd5b5061036c610bc3565b6040516103799190613945565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906138f6565b610bda565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613960565b610ce4565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906139b3565b610cf4565b6040516104099291906139f3565b60405180910390f35b34801561041e57600080fd5b50610427610edf565b005b34801561043557600080fd5b5061043e610f87565b005b34801561044c57600080fd5b5061046760048036038101906104629190613960565b611052565b005b34801561047557600080fd5b50610490600480360381019061048b9190613a1c565b611072565b60405161049d9190613af5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613c45565b611119565b005b3480156104db57600080fd5b506104e46111af565b6040516104f19190613945565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061389f565b6111b5565b60405161052e91906138db565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061389f565b6111cb565b005b34801561056c57600080fd5b50610575611251565b6040516105829190613847565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061389f565b6112df565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613a1c565b611365565b6040516105e89190613945565b60405180910390f35b3480156105fd57600080fd5b50610606611435565b005b34801561061457600080fd5b5061062f600480360381019061062a91906138f6565b6114bd565b005b34801561063d57600080fd5b506106586004803603810190610653919061389f565b6115a5565b005b34801561066657600080fd5b5061066f61162b565b60405161067c9190613945565b60405180910390f35b34801561069157600080fd5b5061069a611631565b6040516106a791906138db565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061389f565b61165b565b005b3480156106e557600080fd5b506106ee61173f565b6040516106fb9190613847565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613cba565b6117d1565b005b34801561073957600080fd5b50610754600480360381019061074f9190613d9b565b611949565b005b34801561076257600080fd5b5061077d6004803603810190610778919061389f565b6119c1565b005b6107996004803603810190610794919061389f565b611a47565b005b3480156107a757600080fd5b506107c260048036038101906107bd919061389f565b611d93565b6040516107cf9190613847565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613a1c565b611ed5565b60405161080c9190613945565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613a1c565b611ee7565b6040516108499190613945565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613e1e565b611f30565b60405161088691906136b1565b60405180910390f35b34801561089b57600080fd5b506108a4611fc4565b6040516108b191906136b1565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613a1c565b611fd7565b005b3480156108ef57600080fd5b506108f86120cf565b6040516109059190613945565b60405180910390f35b6000610919826120f8565b9050919050565b610928612172565b73ffffffffffffffffffffffffffffffffffffffff16610946611631565b73ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390613eaa565b60405180910390fd5b6109a6828261217a565b5050565b6060600280546109b990613ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590613ef9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a4782612310565b610a7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4a612172565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71612172565b611f30565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bb883838361235e565b505050565b60115481565b6000610bcd612410565b6001546000540303905090565b610be2612172565b73ffffffffffffffffffffffffffffffffffffffff16610c00611631565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613eaa565b60405180910390fd5b47811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090613f9d565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdf573d6000803e3d6000fd5b505050565b610cef838383612415565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e8a5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e946128cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec09190613fec565b610eca9190614075565b90508160000151819350935050509250929050565b610ee7612172565b73ffffffffffffffffffffffffffffffffffffffff16610f05611631565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613eaa565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610f8f612172565b73ffffffffffffffffffffffffffffffffffffffff16610fad611631565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613eaa565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104e573d6000803e3d6000fd5b5050565b61106d83838360405180602001604052806000815250611949565b505050565b61107a6134d8565b6040518060e00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff16151581526020016110bc610bc3565b81526020016110ca846128d5565b8152602001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152509050919050565b611121612172565b73ffffffffffffffffffffffffffffffffffffffff1661113f611631565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613eaa565b60405180910390fd5b80600c90805190602001906111ab929190613517565b5050565b600e5481565b60006111c08261293f565b600001519050919050565b6111d3612172565b73ffffffffffffffffffffffffffffffffffffffff166111f1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613eaa565b60405180910390fd5b80600d8190555050565b600c805461125e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461128a90613ef9565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e7612172565b73ffffffffffffffffffffffffffffffffffffffff16611305611631565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613eaa565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143d612172565b73ffffffffffffffffffffffffffffffffffffffff1661145b611631565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613eaa565b60405180910390fd5b6114bb6000612bca565b565b6114c5612172565b73ffffffffffffffffffffffffffffffffffffffff166114e3611631565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613eaa565b60405180910390fd5b600f5461155682611548610bc3565b612c9090919063ffffffff16565b1115611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614118565b60405180910390fd5b6115a18282612cee565b5050565b6115ad612172565b73ffffffffffffffffffffffffffffffffffffffff166115cb611631565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613eaa565b60405180910390fd5b8060118190555050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611663612172565b73ffffffffffffffffffffffffffffffffffffffff16611681611631565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613eaa565b60405180910390fd5b6002811415611710576001601360006101000a81548160ff0219169083600181111561170657611705614138565b5b021790555061173c565b6000601360006101000a81548160ff0219169083600181111561173657611735614138565b5b02179055505b50565b60606003805461174e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613ef9565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b5050505050905090565b6117d9612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061184b612172565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f8612172565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193d91906136b1565b60405180910390a35050565b611954848484612415565b6119738373ffffffffffffffffffffffffffffffffffffffff166120d5565b156119bb5761198484848484612d0c565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9612172565b73ffffffffffffffffffffffffffffffffffffffff166119e7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eaa565b60405180910390fd5b80600e8190555050565b6002600b541415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906141b3565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614245565b60405180910390fd5b600e54811115611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906142d7565b60405180910390fd5b60008111611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614343565b60405180910390fd5b600f54611b8982611b7b610bc3565b612c9090919063ffffffff16565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143d5565b60405180910390fd5b6000611bd5336128d5565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154111580611c2b57508160115411155b15611c8557600d5483611c3e9190613fec565b341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614441565b60405180910390fd5b611ce6565b600d54600184611c959190614461565b611c9f9190613fec565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614441565b60405180910390fd5b600190505b611cf03384612cee565b8015611d86576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d429190614495565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060611d9e82612310565b611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614537565b60405180910390fd5b600180811115611df057611def614138565b5b601360009054906101000a900460ff166001811115611e1257611e11614138565b5b1415611e76576000600c8054611e2790613ef9565b905011611e435760405180602001604052806000815250611e6f565b600c611e4e83612e5d565b604051602001611e5f929190614627565b6040516020818303038152906040525b9050611ed0565b6000600c8054611e8590613ef9565b905011611ea15760405180602001604052806000815250611ecd565b600c611eac83612e5d565b604051602001611ebd929190614697565b6040516020818303038152906040525b90505b919050565b6000611ee0826128d5565b9050919050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611fdf612172565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611631565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613eaa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614738565b60405180910390fd5b6120cc81612bca565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216b575061216a82612fbe565b5b9050919050565b600033905090565b6121826128cb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790614836565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161231b612410565b1115801561232a575060005482105b8015612357575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124208261293f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ac612172565b73ffffffffffffffffffffffffffffffffffffffff1614806124db57506124da856124d5612172565b611f30565b5b8061252057506124e9612172565b73ffffffffffffffffffffffffffffffffffffffff1661250884610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612559576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cd85858560016130a0565b6125d96000848761235e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285957600054821461285857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c485858560016130a6565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61294761359d565b600082905080612955612410565b11612b9357600054811015612b92576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b9057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a74578092505050612bc5565b5b600115612b8f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b8a578092505050612bc5565b612a75565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808284612c9f9190614495565b905083811015612ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdb906148a2565b60405180910390fd5b8091505092915050565b612d088282604051806020016040528060008152506130ac565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d32612172565b8786866040518563ffffffff1660e01b8152600401612d549493929190614917565b6020604051808303816000875af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d9190614978565b60015b612e0a573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906149a5565b915050600a82612ed09190614075565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef2613b1a565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e9190614461565b9150600a85612f4d91906149ee565b6030612f599190614495565b60f81b818381518110612f6f57612f6e614a1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab9190614075565b9450612f29565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061308957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061309957506130988261346e565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613119576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613154576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316160008583866130a0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133228673ffffffffffffffffffffffffffffffffffffffff166120d5565b156133e7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133976000878480600101955087612d0c565b6133cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133285782600054146133e257600080fd5b613452565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106133e8575b81600081905550505061346860008583866130a6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060e001604052806000815260200160008152602001600081526020016000151581526020016000815260200160008152602001600081525090565b82805461352390613ef9565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57805160ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578251825591602001919060010190613570565b5b50905061359991906135e0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f95760008160009055506001016135e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364681613611565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b60006020828403121561367f5761367e613607565b5b600061368d84828501613654565b91505092915050565b60008115159050919050565b6136ab81613696565b82525050565b60006020820190506136c660008301846136a2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f7826136cc565b9050919050565b613707816136ec565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61374b8161372a565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613607565b5b600061379385828601613715565b92505060206137a485828601613759565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e85780820151818401526020810190506137cd565b838111156137f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613819826137ae565b61382381856137b9565b93506138338185602086016137ca565b61383c816137fd565b840191505092915050565b60006020820190508181036000830152613861818461380e565b905092915050565b6000819050919050565b61387c81613869565b811461388757600080fd5b50565b60008135905061389981613873565b92915050565b6000602082840312156138b5576138b4613607565b5b60006138c38482850161388a565b91505092915050565b6138d5816136ec565b82525050565b60006020820190506138f060008301846138cc565b92915050565b6000806040838503121561390d5761390c613607565b5b600061391b85828601613715565b925050602061392c8582860161388a565b9150509250929050565b61393f81613869565b82525050565b600060208201905061395a6000830184613936565b92915050565b60008060006060848603121561397957613978613607565b5b600061398786828701613715565b935050602061399886828701613715565b92505060406139a98682870161388a565b9150509250925092565b600080604083850312156139ca576139c9613607565b5b60006139d88582860161388a565b92505060206139e98582860161388a565b9150509250929050565b6000604082019050613a0860008301856138cc565b613a156020830184613936565b9392505050565b600060208284031215613a3257613a31613607565b5b6000613a4084828501613715565b91505092915050565b613a5281613869565b82525050565b613a6181613696565b82525050565b60e082016000820151613a7d6000850182613a49565b506020820151613a906020850182613a49565b506040820151613aa36040850182613a49565b506060820151613ab66060850182613a58565b506080820151613ac96080850182613a49565b5060a0820151613adc60a0850182613a49565b5060c0820151613aef60c0850182613a49565b50505050565b600060e082019050613b0a6000830184613a67565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b52826137fd565b810181811067ffffffffffffffff82111715613b7157613b70613b1a565b5b80604052505050565b6000613b846135fd565b9050613b908282613b49565b919050565b600067ffffffffffffffff821115613bb057613baf613b1a565b5b613bb9826137fd565b9050602081019050919050565b82818337600083830152505050565b6000613be8613be384613b95565b613b7a565b905082815260208101848484011115613c0457613c03613b15565b5b613c0f848285613bc6565b509392505050565b600082601f830112613c2c57613c2b613b10565b5b8135613c3c848260208601613bd5565b91505092915050565b600060208284031215613c5b57613c5a613607565b5b600082013567ffffffffffffffff811115613c7957613c7861360c565b5b613c8584828501613c17565b91505092915050565b613c9781613696565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613607565b5b6000613cdf85828601613715565b9250506020613cf085828601613ca5565b9150509250929050565b600067ffffffffffffffff821115613d1557613d14613b1a565b5b613d1e826137fd565b9050602081019050919050565b6000613d3e613d3984613cfa565b613b7a565b905082815260208101848484011115613d5a57613d59613b15565b5b613d65848285613bc6565b509392505050565b600082601f830112613d8257613d81613b10565b5b8135613d92848260208601613d2b565b91505092915050565b60008060008060808587031215613db557613db4613607565b5b6000613dc387828801613715565b9450506020613dd487828801613715565b9350506040613de58782880161388a565b925050606085013567ffffffffffffffff811115613e0657613e0561360c565b5b613e1287828801613d6d565b91505092959194509250565b60008060408385031215613e3557613e34613607565b5b6000613e4385828601613715565b9250506020613e5485828601613715565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e946020836137b9565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1157607f821691505b60208210811415613f2557613f24613eca565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613f87602d836137b9565b9150613f9282613f2b565b604082019050919050565b60006020820190508181036000830152613fb681613f7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ff782613869565b915061400283613869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403b5761403a613fbd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408082613869565b915061408b83613869565b92508261409b5761409a614046565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b60006141026029836137b9565b915061410d826140a6565b604082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061419d601f836137b9565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f6021836137b9565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b60006142c1603f836137b9565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061432d6020836137b9565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143bf602a836137b9565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061442b601f836137b9565b9150614436826143f5565b602082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b600061446c82613869565b915061447783613869565b92508282101561448a57614489613fbd565b5b828203905092915050565b60006144a082613869565b91506144ab83613869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e0576144df613fbd565b5b828201905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006145216015836137b9565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461458481613ef9565b61458e8186614557565b945060018216600081146145a957600181146145ba576145ed565b60ff198316865281860193506145ed565b6145c385614562565b60005b838110156145e5578154818901526001820191506020810190506145c6565b838801955050505b50505092915050565b6000614601826137ae565b61460b8185614557565b935061461b8185602086016137ca565b80840191505092915050565b60006146338285614577565b915061463f82846145f6565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614681600583614557565b915061468c8261464b565b600582019050919050565b60006146a38285614577565b91506146af82846145f6565b91506146ba82614674565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147226026836137b9565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b4602a836137b9565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006148206019836137b9565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061488c601b836137b9565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148e9826148c2565b6148f381856148cd565b93506149038185602086016137ca565b61490c816137fd565b840191505092915050565b600060808201905061492c60008301876138cc565b61493960208301866138cc565b6149466040830185613936565b818103606083015261495881846148de565b905095945050505050565b6000815190506149728161363d565b92915050565b60006020828403121561498e5761498d613607565b5b600061499c84828501614963565b91505092915050565b60006149b082613869565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2613fbd565b5b600182019050919050565b60006149f982613869565b9150614a0483613869565b925082614a1457614a13614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220076fe9681894435ac8cd572831a392af343cb6d4aa140a038fe2951f9343963064736f6c634300080a003368747470733a2f2f6e6674736572766963652e73332e616d617a6f6e6177732e636f6d2f676f626c696e6c6762742f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636f8b44b01161012e578063b88d4fde116100ab578063e5a519521161006f578063e5a5195214610815578063e985e9c514610852578063eb8d24441461088f578063f2fde38b146108ba578063f47c84c5146108e357610230565b8063b88d4fde1461072d578063b9bed05e14610756578063c634d0321461077f578063c87b56dd1461079b578063dc33e681146107d857610230565b80637ff9b596116100f25780637ff9b5961461065a5780638da5cb5b14610685578063900c71f5146106b057806395d89b41146106d9578063a22cb4651461070457610230565b80636f8b44b01461058b57806370a08231146105b4578063715018a6146105f157806378cf19e914610608578063790750ce1461063157610230565b80632a55205a116101bc57806355f804b31161018057806355f804b3146104a65780635e307a48146104cf5780636352211e146104fa5780636a61e5fc146105375780636c0360eb1461056057610230565b80632a55205a146103d457806334918dfd146104125780633ccfd60b1461042957806342842e0e146104405780634df8bb451461046957610230565b8063095ea7b311610203578063095ea7b3146103035780630f2663511461032c57806318160ddd14610357578063205c28781461038257806323b872dd146103ab57610230565b806301ffc9a71461023557806302fa7c471461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613669565b61090e565b60405161026991906136b1565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061376e565b610920565b005b3480156102a757600080fd5b506102b06109aa565b6040516102bd9190613847565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061389f565b610a3c565b6040516102fa91906138db565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906138f6565b610ab8565b005b34801561033857600080fd5b50610341610bbd565b60405161034e9190613945565b60405180910390f35b34801561036357600080fd5b5061036c610bc3565b6040516103799190613945565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906138f6565b610bda565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613960565b610ce4565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906139b3565b610cf4565b6040516104099291906139f3565b60405180910390f35b34801561041e57600080fd5b50610427610edf565b005b34801561043557600080fd5b5061043e610f87565b005b34801561044c57600080fd5b5061046760048036038101906104629190613960565b611052565b005b34801561047557600080fd5b50610490600480360381019061048b9190613a1c565b611072565b60405161049d9190613af5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613c45565b611119565b005b3480156104db57600080fd5b506104e46111af565b6040516104f19190613945565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061389f565b6111b5565b60405161052e91906138db565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061389f565b6111cb565b005b34801561056c57600080fd5b50610575611251565b6040516105829190613847565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061389f565b6112df565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613a1c565b611365565b6040516105e89190613945565b60405180910390f35b3480156105fd57600080fd5b50610606611435565b005b34801561061457600080fd5b5061062f600480360381019061062a91906138f6565b6114bd565b005b34801561063d57600080fd5b506106586004803603810190610653919061389f565b6115a5565b005b34801561066657600080fd5b5061066f61162b565b60405161067c9190613945565b60405180910390f35b34801561069157600080fd5b5061069a611631565b6040516106a791906138db565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061389f565b61165b565b005b3480156106e557600080fd5b506106ee61173f565b6040516106fb9190613847565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613cba565b6117d1565b005b34801561073957600080fd5b50610754600480360381019061074f9190613d9b565b611949565b005b34801561076257600080fd5b5061077d6004803603810190610778919061389f565b6119c1565b005b6107996004803603810190610794919061389f565b611a47565b005b3480156107a757600080fd5b506107c260048036038101906107bd919061389f565b611d93565b6040516107cf9190613847565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613a1c565b611ed5565b60405161080c9190613945565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613a1c565b611ee7565b6040516108499190613945565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613e1e565b611f30565b60405161088691906136b1565b60405180910390f35b34801561089b57600080fd5b506108a4611fc4565b6040516108b191906136b1565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613a1c565b611fd7565b005b3480156108ef57600080fd5b506108f86120cf565b6040516109059190613945565b60405180910390f35b6000610919826120f8565b9050919050565b610928612172565b73ffffffffffffffffffffffffffffffffffffffff16610946611631565b73ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390613eaa565b60405180910390fd5b6109a6828261217a565b5050565b6060600280546109b990613ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590613ef9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a4782612310565b610a7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4a612172565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71612172565b611f30565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bb883838361235e565b505050565b60115481565b6000610bcd612410565b6001546000540303905090565b610be2612172565b73ffffffffffffffffffffffffffffffffffffffff16610c00611631565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613eaa565b60405180910390fd5b47811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090613f9d565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdf573d6000803e3d6000fd5b505050565b610cef838383612415565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e8a5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e946128cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec09190613fec565b610eca9190614075565b90508160000151819350935050509250929050565b610ee7612172565b73ffffffffffffffffffffffffffffffffffffffff16610f05611631565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613eaa565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610f8f612172565b73ffffffffffffffffffffffffffffffffffffffff16610fad611631565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613eaa565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104e573d6000803e3d6000fd5b5050565b61106d83838360405180602001604052806000815250611949565b505050565b61107a6134d8565b6040518060e00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff16151581526020016110bc610bc3565b81526020016110ca846128d5565b8152602001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152509050919050565b611121612172565b73ffffffffffffffffffffffffffffffffffffffff1661113f611631565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613eaa565b60405180910390fd5b80600c90805190602001906111ab929190613517565b5050565b600e5481565b60006111c08261293f565b600001519050919050565b6111d3612172565b73ffffffffffffffffffffffffffffffffffffffff166111f1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613eaa565b60405180910390fd5b80600d8190555050565b600c805461125e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461128a90613ef9565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e7612172565b73ffffffffffffffffffffffffffffffffffffffff16611305611631565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613eaa565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143d612172565b73ffffffffffffffffffffffffffffffffffffffff1661145b611631565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613eaa565b60405180910390fd5b6114bb6000612bca565b565b6114c5612172565b73ffffffffffffffffffffffffffffffffffffffff166114e3611631565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613eaa565b60405180910390fd5b600f5461155682611548610bc3565b612c9090919063ffffffff16565b1115611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614118565b60405180910390fd5b6115a18282612cee565b5050565b6115ad612172565b73ffffffffffffffffffffffffffffffffffffffff166115cb611631565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613eaa565b60405180910390fd5b8060118190555050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611663612172565b73ffffffffffffffffffffffffffffffffffffffff16611681611631565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613eaa565b60405180910390fd5b6002811415611710576001601360006101000a81548160ff0219169083600181111561170657611705614138565b5b021790555061173c565b6000601360006101000a81548160ff0219169083600181111561173657611735614138565b5b02179055505b50565b60606003805461174e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613ef9565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b5050505050905090565b6117d9612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061184b612172565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f8612172565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193d91906136b1565b60405180910390a35050565b611954848484612415565b6119738373ffffffffffffffffffffffffffffffffffffffff166120d5565b156119bb5761198484848484612d0c565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9612172565b73ffffffffffffffffffffffffffffffffffffffff166119e7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eaa565b60405180910390fd5b80600e8190555050565b6002600b541415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906141b3565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614245565b60405180910390fd5b600e54811115611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906142d7565b60405180910390fd5b60008111611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614343565b60405180910390fd5b600f54611b8982611b7b610bc3565b612c9090919063ffffffff16565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143d5565b60405180910390fd5b6000611bd5336128d5565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154111580611c2b57508160115411155b15611c8557600d5483611c3e9190613fec565b341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614441565b60405180910390fd5b611ce6565b600d54600184611c959190614461565b611c9f9190613fec565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614441565b60405180910390fd5b600190505b611cf03384612cee565b8015611d86576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d429190614495565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060611d9e82612310565b611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614537565b60405180910390fd5b600180811115611df057611def614138565b5b601360009054906101000a900460ff166001811115611e1257611e11614138565b5b1415611e76576000600c8054611e2790613ef9565b905011611e435760405180602001604052806000815250611e6f565b600c611e4e83612e5d565b604051602001611e5f929190614627565b6040516020818303038152906040525b9050611ed0565b6000600c8054611e8590613ef9565b905011611ea15760405180602001604052806000815250611ecd565b600c611eac83612e5d565b604051602001611ebd929190614697565b6040516020818303038152906040525b90505b919050565b6000611ee0826128d5565b9050919050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611fdf612172565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611631565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613eaa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614738565b60405180910390fd5b6120cc81612bca565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216b575061216a82612fbe565b5b9050919050565b600033905090565b6121826128cb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790614836565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161231b612410565b1115801561232a575060005482105b8015612357575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124208261293f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ac612172565b73ffffffffffffffffffffffffffffffffffffffff1614806124db57506124da856124d5612172565b611f30565b5b8061252057506124e9612172565b73ffffffffffffffffffffffffffffffffffffffff1661250884610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612559576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cd85858560016130a0565b6125d96000848761235e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285957600054821461285857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c485858560016130a6565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61294761359d565b600082905080612955612410565b11612b9357600054811015612b92576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b9057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a74578092505050612bc5565b5b600115612b8f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b8a578092505050612bc5565b612a75565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808284612c9f9190614495565b905083811015612ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdb906148a2565b60405180910390fd5b8091505092915050565b612d088282604051806020016040528060008152506130ac565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d32612172565b8786866040518563ffffffff1660e01b8152600401612d549493929190614917565b6020604051808303816000875af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d9190614978565b60015b612e0a573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906149a5565b915050600a82612ed09190614075565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef2613b1a565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e9190614461565b9150600a85612f4d91906149ee565b6030612f599190614495565b60f81b818381518110612f6f57612f6e614a1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab9190614075565b9450612f29565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061308957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061309957506130988261346e565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613119576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613154576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316160008583866130a0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133228673ffffffffffffffffffffffffffffffffffffffff166120d5565b156133e7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133976000878480600101955087612d0c565b6133cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133285782600054146133e257600080fd5b613452565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106133e8575b81600081905550505061346860008583866130a6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060e001604052806000815260200160008152602001600081526020016000151581526020016000815260200160008152602001600081525090565b82805461352390613ef9565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57805160ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578251825591602001919060010190613570565b5b50905061359991906135e0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f95760008160009055506001016135e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364681613611565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b60006020828403121561367f5761367e613607565b5b600061368d84828501613654565b91505092915050565b60008115159050919050565b6136ab81613696565b82525050565b60006020820190506136c660008301846136a2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f7826136cc565b9050919050565b613707816136ec565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61374b8161372a565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613607565b5b600061379385828601613715565b92505060206137a485828601613759565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e85780820151818401526020810190506137cd565b838111156137f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613819826137ae565b61382381856137b9565b93506138338185602086016137ca565b61383c816137fd565b840191505092915050565b60006020820190508181036000830152613861818461380e565b905092915050565b6000819050919050565b61387c81613869565b811461388757600080fd5b50565b60008135905061389981613873565b92915050565b6000602082840312156138b5576138b4613607565b5b60006138c38482850161388a565b91505092915050565b6138d5816136ec565b82525050565b60006020820190506138f060008301846138cc565b92915050565b6000806040838503121561390d5761390c613607565b5b600061391b85828601613715565b925050602061392c8582860161388a565b9150509250929050565b61393f81613869565b82525050565b600060208201905061395a6000830184613936565b92915050565b60008060006060848603121561397957613978613607565b5b600061398786828701613715565b935050602061399886828701613715565b92505060406139a98682870161388a565b9150509250925092565b600080604083850312156139ca576139c9613607565b5b60006139d88582860161388a565b92505060206139e98582860161388a565b9150509250929050565b6000604082019050613a0860008301856138cc565b613a156020830184613936565b9392505050565b600060208284031215613a3257613a31613607565b5b6000613a4084828501613715565b91505092915050565b613a5281613869565b82525050565b613a6181613696565b82525050565b60e082016000820151613a7d6000850182613a49565b506020820151613a906020850182613a49565b506040820151613aa36040850182613a49565b506060820151613ab66060850182613a58565b506080820151613ac96080850182613a49565b5060a0820151613adc60a0850182613a49565b5060c0820151613aef60c0850182613a49565b50505050565b600060e082019050613b0a6000830184613a67565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b52826137fd565b810181811067ffffffffffffffff82111715613b7157613b70613b1a565b5b80604052505050565b6000613b846135fd565b9050613b908282613b49565b919050565b600067ffffffffffffffff821115613bb057613baf613b1a565b5b613bb9826137fd565b9050602081019050919050565b82818337600083830152505050565b6000613be8613be384613b95565b613b7a565b905082815260208101848484011115613c0457613c03613b15565b5b613c0f848285613bc6565b509392505050565b600082601f830112613c2c57613c2b613b10565b5b8135613c3c848260208601613bd5565b91505092915050565b600060208284031215613c5b57613c5a613607565b5b600082013567ffffffffffffffff811115613c7957613c7861360c565b5b613c8584828501613c17565b91505092915050565b613c9781613696565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613607565b5b6000613cdf85828601613715565b9250506020613cf085828601613ca5565b9150509250929050565b600067ffffffffffffffff821115613d1557613d14613b1a565b5b613d1e826137fd565b9050602081019050919050565b6000613d3e613d3984613cfa565b613b7a565b905082815260208101848484011115613d5a57613d59613b15565b5b613d65848285613bc6565b509392505050565b600082601f830112613d8257613d81613b10565b5b8135613d92848260208601613d2b565b91505092915050565b60008060008060808587031215613db557613db4613607565b5b6000613dc387828801613715565b9450506020613dd487828801613715565b9350506040613de58782880161388a565b925050606085013567ffffffffffffffff811115613e0657613e0561360c565b5b613e1287828801613d6d565b91505092959194509250565b60008060408385031215613e3557613e34613607565b5b6000613e4385828601613715565b9250506020613e5485828601613715565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e946020836137b9565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1157607f821691505b60208210811415613f2557613f24613eca565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613f87602d836137b9565b9150613f9282613f2b565b604082019050919050565b60006020820190508181036000830152613fb681613f7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ff782613869565b915061400283613869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403b5761403a613fbd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408082613869565b915061408b83613869565b92508261409b5761409a614046565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b60006141026029836137b9565b915061410d826140a6565b604082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061419d601f836137b9565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f6021836137b9565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b60006142c1603f836137b9565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061432d6020836137b9565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143bf602a836137b9565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061442b601f836137b9565b9150614436826143f5565b602082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b600061446c82613869565b915061447783613869565b92508282101561448a57614489613fbd565b5b828203905092915050565b60006144a082613869565b91506144ab83613869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e0576144df613fbd565b5b828201905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006145216015836137b9565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461458481613ef9565b61458e8186614557565b945060018216600081146145a957600181146145ba576145ed565b60ff198316865281860193506145ed565b6145c385614562565b60005b838110156145e5578154818901526001820191506020810190506145c6565b838801955050505b50505092915050565b6000614601826137ae565b61460b8185614557565b935061461b8185602086016137ca565b80840191505092915050565b60006146338285614577565b915061463f82846145f6565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614681600583614557565b915061468c8261464b565b600582019050919050565b60006146a38285614577565b91506146af82846145f6565b91506146ba82614674565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147226026836137b9565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b4602a836137b9565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006148206019836137b9565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061488c601b836137b9565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148e9826148c2565b6148f381856148cd565b93506149038185602086016137ca565b61490c816137fd565b840191505092915050565b600060808201905061492c60008301876138cc565b61493960208301866138cc565b6149466040830185613936565b818103606083015261495881846148de565b905095945050505050565b6000815190506149728161363d565b92915050565b60006020828403121561498e5761498d613607565b5b600061499c84828501614963565b91505092915050565b60006149b082613869565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2613fbd565b5b600182019050919050565b60006149f982613869565b9150614a0483613869565b925082614a1457614a13614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220076fe9681894435ac8cd572831a392af343cb6d4aa140a038fe2951f9343963064736f6c634300080a0033

Deployed Bytecode Sourcemap

75856:5601:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81250:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81072:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46660:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46222:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76233:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41281:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77483:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47525:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70596:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;78072:89;;;;;;;;;;;;;:::i;:::-;;77334:140;;;;;;;;;;;;;:::i;:::-;;47766:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76871:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77966:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76111:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79274:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75964:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80643:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42410:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12614:103;;;;;;;;;;;;;:::i;:::-;;77704:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80878:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76046:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11963:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80031:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46936:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48022:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80752:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78169:1097;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79389:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80381:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80507:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76192:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12872:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76151:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81250:204;81381:4;81410:36;81434:11;81410:23;:36::i;:::-;81403:43;;81250:204;;;:::o;81072:170::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81190:44:::1;81209:8;81219:14;81190:18;:44::i;:::-;81072:170:::0;;:::o;45156:100::-;45210:13;45243:5;45236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:100;:::o;46660:204::-;46728:7;46753:16;46761:7;46753;:16::i;:::-;46748:64;;46778:34;;;;;;;;;;;;;;46748:64;46832:15;:24;46848:7;46832:24;;;;;;;;;;;;;;;;;;;;;46825:31;;46660:204;;;:::o;46222:372::-;46295:13;46311:24;46327:7;46311:15;:24::i;:::-;46295:40;;46356:5;46350:11;;:2;:11;;;46346:48;;;46370:24;;;;;;;;;;;;;;46346:48;46427:5;46411:21;;:12;:10;:12::i;:::-;:21;;;46407:139;;46438:37;46455:5;46462:12;:10;:12::i;:::-;46438:16;:37::i;:::-;46434:112;;46499:35;;;;;;;;;;;;;;46434:112;46407:139;46558:28;46567:2;46571:7;46580:5;46558:8;:28::i;:::-;46284:310;46222:372;;:::o;76233:30::-;;;;:::o;41281:312::-;41334:7;41559:15;:13;:15::i;:::-;41544:12;;41528:13;;:28;:46;41521:53;;41281:312;:::o;77483:212::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77577:21:::1;77567:6;:31;;77559:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;77667:2;77659:20;;:28;77680:6;77659:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77483:212:::0;;:::o;47525:170::-;47659:28;47669:4;47675:2;47679:7;47659:9;:28::i;:::-;47525:170;;;:::o;70596:494::-;70740:7;70749;70774:26;70803:17;:27;70821:8;70803:27;;;;;;;;;;;70774:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70875:1;70847:30;;:7;:16;;;:30;;;70843:92;;;70904:19;70894:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70843:92;70947:21;71012:17;:15;:17::i;:::-;70971:58;;70985:7;:23;;;70972:36;;:10;:36;;;;:::i;:::-;70971:58;;;;:::i;:::-;70947:82;;71050:7;:16;;;71068:13;71042:40;;;;;;70596:494;;;;;:::o;78072:89::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78141:12:::1;;;;;;;;;;;78140:13;78125:12;;:28;;;;;;;;;;;;;;;;;;78072:89::o:0;77334:140::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77382:12:::1;77397:21;77382:36;;77437:10;77429:28;;:37;77458:7;77429:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77371:103;77334:140::o:0;47766:185::-;47904:39;47921:4;47927:2;47931:7;47904:39;;;;;;;;;;;;:16;:39::i;:::-;47766:185;;;:::o;76871:455::-;76926:18;;:::i;:::-;76964:354;;;;;;;;77003:10;;76964:354;;;;77044:14;;76964:354;;;;77085:10;;76964:354;;;;77124:12;;;;;;;;;;;76964:354;;;;;;77172:13;:11;:13::i;:::-;76964:354;;;;77221:21;77235:6;77221:13;:21::i;:::-;76964:354;;;;77275:23;:31;77299:6;77275:31;;;;;;;;;;;;;;;;76964:354;;;76957:361;;76871:455;;;:::o;77966:94::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78046:6:::1;78036:7;:16;;;;;;;;;;;;:::i;:::-;;77966:94:::0;:::o;76111:31::-;;;;:::o;44964:125::-;45028:7;45055:21;45068:7;45055:12;:21::i;:::-;:26;;;45048:33;;44964:125;;;:::o;79274:107::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79360:13:::1;79347:10;:26;;;;79274:107:::0;:::o;75964:73::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80643:101::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80726:10:::1;80713;:23;;;;80643:101:::0;:::o;42410:206::-;42474:7;42515:1;42498:19;;:5;:19;;;42494:60;;;42526:28;;;;;;;;;;;;;;42494:60;42580:12;:19;42593:5;42580:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42572:36;;42565:43;;42410:206;;;:::o;12614:103::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:30:::1;12706:1;12679:18;:30::i;:::-;12614:103::o:0;77704:241::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77841:10:::1;;77804:33;77822:14;77804:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;77796:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;77908:29;77918:2;77922:14;77908:9;:29::i;:::-;77704:241:::0;;:::o;80878:118::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80973:15:::1;80956:14;:32;;;;80878:118:::0;:::o;76046:44::-;;;;:::o;11963:87::-;12009:7;12036:6;;;;;;;;;;;12029:13;;11963:87;:::o;80031:223::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80112:1:::1;80104:4;:9;80100:147;;;80145:21;80130:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;80100:147;;;80214:21;80199:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;80100:147;80031:223:::0;:::o;45325:104::-;45381:13;45414:7;45407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45325:104;:::o;46936:287::-;47047:12;:10;:12::i;:::-;47035:24;;:8;:24;;;47031:54;;;47068:17;;;;;;;;;;;;;;47031:54;47143:8;47098:18;:32;47117:12;:10;:12::i;:::-;47098:32;;;;;;;;;;;;;;;:42;47131:8;47098:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47196:8;47167:48;;47182:12;:10;:12::i;:::-;47167:48;;;47206:8;47167:48;;;;;;:::i;:::-;;;;;;;;46936:287;;:::o;48022:370::-;48189:28;48199:4;48205:2;48209:7;48189:9;:28::i;:::-;48232:15;:2;:13;;;:15::i;:::-;48228:157;;;48253:56;48284:4;48290:2;48294:7;48303:5;48253:30;:56::i;:::-;48249:136;;48333:40;;;;;;;;;;;;;;48249:136;48228:157;48022:370;;;;:::o;80752:118::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80847:15:::1;80830:14;:32;;;;80752:118:::0;:::o;78169:1097::-;74907:1;75505:7;;:19;;75497:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;74907:1;75638:7;:18;;;;78256:12:::1;;;;;;;;;;;78248:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;78343:14;;78325;:32;;78317:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;78461:1;78444:14;:18;78436:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;78555:10;;78518:33;78536:14;78518:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;78510:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;78625:14;78642:25;78656:10;78642:13;:25::i;:::-;78625:42;;78678:17;78737:23;:35;78761:10;78737:35;;;;;;;;;;;;;;;;78719:14;;:53;;:81;;;;78794:6;78776:14;;:24;;78719:81;78714:355;;;78855:10;;78838:14;:27;;;;:::i;:::-;78825:9;:40;;78817:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;78714:355;;;78978:10;;78973:1;78956:14;:18;;;;:::i;:::-;78955:33;;;;:::i;:::-;78942:9;:46;;78934:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;79053:4;79039:18;;78714:355;79089:37;79099:10;79111:14;79089:9;:37::i;:::-;79142:12;79139:120;;;79246:1;79208:23;:35;79232:10;79208:35;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;79170:23;:35;79194:10;79170:35;;;;;;;;;;;;;;;:77;;;;79139:120;78237:1029;;74863:1:::0;75817:7;:22;;;;78169:1097;:::o;79389:634::-;79455:13;79495:17;79503:8;79495:7;:17::i;:::-;79487:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;79569:21;79553:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;79549:467;;;79636:1;79618:7;79612:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;79694:7;79718:26;79735:8;79718:16;:26::i;:::-;79661:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79612:165;79605:172;;;;79549:467;79839:1;79821:7;79815:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;79897:7;79921:26;79938:8;79921:16;:26::i;:::-;79864:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79815:189;79808:196;;79389:634;;;;:::o;80381:113::-;80439:7;80466:20;80480:5;80466:13;:20::i;:::-;80459:27;;80381:113;;;:::o;80507:127::-;80569:7;80596:23;:30;80620:5;80596:30;;;;;;;;;;;;;;;;80589:37;;80507:127;;;:::o;47294:164::-;47391:4;47415:18;:25;47434:5;47415:25;;;;;;;;;;;;;;;:35;47441:8;47415:35;;;;;;;;;;;;;;;;;;;;;;;;;47408:42;;47294:164;;;;:::o;76192:32::-;;;;;;;;;;;;;:::o;12872:201::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12981:1:::1;12961:22;;:8;:22;;;;12953:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13037:28;13056:8;13037:18;:28::i;:::-;12872:201:::0;:::o;76151:32::-;;;;:::o;14581:326::-;14641:4;14898:1;14876:7;:19;;;:23;14869:30;;14581:326;;;:::o;70326:215::-;70428:4;70467:26;70452:41;;;:11;:41;;;;:81;;;;70497:36;70521:11;70497:23;:36::i;:::-;70452:81;70445:88;;70326:215;;;:::o;797:98::-;850:7;877:10;870:17;;797:98;:::o;71740:332::-;71859:17;:15;:17::i;:::-;71843:33;;:12;:33;;;;71835:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;71962:1;71942:22;;:8;:22;;;;71934:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;72029:35;;;;;;;;72041:8;72029:35;;;;;;72051:12;72029:35;;;;;72007:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71740:332;;:::o;48647:174::-;48704:4;48747:7;48728:15;:13;:15::i;:::-;:26;;:53;;;;;48768:13;;48758:7;:23;48728:53;:85;;;;;48786:11;:20;48798:7;48786:20;;;;;;;;;;;:27;;;;;;;;;;;;48785:28;48728:85;48721:92;;48647:174;;;:::o;57869:196::-;58011:2;57984:15;:24;58000:7;57984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58049:7;58045:2;58029:28;;58038:5;58029:28;;;;;;;;;;;;57869:196;;;:::o;41055:92::-;41111:7;41055:92;:::o;52817:2130::-;52932:35;52970:21;52983:7;52970:12;:21::i;:::-;52932:59;;53030:4;53008:26;;:13;:18;;;:26;;;53004:67;;53043:28;;;;;;;;;;;;;;53004:67;53084:22;53126:4;53110:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53147:36;53164:4;53170:12;:10;:12::i;:::-;53147:16;:36::i;:::-;53110:73;:126;;;;53224:12;:10;:12::i;:::-;53200:36;;:20;53212:7;53200:11;:20::i;:::-;:36;;;53110:126;53084:153;;53255:17;53250:66;;53281:35;;;;;;;;;;;;;;53250:66;53345:1;53331:16;;:2;:16;;;53327:52;;;53356:23;;;;;;;;;;;;;;53327:52;53392:43;53414:4;53420:2;53424:7;53433:1;53392:21;:43::i;:::-;53500:35;53517:1;53521:7;53530:4;53500:8;:35::i;:::-;53861:1;53831:12;:18;53844:4;53831:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53905:1;53877:12;:16;53890:2;53877:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53923:31;53957:11;:20;53969:7;53957:20;;;;;;;;;;;53923:54;;54008:2;53992:8;:13;;;:18;;;;;;;;;;;;;;;;;;54058:15;54025:8;:23;;;:49;;;;;;;;;;;;;;;;;;54326:19;54358:1;54348:7;:11;54326:33;;54374:31;54408:11;:24;54420:11;54408:24;;;;;;;;;;;54374:58;;54476:1;54451:27;;:8;:13;;;;;;;;;;;;:27;;;54447:384;;;54661:13;;54646:11;:28;54642:174;;54715:4;54699:8;:13;;;:20;;;;;;;;;;;;;;;;;;54768:13;:28;;;54742:8;:23;;;:54;;;;;;;;;;;;;;;;;;54642:174;54447:384;53806:1036;;;54878:7;54874:2;54859:27;;54868:4;54859:27;;;;;;;;;;;;54897:42;54918:4;54924:2;54928:7;54937:1;54897:20;:42::i;:::-;52921:2026;;52817:2130;;;:::o;71372:97::-;71430:6;71456:5;71449:12;;71372:97;:::o;42698:137::-;42759:7;42794:12;:19;42807:5;42794:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;42786:41;;42779:48;;42698:137;;;:::o;43791:1111::-;43853:21;;:::i;:::-;43887:12;43902:7;43887:22;;43970:4;43951:15;:13;:15::i;:::-;:23;43947:888;;43987:13;;43980:4;:20;43976:859;;;44021:31;44055:11;:17;44067:4;44055:17;;;;;;;;;;;44021:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44096:9;:16;;;44091:729;;44167:1;44141:28;;:9;:14;;;:28;;;44137:101;;44205:9;44198:16;;;;;;44137:101;44540:261;44547:4;44540:261;;;44580:6;;;;;;;;44625:11;:17;44637:4;44625:17;;;;;;;;;;;44613:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:1;44673:28;;:9;:14;;;:28;;;44669:109;;44741:9;44734:16;;;;;;44669:109;44540:261;;;44091:729;44002:833;43976:859;43947:888;44863:31;;;;;;;;;;;;;;43791:1111;;;;:::o;13233:191::-;13307:16;13326:6;;;;;;;;;;;13307:25;;13352:8;13343:6;;:17;;;;;;;;;;;;;;;;;;13407:8;13376:40;;13397:8;13376:40;;;;;;;;;;;;13296:128;13233:191;:::o;63559:179::-;63617:7;63637:9;63653:1;63649;:5;;;;:::i;:::-;63637:17;;63678:1;63673;:6;;63665:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63729:1;63722:8;;;63559:179;;;;:::o;48905:104::-;48974:27;48984:2;48988:8;48974:27;;;;;;;;;;;;:9;:27::i;:::-;48905:104;;:::o;58557:667::-;58720:4;58757:2;58741:36;;;58778:12;:10;:12::i;:::-;58792:4;58798:7;58807:5;58741:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58737:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58992:1;58975:6;:13;:18;58971:235;;;59021:40;;;;;;;;;;;;;;58971:235;59164:6;59158:13;59149:6;59145:2;59141:15;59134:38;58737:480;58870:45;;;58860:55;;;:6;:55;;;;58853:62;;;58557:667;;;;;;:::o;22135:723::-;22191:13;22421:1;22412:5;:10;22408:53;;;22439:10;;;;;;;;;;;;;;;;;;;;;22408:53;22471:12;22486:5;22471:20;;22502:14;22527:78;22542:1;22534:4;:9;22527:78;;22560:8;;;;;:::i;:::-;;;;22591:2;22583:10;;;;;:::i;:::-;;;22527:78;;;22615:19;22647:6;22637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22615:39;;22665:154;22681:1;22672:5;:10;22665:154;;22709:1;22699:11;;;;;:::i;:::-;;;22776:2;22768:5;:10;;;;:::i;:::-;22755:2;:24;;;;:::i;:::-;22742:39;;22725:6;22732;22725:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;22805:2;22796:11;;;;;:::i;:::-;;;22665:154;;;22843:6;22829:21;;;;;22135:723;;;;:::o;42041:305::-;42143:4;42195:25;42180:40;;;:11;:40;;;;:105;;;;42252:33;42237:48;;;:11;:48;;;;42180:105;:158;;;;42302:36;42326:11;42302:23;:36::i;:::-;42180:158;42160:178;;42041:305;;;:::o;59872:159::-;;;;;:::o;60690:158::-;;;;;:::o;49382:1749::-;49505:20;49528:13;;49505:36;;49570:1;49556:16;;:2;:16;;;49552:48;;;49581:19;;;;;;;;;;;;;;49552:48;49627:1;49615:8;:13;49611:44;;;49637:18;;;;;;;;;;;;;;49611:44;49668:61;49698:1;49702:2;49706:12;49720:8;49668:21;:61::i;:::-;50041:8;50006:12;:16;50019:2;50006:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50105:8;50065:12;:16;50078:2;50065:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50164:2;50131:11;:25;50143:12;50131:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50231:15;50181:11;:25;50193:12;50181:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50264:20;50287:12;50264:35;;50314:11;50343:8;50328:12;:23;50314:37;;50372:15;:2;:13;;;:15::i;:::-;50368:631;;;50408:313;50464:12;50460:2;50439:38;;50456:1;50439:38;;;;;;;;;;;;50505:69;50544:1;50548:2;50552:14;;;;;;50568:5;50505:30;:69::i;:::-;50500:174;;50610:40;;;;;;;;;;;;;;50500:174;50716:3;50701:12;:18;50408:313;;50802:12;50785:13;;:29;50781:43;;50816:8;;;50781:43;50368:631;;;50865:119;50921:14;;;;;;50917:2;50896:40;;50913:1;50896:40;;;;;;;;;;;;50979:3;50964:12;:18;50865:119;;50368:631;51029:12;51013:13;:28;;;;49981:1072;;51063:60;51092:1;51096:2;51100:12;51114:8;51063:20;:60::i;:::-;49494:1637;49382:1749;;;:::o;10821:157::-;10906:4;10945:25;10930:40;;;:11;:40;;;;10923:47;;10821:157;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:474::-;6845:6;6853;6902:2;6890:9;6881:7;6877:23;6873:32;6870:119;;;6908:79;;:::i;:::-;6870:119;7028:1;7053:53;7098:7;7089:6;7078:9;7074:22;7053:53;:::i;:::-;7043:63;;6999:117;7155:2;7181:53;7226:7;7217:6;7206:9;7202:22;7181:53;:::i;:::-;7171:63;;7126:118;6777:474;;;;;:::o;7257:332::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7510:72;7578:2;7567:9;7563:18;7554:6;7510:72;:::i;:::-;7257:332;;;;;:::o;7595:329::-;7654:6;7703:2;7691:9;7682:7;7678:23;7674:32;7671:119;;;7709:79;;:::i;:::-;7671:119;7829:1;7854:53;7899:7;7890:6;7879:9;7875:22;7854:53;:::i;:::-;7844:63;;7800:117;7595:329;;;;:::o;7930:108::-;8007:24;8025:5;8007:24;:::i;:::-;8002:3;7995:37;7930:108;;:::o;8044:99::-;8115:21;8130:5;8115:21;:::i;:::-;8110:3;8103:34;8044:99;;:::o;8219:1432::-;8374:4;8369:3;8365:14;8467:4;8460:5;8456:16;8450:23;8486:63;8543:4;8538:3;8534:14;8520:12;8486:63;:::i;:::-;8389:170;8651:4;8644:5;8640:16;8634:23;8670:63;8727:4;8722:3;8718:14;8704:12;8670:63;:::i;:::-;8569:174;8831:4;8824:5;8820:16;8814:23;8850:63;8907:4;8902:3;8898:14;8884:12;8850:63;:::i;:::-;8753:170;9013:4;9006:5;9002:16;8996:23;9032:57;9083:4;9078:3;9074:14;9060:12;9032:57;:::i;:::-;8933:166;9188:4;9181:5;9177:16;9171:23;9207:63;9264:4;9259:3;9255:14;9241:12;9207:63;:::i;:::-;9109:171;9368:4;9361:5;9357:16;9351:23;9387:63;9444:4;9439:3;9435:14;9421:12;9387:63;:::i;:::-;9290:170;9552:4;9545:5;9541:16;9535:23;9571:63;9628:4;9623:3;9619:14;9605:12;9571:63;:::i;:::-;9470:174;8343:1308;8219:1432;;:::o;9657:339::-;9808:4;9846:3;9835:9;9831:19;9823:27;;9860:129;9986:1;9975:9;9971:17;9962:6;9860:129;:::i;:::-;9657:339;;;;:::o;10002:117::-;10111:1;10108;10101:12;10125:117;10234:1;10231;10224:12;10248:180;10296:77;10293:1;10286:88;10393:4;10390:1;10383:15;10417:4;10414:1;10407:15;10434:281;10517:27;10539:4;10517:27;:::i;:::-;10509:6;10505:40;10647:6;10635:10;10632:22;10611:18;10599:10;10596:34;10593:62;10590:88;;;10658:18;;:::i;:::-;10590:88;10698:10;10694:2;10687:22;10477:238;10434:281;;:::o;10721:129::-;10755:6;10782:20;;:::i;:::-;10772:30;;10811:33;10839:4;10831:6;10811:33;:::i;:::-;10721:129;;;:::o;10856:308::-;10918:4;11008:18;11000:6;10997:30;10994:56;;;11030:18;;:::i;:::-;10994:56;11068:29;11090:6;11068:29;:::i;:::-;11060:37;;11152:4;11146;11142:15;11134:23;;10856:308;;;:::o;11170:154::-;11254:6;11249:3;11244;11231:30;11316:1;11307:6;11302:3;11298:16;11291:27;11170:154;;;:::o;11330:412::-;11408:5;11433:66;11449:49;11491:6;11449:49;:::i;:::-;11433:66;:::i;:::-;11424:75;;11522:6;11515:5;11508:21;11560:4;11553:5;11549:16;11598:3;11589:6;11584:3;11580:16;11577:25;11574:112;;;11605:79;;:::i;:::-;11574:112;11695:41;11729:6;11724:3;11719;11695:41;:::i;:::-;11414:328;11330:412;;;;;:::o;11762:340::-;11818:5;11867:3;11860:4;11852:6;11848:17;11844:27;11834:122;;11875:79;;:::i;:::-;11834:122;11992:6;11979:20;12017:79;12092:3;12084:6;12077:4;12069:6;12065:17;12017:79;:::i;:::-;12008:88;;11824:278;11762:340;;;;:::o;12108:509::-;12177:6;12226:2;12214:9;12205:7;12201:23;12197:32;12194:119;;;12232:79;;:::i;:::-;12194:119;12380:1;12369:9;12365:17;12352:31;12410:18;12402:6;12399:30;12396:117;;;12432:79;;:::i;:::-;12396:117;12537:63;12592:7;12583:6;12572:9;12568:22;12537:63;:::i;:::-;12527:73;;12323:287;12108:509;;;;:::o;12623:116::-;12693:21;12708:5;12693:21;:::i;:::-;12686:5;12683:32;12673:60;;12729:1;12726;12719:12;12673:60;12623:116;:::o;12745:133::-;12788:5;12826:6;12813:20;12804:29;;12842:30;12866:5;12842:30;:::i;:::-;12745:133;;;;:::o;12884:468::-;12949:6;12957;13006:2;12994:9;12985:7;12981:23;12977:32;12974:119;;;13012:79;;:::i;:::-;12974:119;13132:1;13157:53;13202:7;13193:6;13182:9;13178:22;13157:53;:::i;:::-;13147:63;;13103:117;13259:2;13285:50;13327:7;13318:6;13307:9;13303:22;13285:50;:::i;:::-;13275:60;;13230:115;12884:468;;;;;:::o;13358:307::-;13419:4;13509:18;13501:6;13498:30;13495:56;;;13531:18;;:::i;:::-;13495:56;13569:29;13591:6;13569:29;:::i;:::-;13561:37;;13653:4;13647;13643:15;13635:23;;13358:307;;;:::o;13671:410::-;13748:5;13773:65;13789:48;13830:6;13789:48;:::i;:::-;13773:65;:::i;:::-;13764:74;;13861:6;13854:5;13847:21;13899:4;13892:5;13888:16;13937:3;13928:6;13923:3;13919:16;13916:25;13913:112;;;13944:79;;:::i;:::-;13913:112;14034:41;14068:6;14063:3;14058;14034:41;:::i;:::-;13754:327;13671:410;;;;;:::o;14100:338::-;14155:5;14204:3;14197:4;14189:6;14185:17;14181:27;14171:122;;14212:79;;:::i;:::-;14171:122;14329:6;14316:20;14354:78;14428:3;14420:6;14413:4;14405:6;14401:17;14354:78;:::i;:::-;14345:87;;14161:277;14100:338;;;;:::o;14444:943::-;14539:6;14547;14555;14563;14612:3;14600:9;14591:7;14587:23;14583:33;14580:120;;;14619:79;;:::i;:::-;14580:120;14739:1;14764:53;14809:7;14800:6;14789:9;14785:22;14764:53;:::i;:::-;14754:63;;14710:117;14866:2;14892:53;14937:7;14928:6;14917:9;14913:22;14892:53;:::i;:::-;14882:63;;14837:118;14994:2;15020:53;15065:7;15056:6;15045:9;15041:22;15020:53;:::i;:::-;15010:63;;14965:118;15150:2;15139:9;15135:18;15122:32;15181:18;15173:6;15170:30;15167:117;;;15203:79;;:::i;:::-;15167:117;15308:62;15362:7;15353:6;15342:9;15338:22;15308:62;:::i;:::-;15298:72;;15093:287;14444:943;;;;;;;:::o;15393:474::-;15461:6;15469;15518:2;15506:9;15497:7;15493:23;15489:32;15486:119;;;15524:79;;:::i;:::-;15486:119;15644:1;15669:53;15714:7;15705:6;15694:9;15690:22;15669:53;:::i;:::-;15659:63;;15615:117;15771:2;15797:53;15842:7;15833:6;15822:9;15818:22;15797:53;:::i;:::-;15787:63;;15742:118;15393:474;;;;;:::o;15873:182::-;16013:34;16009:1;16001:6;15997:14;15990:58;15873:182;:::o;16061:366::-;16203:3;16224:67;16288:2;16283:3;16224:67;:::i;:::-;16217:74;;16300:93;16389:3;16300:93;:::i;:::-;16418:2;16413:3;16409:12;16402:19;;16061:366;;;:::o;16433:419::-;16599:4;16637:2;16626:9;16622:18;16614:26;;16686:9;16680:4;16676:20;16672:1;16661:9;16657:17;16650:47;16714:131;16840:4;16714:131;:::i;:::-;16706:139;;16433:419;;;:::o;16858:180::-;16906:77;16903:1;16896:88;17003:4;17000:1;16993:15;17027:4;17024:1;17017:15;17044:320;17088:6;17125:1;17119:4;17115:12;17105:22;;17172:1;17166:4;17162:12;17193:18;17183:81;;17249:4;17241:6;17237:17;17227:27;;17183:81;17311:2;17303:6;17300:14;17280:18;17277:38;17274:84;;;17330:18;;:::i;:::-;17274:84;17095:269;17044:320;;;:::o;17370:232::-;17510:34;17506:1;17498:6;17494:14;17487:58;17579:15;17574:2;17566:6;17562:15;17555:40;17370:232;:::o;17608:366::-;17750:3;17771:67;17835:2;17830:3;17771:67;:::i;:::-;17764:74;;17847:93;17936:3;17847:93;:::i;:::-;17965:2;17960:3;17956:12;17949:19;;17608:366;;;:::o;17980:419::-;18146:4;18184:2;18173:9;18169:18;18161:26;;18233:9;18227:4;18223:20;18219:1;18208:9;18204:17;18197:47;18261:131;18387:4;18261:131;:::i;:::-;18253:139;;17980:419;;;:::o;18405:180::-;18453:77;18450:1;18443:88;18550:4;18547:1;18540:15;18574:4;18571:1;18564:15;18591:348;18631:7;18654:20;18672:1;18654:20;:::i;:::-;18649:25;;18688:20;18706:1;18688:20;:::i;:::-;18683:25;;18876:1;18808:66;18804:74;18801:1;18798:81;18793:1;18786:9;18779:17;18775:105;18772:131;;;18883:18;;:::i;:::-;18772:131;18931:1;18928;18924:9;18913:20;;18591:348;;;;:::o;18945:180::-;18993:77;18990:1;18983:88;19090:4;19087:1;19080:15;19114:4;19111:1;19104:15;19131:185;19171:1;19188:20;19206:1;19188:20;:::i;:::-;19183:25;;19222:20;19240:1;19222:20;:::i;:::-;19217:25;;19261:1;19251:35;;19266:18;;:::i;:::-;19251:35;19308:1;19305;19301:9;19296:14;;19131:185;;;;:::o;19322:228::-;19462:34;19458:1;19450:6;19446:14;19439:58;19531:11;19526:2;19518:6;19514:15;19507:36;19322:228;:::o;19556:366::-;19698:3;19719:67;19783:2;19778:3;19719:67;:::i;:::-;19712:74;;19795:93;19884:3;19795:93;:::i;:::-;19913:2;19908:3;19904:12;19897:19;;19556:366;;;:::o;19928:419::-;20094:4;20132:2;20121:9;20117:18;20109:26;;20181:9;20175:4;20171:20;20167:1;20156:9;20152:17;20145:47;20209:131;20335:4;20209:131;:::i;:::-;20201:139;;19928:419;;;:::o;20353:180::-;20401:77;20398:1;20391:88;20498:4;20495:1;20488:15;20522:4;20519:1;20512:15;20539:181;20679:33;20675:1;20667:6;20663:14;20656:57;20539:181;:::o;20726:366::-;20868:3;20889:67;20953:2;20948:3;20889:67;:::i;:::-;20882:74;;20965:93;21054:3;20965:93;:::i;:::-;21083:2;21078:3;21074:12;21067:19;;20726:366;;;:::o;21098:419::-;21264:4;21302:2;21291:9;21287:18;21279:26;;21351:9;21345:4;21341:20;21337:1;21326:9;21322:17;21315:47;21379:131;21505:4;21379:131;:::i;:::-;21371:139;;21098:419;;;:::o;21523:220::-;21663:34;21659:1;21651:6;21647:14;21640:58;21732:3;21727:2;21719:6;21715:15;21708:28;21523:220;:::o;21749:366::-;21891:3;21912:67;21976:2;21971:3;21912:67;:::i;:::-;21905:74;;21988:93;22077:3;21988:93;:::i;:::-;22106:2;22101:3;22097:12;22090:19;;21749:366;;;:::o;22121:419::-;22287:4;22325:2;22314:9;22310:18;22302:26;;22374:9;22368:4;22364:20;22360:1;22349:9;22345:17;22338:47;22402:131;22528:4;22402:131;:::i;:::-;22394:139;;22121:419;;;:::o;22546:250::-;22686:34;22682:1;22674:6;22670:14;22663:58;22755:33;22750:2;22742:6;22738:15;22731:58;22546:250;:::o;22802:366::-;22944:3;22965:67;23029:2;23024:3;22965:67;:::i;:::-;22958:74;;23041:93;23130:3;23041:93;:::i;:::-;23159:2;23154:3;23150:12;23143:19;;22802:366;;;:::o;23174:419::-;23340:4;23378:2;23367:9;23363:18;23355:26;;23427:9;23421:4;23417:20;23413:1;23402:9;23398:17;23391:47;23455:131;23581:4;23455:131;:::i;:::-;23447:139;;23174:419;;;:::o;23599:182::-;23739:34;23735:1;23727:6;23723:14;23716:58;23599:182;:::o;23787:366::-;23929:3;23950:67;24014:2;24009:3;23950:67;:::i;:::-;23943:74;;24026:93;24115:3;24026:93;:::i;:::-;24144:2;24139:3;24135:12;24128:19;;23787:366;;;:::o;24159:419::-;24325:4;24363:2;24352:9;24348:18;24340:26;;24412:9;24406:4;24402:20;24398:1;24387:9;24383:17;24376:47;24440:131;24566:4;24440:131;:::i;:::-;24432:139;;24159:419;;;:::o;24584:229::-;24724:34;24720:1;24712:6;24708:14;24701:58;24793:12;24788:2;24780:6;24776:15;24769:37;24584:229;:::o;24819:366::-;24961:3;24982:67;25046:2;25041:3;24982:67;:::i;:::-;24975:74;;25058:93;25147:3;25058:93;:::i;:::-;25176:2;25171:3;25167:12;25160:19;;24819:366;;;:::o;25191:419::-;25357:4;25395:2;25384:9;25380:18;25372:26;;25444:9;25438:4;25434:20;25430:1;25419:9;25415:17;25408:47;25472:131;25598:4;25472:131;:::i;:::-;25464:139;;25191:419;;;:::o;25616:181::-;25756:33;25752:1;25744:6;25740:14;25733:57;25616:181;:::o;25803:366::-;25945:3;25966:67;26030:2;26025:3;25966:67;:::i;:::-;25959:74;;26042:93;26131:3;26042:93;:::i;:::-;26160:2;26155:3;26151:12;26144:19;;25803:366;;;:::o;26175:419::-;26341:4;26379:2;26368:9;26364:18;26356:26;;26428:9;26422:4;26418:20;26414:1;26403:9;26399:17;26392:47;26456:131;26582:4;26456:131;:::i;:::-;26448:139;;26175:419;;;:::o;26600:191::-;26640:4;26660:20;26678:1;26660:20;:::i;:::-;26655:25;;26694:20;26712:1;26694:20;:::i;:::-;26689:25;;26733:1;26730;26727:8;26724:34;;;26738:18;;:::i;:::-;26724:34;26783:1;26780;26776:9;26768:17;;26600:191;;;;:::o;26797:305::-;26837:3;26856:20;26874:1;26856:20;:::i;:::-;26851:25;;26890:20;26908:1;26890:20;:::i;:::-;26885:25;;27044:1;26976:66;26972:74;26969:1;26966:81;26963:107;;;27050:18;;:::i;:::-;26963:107;27094:1;27091;27087:9;27080:16;;26797:305;;;;:::o;27108:171::-;27248:23;27244:1;27236:6;27232:14;27225:47;27108:171;:::o;27285:366::-;27427:3;27448:67;27512:2;27507:3;27448:67;:::i;:::-;27441:74;;27524:93;27613:3;27524:93;:::i;:::-;27642:2;27637:3;27633:12;27626:19;;27285:366;;;:::o;27657:419::-;27823:4;27861:2;27850:9;27846:18;27838:26;;27910:9;27904:4;27900:20;27896:1;27885:9;27881:17;27874:47;27938:131;28064:4;27938:131;:::i;:::-;27930:139;;27657:419;;;:::o;28082:148::-;28184:11;28221:3;28206:18;;28082:148;;;;:::o;28236:141::-;28285:4;28308:3;28300:11;;28331:3;28328:1;28321:14;28365:4;28362:1;28352:18;28344:26;;28236:141;;;:::o;28407:845::-;28510:3;28547:5;28541:12;28576:36;28602:9;28576:36;:::i;:::-;28628:89;28710:6;28705:3;28628:89;:::i;:::-;28621:96;;28748:1;28737:9;28733:17;28764:1;28759:137;;;;28910:1;28905:341;;;;28726:520;;28759:137;28843:4;28839:9;28828;28824:25;28819:3;28812:38;28879:6;28874:3;28870:16;28863:23;;28759:137;;28905:341;28972:38;29004:5;28972:38;:::i;:::-;29032:1;29046:154;29060:6;29057:1;29054:13;29046:154;;;29134:7;29128:14;29124:1;29119:3;29115:11;29108:35;29184:1;29175:7;29171:15;29160:26;;29082:4;29079:1;29075:12;29070:17;;29046:154;;;29229:6;29224:3;29220:16;29213:23;;28912:334;;28726:520;;28514:738;;28407:845;;;;:::o;29258:377::-;29364:3;29392:39;29425:5;29392:39;:::i;:::-;29447:89;29529:6;29524:3;29447:89;:::i;:::-;29440:96;;29545:52;29590:6;29585:3;29578:4;29571:5;29567:16;29545:52;:::i;:::-;29622:6;29617:3;29613:16;29606:23;;29368:267;29258:377;;;;:::o;29641:429::-;29818:3;29840:92;29928:3;29919:6;29840:92;:::i;:::-;29833:99;;29949:95;30040:3;30031:6;29949:95;:::i;:::-;29942:102;;30061:3;30054:10;;29641:429;;;;;:::o;30076:155::-;30216:7;30212:1;30204:6;30200:14;30193:31;30076:155;:::o;30237:400::-;30397:3;30418:84;30500:1;30495:3;30418:84;:::i;:::-;30411:91;;30511:93;30600:3;30511:93;:::i;:::-;30629:1;30624:3;30620:11;30613:18;;30237:400;;;:::o;30643:695::-;30921:3;30943:92;31031:3;31022:6;30943:92;:::i;:::-;30936:99;;31052:95;31143:3;31134:6;31052:95;:::i;:::-;31045:102;;31164:148;31308:3;31164:148;:::i;:::-;31157:155;;31329:3;31322:10;;30643:695;;;;;:::o;31344:225::-;31484:34;31480:1;31472:6;31468:14;31461:58;31553:8;31548:2;31540:6;31536:15;31529:33;31344:225;:::o;31575:366::-;31717:3;31738:67;31802:2;31797:3;31738:67;:::i;:::-;31731:74;;31814:93;31903:3;31814:93;:::i;:::-;31932:2;31927:3;31923:12;31916:19;;31575:366;;;:::o;31947:419::-;32113:4;32151:2;32140:9;32136:18;32128:26;;32200:9;32194:4;32190:20;32186:1;32175:9;32171:17;32164:47;32228:131;32354:4;32228:131;:::i;:::-;32220:139;;31947:419;;;:::o;32372:229::-;32512:34;32508:1;32500:6;32496:14;32489:58;32581:12;32576:2;32568:6;32564:15;32557:37;32372:229;:::o;32607:366::-;32749:3;32770:67;32834:2;32829:3;32770:67;:::i;:::-;32763:74;;32846:93;32935:3;32846:93;:::i;:::-;32964:2;32959:3;32955:12;32948:19;;32607:366;;;:::o;32979:419::-;33145:4;33183:2;33172:9;33168:18;33160:26;;33232:9;33226:4;33222:20;33218:1;33207:9;33203:17;33196:47;33260:131;33386:4;33260:131;:::i;:::-;33252:139;;32979:419;;;:::o;33404:175::-;33544:27;33540:1;33532:6;33528:14;33521:51;33404:175;:::o;33585:366::-;33727:3;33748:67;33812:2;33807:3;33748:67;:::i;:::-;33741:74;;33824:93;33913:3;33824:93;:::i;:::-;33942:2;33937:3;33933:12;33926:19;;33585:366;;;:::o;33957:419::-;34123:4;34161:2;34150:9;34146:18;34138:26;;34210:9;34204:4;34200:20;34196:1;34185:9;34181:17;34174:47;34238:131;34364:4;34238:131;:::i;:::-;34230:139;;33957:419;;;:::o;34382:177::-;34522:29;34518:1;34510:6;34506:14;34499:53;34382:177;:::o;34565:366::-;34707:3;34728:67;34792:2;34787:3;34728:67;:::i;:::-;34721:74;;34804:93;34893:3;34804:93;:::i;:::-;34922:2;34917:3;34913:12;34906:19;;34565:366;;;:::o;34937:419::-;35103:4;35141:2;35130:9;35126:18;35118:26;;35190:9;35184:4;35180:20;35176:1;35165:9;35161:17;35154:47;35218:131;35344:4;35218:131;:::i;:::-;35210:139;;34937:419;;;:::o;35362:98::-;35413:6;35447:5;35441:12;35431:22;;35362:98;;;:::o;35466:168::-;35549:11;35583:6;35578:3;35571:19;35623:4;35618:3;35614:14;35599:29;;35466:168;;;;:::o;35640:360::-;35726:3;35754:38;35786:5;35754:38;:::i;:::-;35808:70;35871:6;35866:3;35808:70;:::i;:::-;35801:77;;35887:52;35932:6;35927:3;35920:4;35913:5;35909:16;35887:52;:::i;:::-;35964:29;35986:6;35964:29;:::i;:::-;35959:3;35955:39;35948:46;;35730:270;35640:360;;;;:::o;36006:640::-;36201:4;36239:3;36228:9;36224:19;36216:27;;36253:71;36321:1;36310:9;36306:17;36297:6;36253:71;:::i;:::-;36334:72;36402:2;36391:9;36387:18;36378:6;36334:72;:::i;:::-;36416;36484:2;36473:9;36469:18;36460:6;36416:72;:::i;:::-;36535:9;36529:4;36525:20;36520:2;36509:9;36505:18;36498:48;36563:76;36634:4;36625:6;36563:76;:::i;:::-;36555:84;;36006:640;;;;;;;:::o;36652:141::-;36708:5;36739:6;36733:13;36724:22;;36755:32;36781:5;36755:32;:::i;:::-;36652:141;;;;:::o;36799:349::-;36868:6;36917:2;36905:9;36896:7;36892:23;36888:32;36885:119;;;36923:79;;:::i;:::-;36885:119;37043:1;37068:63;37123:7;37114:6;37103:9;37099:22;37068:63;:::i;:::-;37058:73;;37014:127;36799:349;;;;:::o;37154:233::-;37193:3;37216:24;37234:5;37216:24;:::i;:::-;37207:33;;37262:66;37255:5;37252:77;37249:103;;;37332:18;;:::i;:::-;37249:103;37379:1;37372:5;37368:13;37361:20;;37154:233;;;:::o;37393:176::-;37425:1;37442:20;37460:1;37442:20;:::i;:::-;37437:25;;37476:20;37494:1;37476:20;:::i;:::-;37471:25;;37515:1;37505:35;;37520:18;;:::i;:::-;37505:35;37561:1;37558;37554:9;37549:14;;37393:176;;;;:::o;37575:180::-;37623:77;37620:1;37613:88;37720:4;37717:1;37710:15;37744:4;37741:1;37734:15

Swarm Source

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