ETH Price: $3,468.19 (+2.18%)
Gas: 14 Gwei

Token

Meowerz (MEOW)
 

Overview

Max Total Supply

3,333 MEOW

Holders

1,856

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MEOW
0x91fa982255f24f7cb841c6218a08177241777ade
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MeOW is a NFT token

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Meowerz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Meowerz.sol


pragma solidity ^0.8.4;






contract Meowerz is ERC721A, Ownable {
    using Strings for uint256;

    string private baseURI;

    string public hiddenMetadataUri;

    uint256 public price = 0.003 ether;

    uint256 public maxPerTx = 5;

    uint256 public maxFreePerWallet = 1;

    uint256 public totalFree = 2222;

    uint256 public maxSupply = 3333;

    uint public nextId = 0;

    bool public mintEnabled = false;

    bool public revealed = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Meowerz", "MEOW") {
        setHiddenMetadataUri("ipfs://QmegKMHAQ3iAzMJqL6mHvkEiUh9Gostx6vNvK3xFoX4A8L");
        setBaseURI("ipfs://QmXBg5pipSg3ZUX65sdNUxzWKFeer2i35tn5ggaCoR1vPS/");
    }

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

      if (isFree) {
      cost = 0;
     }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600b556005600c556001600d556108ae600e55610d05600f5560006010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600781526020017f4d656f7765727a000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d454f57000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f2929190620003f5565b5080600390805190602001906200010b929190620003f5565b506200011c6200019e60201b60201c565b60008190555050506200014462000138620001a760201b60201c565b620001af60201b60201c565b6200016e60405180606001604052806035815260200162004009603591396200027560201b60201c565b620001986040518060600160405280603681526020016200403e603691396200032060201b60201c565b6200058d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000285620001a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ab620003cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb90620004cc565b60405180910390fd5b80600a90805190602001906200031c929190620003f5565b5050565b62000330620001a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000356620003cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a690620004cc565b60405180910390fd5b8060099080519060200190620003c7929190620003f5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200040390620004ff565b90600052602060002090601f01602090048101928262000427576000855562000473565b82601f106200044257805160ff191683800117855562000473565b8280016001018555821562000473579182015b828111156200047257825182559160200191906001019062000455565b5b50905062000482919062000486565b5090565b5b80821115620004a157600081600090555060010162000487565b5090565b6000620004b4602083620004ee565b9150620004c18262000564565b602082019050919050565b60006020820190508181036000830152620004e781620004a5565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200051857607f821691505b602082108114156200052f576200052e62000535565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613a6c806200059d6000396000f3fe6080604052600436106102045760003560e01c80637ba5e62111610118578063a7027357116100a0578063d12397301161006f578063d1239730146106fc578063d5abeb0114610727578063e985e9c514610752578063f2fde38b1461078f578063f968adbe146107b857610204565b8063a702735714610640578063b88d4fde1461066b578063bc96832614610694578063c87b56dd146106bf57610204565b806395d89b41116100e757806395d89b411461057a578063a035b1fe146105a5578063a0712d68146105d0578063a22cb465146105ec578063a45ba8e71461061557610204565b80637ba5e621146104e65780638da5cb5b146104fd57806391b7f5ed1461052857806392910eec1461055157610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461040157806361b8ce8c1461042a5780636352211e1461045557806370a0823114610492578063715018a6146104cf57610204565b80633ccfd60b1461036d57806342842e0e146103845780634fdd43cb146103ad57806351830227146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd14610302578063333e44e61461032b5780633bd649681461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612de1565b6107e3565b60405161023d9190613220565b60405180910390f35b34801561025257600080fd5b5061025b6108c5565b604051610268919061323b565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e84565b610957565b6040516102a591906131b9565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612da1565b6109d3565b005b3480156102e357600080fd5b506102ec610ade565b6040516102f9919061335d565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612c8b565b610af5565b005b34801561033757600080fd5b50610340610b05565b60405161034d919061335d565b60405180910390f35b34801561036257600080fd5b5061036b610b0b565b005b34801561037957600080fd5b50610382610bb3565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612c8b565b610cde565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612e3b565b610cfe565b005b3480156103e257600080fd5b506103eb610d94565b6040516103f89190613220565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612e3b565b610da7565b005b34801561043657600080fd5b5061043f610e3d565b60405161044c919061335d565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612e84565b610e43565b60405161048991906131b9565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612c1e565b610e59565b6040516104c6919061335d565b60405180910390f35b3480156104db57600080fd5b506104e4610f29565b005b3480156104f257600080fd5b506104fb610fb1565b005b34801561050957600080fd5b50610512611059565b60405161051f91906131b9565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612e84565b611083565b005b34801561055d57600080fd5b5061057860048036038101906105739190612e84565b611109565b005b34801561058657600080fd5b5061058f61118f565b60405161059c919061323b565b60405180910390f35b3480156105b157600080fd5b506105ba611221565b6040516105c7919061335d565b60405180910390f35b6105ea60048036038101906105e59190612e84565b611227565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612d61565b61147d565b005b34801561062157600080fd5b5061062a6115f5565b604051610637919061323b565b60405180910390f35b34801561064c57600080fd5b50610655611683565b604051610662919061335d565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612cde565b611689565b005b3480156106a057600080fd5b506106a9611705565b6040516106b6919061335d565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612e84565b61170f565b6040516106f3919061323b565b60405180910390f35b34801561070857600080fd5b506107116117d0565b60405161071e9190613220565b60405180910390f35b34801561073357600080fd5b5061073c6117e3565b604051610749919061335d565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612c4b565b6117e9565b6040516107869190613220565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612c1e565b61187d565b005b3480156107c457600080fd5b506107cd611975565b6040516107da919061335d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd8261197b565b5b9050919050565b6060600280546108d49061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546109009061362d565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610962826119e5565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109de82610e43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611a33565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a975750610a9581610a90611a33565b6117e9565b155b15610ace576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad9838383611a3b565b505050565b6000610ae8611aed565b6001546000540303905090565b610b00838383611af6565b505050565b600e5481565b610b13611a33565b73ffffffffffffffffffffffffffffffffffffffff16610b31611059565b73ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e906132bd565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bbb611a33565b73ffffffffffffffffffffffffffffffffffffffff16610bd9611059565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c26906132bd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c55906131a4565b60006040518083038185875af1925050503d8060008114610c92576040519150601f19603f3d011682016040523d82523d6000602084013e610c97565b606091505b5050905080610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd29061331d565b60405180910390fd5b50565b610cf983838360405180602001604052806000815250611689565b505050565b610d06611a33565b73ffffffffffffffffffffffffffffffffffffffff16610d24611059565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906132bd565b60405180910390fd5b80600a9080519060200190610d909291906129ef565b5050565b601160019054906101000a900460ff1681565b610daf611a33565b73ffffffffffffffffffffffffffffffffffffffff16610dcd611059565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906132bd565b60405180910390fd5b8060099080519060200190610e399291906129ef565b5050565b60105481565b6000610e4e82611fac565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f31611a33565b73ffffffffffffffffffffffffffffffffffffffff16610f4f611059565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906132bd565b60405180910390fd5b610faf600061223b565b565b610fb9611a33565b73ffffffffffffffffffffffffffffffffffffffff16610fd7611059565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906132bd565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61108b611a33565b73ffffffffffffffffffffffffffffffffffffffff166110a9611059565b73ffffffffffffffffffffffffffffffffffffffff16146110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906132bd565b60405180910390fd5b80600b8190555050565b611111611a33565b73ffffffffffffffffffffffffffffffffffffffff1661112f611059565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c906132bd565b60405180910390fd5b80600e8190555050565b60606003805461119e9061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546111ca9061362d565b80156112175780601f106111ec57610100808354040283529160200191611217565b820191906000526020600020905b8154815290600101906020018083116111fa57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461123f9190613462565b83611248610ade565b6112529190613462565b1080156112ab5750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112a89190613462565b11155b905080156112bc57600091506113f8565b600b54836112ca91906134e9565b34101561130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906132fd565b60405180910390fd5b600f5483611318610ade565b6113229190613462565b1115611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061327d565b60405180910390fd5b601160009054906101000a900460ff166113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a99061325d565b60405180910390fd5b600c548311156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee9061333d565b60405180910390fd5b5b80156114555782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144d9190613462565b925050819055505b61145f3384612301565b82601060008282546114719190613462565b92505081905550505050565b611485611a33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f7611a33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a4611a33565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e99190613220565b60405180910390a35050565b600a80546116029061362d565b80601f016020809104026020016040519081016040528092919081815260200182805461162e9061362d565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b505050505081565b600d5481565b611694848484611af6565b6116b38373ffffffffffffffffffffffffffffffffffffffff1661231f565b80156116c857506116c684848484612342565b155b156116ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061171a826119e5565b611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906132dd565b60405180910390fd5b60001515601160019054906101000a900460ff161515141561179d57600a604051602001611787919061315e565b60405160208183030381529060405290506117cb565b60096117a8836124a2565b6040516020016117b9929190613175565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611885611a33565b73ffffffffffffffffffffffffffffffffffffffff166118a3611059565b73ffffffffffffffffffffffffffffffffffffffff16146118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906132bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119609061329d565b60405180910390fd5b6119728161223b565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119f0611aed565b111580156119ff575060005482105b8015611a2c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0182611fac565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b8d611a33565b73ffffffffffffffffffffffffffffffffffffffff161480611bbc5750611bbb85611bb6611a33565b6117e9565b5b80611c015750611bca611a33565b73ffffffffffffffffffffffffffffffffffffffff16611be984610957565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c3a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ca1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cae8585856001612603565b611cba60008487611a3b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f3a576000548214611f3957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fa58585856001612609565b5050505050565b611fb4612a75565b600082905080611fc2611aed565b11158015611fd1575060005481105b15612204576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161220257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e6578092505050612236565b5b60011561220157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121fc578092505050612236565b6120e7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231b82826040518060200160405280600081525061260f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612368611a33565b8786866040518563ffffffff1660e01b815260040161238a94939291906131d4565b602060405180830381600087803b1580156123a457600080fd5b505af19250505080156123d557506040513d601f19601f820116820180604052508101906123d29190612e0e565b60015b61244f573d8060008114612405576040519150601f19603f3d011682016040523d82523d6000602084013e61240a565b606091505b50600081511415612447576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125fe565b600082905060005b6000821461251c57808061250590613690565b915050600a8261251591906134b8565b91506124f2565b60008167ffffffffffffffff811115612538576125376137c6565b5b6040519080825280601f01601f19166020018201604052801561256a5781602001600182028036833780820191505090505b5090505b600085146125f7576001826125839190613543565b9150600a8561259291906136d9565b603061259e9190613462565b60f81b8183815181106125b4576125b3613797565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f091906134b8565b945061256e565b8093505050505b919050565b50505050565b50505050565b61261c8383836001612621565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156126c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126d66000868387612603565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128a0575061289f8773ffffffffffffffffffffffffffffffffffffffff1661231f565b5b15612966575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129156000888480600101955088612342565b61294b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128a657826000541461296157600080fd5b6129d2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612967575b8160008190555050506129e86000868387612609565b5050505050565b8280546129fb9061362d565b90600052602060002090601f016020900481019282612a1d5760008555612a64565b82601f10612a3657805160ff1916838001178555612a64565b82800160010185558215612a64579182015b82811115612a63578251825591602001919060010190612a48565b5b509050612a719190612ab8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ad1576000816000905550600101612ab9565b5090565b6000612ae8612ae38461339d565b613378565b905082815260208101848484011115612b0457612b036137fa565b5b612b0f8482856135eb565b509392505050565b6000612b2a612b25846133ce565b613378565b905082815260208101848484011115612b4657612b456137fa565b5b612b518482856135eb565b509392505050565b600081359050612b68816139da565b92915050565b600081359050612b7d816139f1565b92915050565b600081359050612b9281613a08565b92915050565b600081519050612ba781613a08565b92915050565b600082601f830112612bc257612bc16137f5565b5b8135612bd2848260208601612ad5565b91505092915050565b600082601f830112612bf057612bef6137f5565b5b8135612c00848260208601612b17565b91505092915050565b600081359050612c1881613a1f565b92915050565b600060208284031215612c3457612c33613804565b5b6000612c4284828501612b59565b91505092915050565b60008060408385031215612c6257612c61613804565b5b6000612c7085828601612b59565b9250506020612c8185828601612b59565b9150509250929050565b600080600060608486031215612ca457612ca3613804565b5b6000612cb286828701612b59565b9350506020612cc386828701612b59565b9250506040612cd486828701612c09565b9150509250925092565b60008060008060808587031215612cf857612cf7613804565b5b6000612d0687828801612b59565b9450506020612d1787828801612b59565b9350506040612d2887828801612c09565b925050606085013567ffffffffffffffff811115612d4957612d486137ff565b5b612d5587828801612bad565b91505092959194509250565b60008060408385031215612d7857612d77613804565b5b6000612d8685828601612b59565b9250506020612d9785828601612b6e565b9150509250929050565b60008060408385031215612db857612db7613804565b5b6000612dc685828601612b59565b9250506020612dd785828601612c09565b9150509250929050565b600060208284031215612df757612df6613804565b5b6000612e0584828501612b83565b91505092915050565b600060208284031215612e2457612e23613804565b5b6000612e3284828501612b98565b91505092915050565b600060208284031215612e5157612e50613804565b5b600082013567ffffffffffffffff811115612e6f57612e6e6137ff565b5b612e7b84828501612bdb565b91505092915050565b600060208284031215612e9a57612e99613804565b5b6000612ea884828501612c09565b91505092915050565b612eba81613577565b82525050565b612ec981613589565b82525050565b6000612eda82613414565b612ee4818561342a565b9350612ef48185602086016135fa565b612efd81613809565b840191505092915050565b6000612f138261341f565b612f1d8185613446565b9350612f2d8185602086016135fa565b612f3681613809565b840191505092915050565b6000612f4c8261341f565b612f568185613457565b9350612f668185602086016135fa565b80840191505092915050565b60008154612f7f8161362d565b612f898186613457565b94506001821660008114612fa45760018114612fb557612fe8565b60ff19831686528186019350612fe8565b612fbe856133ff565b60005b83811015612fe057815481890152600182019150602081019050612fc1565b838801955050505b50505092915050565b6000612ffe601783613446565b91506130098261381a565b602082019050919050565b6000613021600f83613446565b915061302c82613843565b602082019050919050565b6000613044602683613446565b915061304f8261386c565b604082019050919050565b6000613067600583613457565b9150613072826138bb565b600582019050919050565b600061308a602083613446565b9150613095826138e4565b602082019050919050565b60006130ad602f83613446565b91506130b88261390d565b604082019050919050565b60006130d0601d83613446565b91506130db8261395c565b602082019050919050565b60006130f360008361343b565b91506130fe82613985565b600082019050919050565b6000613116601083613446565b915061312182613988565b602082019050919050565b6000613139601383613446565b9150613144826139b1565b602082019050919050565b613158816135e1565b82525050565b600061316a8284612f72565b915081905092915050565b60006131818285612f72565b915061318d8284612f41565b91506131988261305a565b91508190509392505050565b60006131af826130e6565b9150819050919050565b60006020820190506131ce6000830184612eb1565b92915050565b60006080820190506131e96000830187612eb1565b6131f66020830186612eb1565b613203604083018561314f565b81810360608301526132158184612ecf565b905095945050505050565b60006020820190506132356000830184612ec0565b92915050565b600060208201905081810360008301526132558184612f08565b905092915050565b6000602082019050818103600083015261327681612ff1565b9050919050565b6000602082019050818103600083015261329681613014565b9050919050565b600060208201905081810360008301526132b681613037565b9050919050565b600060208201905081810360008301526132d68161307d565b9050919050565b600060208201905081810360008301526132f6816130a0565b9050919050565b60006020820190508181036000830152613316816130c3565b9050919050565b6000602082019050818103600083015261333681613109565b9050919050565b600060208201905081810360008301526133568161312c565b9050919050565b6000602082019050613372600083018461314f565b92915050565b6000613382613393565b905061338e828261365f565b919050565b6000604051905090565b600067ffffffffffffffff8211156133b8576133b76137c6565b5b6133c182613809565b9050602081019050919050565b600067ffffffffffffffff8211156133e9576133e86137c6565b5b6133f282613809565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061346d826135e1565b9150613478836135e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134ad576134ac61370a565b5b828201905092915050565b60006134c3826135e1565b91506134ce836135e1565b9250826134de576134dd613739565b5b828204905092915050565b60006134f4826135e1565b91506134ff836135e1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135385761353761370a565b5b828202905092915050565b600061354e826135e1565b9150613559836135e1565b92508282101561356c5761356b61370a565b5b828203905092915050565b6000613582826135c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136185780820151818401526020810190506135fd565b83811115613627576000848401525b50505050565b6000600282049050600182168061364557607f821691505b6020821081141561365957613658613768565b5b50919050565b61366882613809565b810181811067ffffffffffffffff82111715613687576136866137c6565b5b80604052505050565b600061369b826135e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ce576136cd61370a565b5b600182019050919050565b60006136e4826135e1565b91506136ef836135e1565b9250826136ff576136fe613739565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f7265204d656f7765727a0000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6139e381613577565b81146139ee57600080fd5b50565b6139fa81613589565b8114613a0557600080fd5b50565b613a1181613595565b8114613a1c57600080fd5b50565b613a28816135e1565b8114613a3357600080fd5b5056fea2646970667358221220480ddb75fd4c8835ee4509fb59e1681dd4a04fb130cc0a724ade41933855bf3864736f6c63430008070033697066733a2f2f516d65674b4d4841513369417a4d4a714c366d48766b4569556839476f73747836764e764b3378466f583441384c697066733a2f2f516d584267357069705367335a5558363573644e55787a574b4665657232693335746e35676761436f52317650532f

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637ba5e62111610118578063a7027357116100a0578063d12397301161006f578063d1239730146106fc578063d5abeb0114610727578063e985e9c514610752578063f2fde38b1461078f578063f968adbe146107b857610204565b8063a702735714610640578063b88d4fde1461066b578063bc96832614610694578063c87b56dd146106bf57610204565b806395d89b41116100e757806395d89b411461057a578063a035b1fe146105a5578063a0712d68146105d0578063a22cb465146105ec578063a45ba8e71461061557610204565b80637ba5e621146104e65780638da5cb5b146104fd57806391b7f5ed1461052857806392910eec1461055157610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461040157806361b8ce8c1461042a5780636352211e1461045557806370a0823114610492578063715018a6146104cf57610204565b80633ccfd60b1461036d57806342842e0e146103845780634fdd43cb146103ad57806351830227146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd14610302578063333e44e61461032b5780633bd649681461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612de1565b6107e3565b60405161023d9190613220565b60405180910390f35b34801561025257600080fd5b5061025b6108c5565b604051610268919061323b565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e84565b610957565b6040516102a591906131b9565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612da1565b6109d3565b005b3480156102e357600080fd5b506102ec610ade565b6040516102f9919061335d565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612c8b565b610af5565b005b34801561033757600080fd5b50610340610b05565b60405161034d919061335d565b60405180910390f35b34801561036257600080fd5b5061036b610b0b565b005b34801561037957600080fd5b50610382610bb3565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612c8b565b610cde565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612e3b565b610cfe565b005b3480156103e257600080fd5b506103eb610d94565b6040516103f89190613220565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612e3b565b610da7565b005b34801561043657600080fd5b5061043f610e3d565b60405161044c919061335d565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612e84565b610e43565b60405161048991906131b9565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612c1e565b610e59565b6040516104c6919061335d565b60405180910390f35b3480156104db57600080fd5b506104e4610f29565b005b3480156104f257600080fd5b506104fb610fb1565b005b34801561050957600080fd5b50610512611059565b60405161051f91906131b9565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612e84565b611083565b005b34801561055d57600080fd5b5061057860048036038101906105739190612e84565b611109565b005b34801561058657600080fd5b5061058f61118f565b60405161059c919061323b565b60405180910390f35b3480156105b157600080fd5b506105ba611221565b6040516105c7919061335d565b60405180910390f35b6105ea60048036038101906105e59190612e84565b611227565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612d61565b61147d565b005b34801561062157600080fd5b5061062a6115f5565b604051610637919061323b565b60405180910390f35b34801561064c57600080fd5b50610655611683565b604051610662919061335d565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612cde565b611689565b005b3480156106a057600080fd5b506106a9611705565b6040516106b6919061335d565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612e84565b61170f565b6040516106f3919061323b565b60405180910390f35b34801561070857600080fd5b506107116117d0565b60405161071e9190613220565b60405180910390f35b34801561073357600080fd5b5061073c6117e3565b604051610749919061335d565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612c4b565b6117e9565b6040516107869190613220565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612c1e565b61187d565b005b3480156107c457600080fd5b506107cd611975565b6040516107da919061335d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd8261197b565b5b9050919050565b6060600280546108d49061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546109009061362d565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610962826119e5565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109de82610e43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611a33565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a975750610a9581610a90611a33565b6117e9565b155b15610ace576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad9838383611a3b565b505050565b6000610ae8611aed565b6001546000540303905090565b610b00838383611af6565b505050565b600e5481565b610b13611a33565b73ffffffffffffffffffffffffffffffffffffffff16610b31611059565b73ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e906132bd565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bbb611a33565b73ffffffffffffffffffffffffffffffffffffffff16610bd9611059565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c26906132bd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c55906131a4565b60006040518083038185875af1925050503d8060008114610c92576040519150601f19603f3d011682016040523d82523d6000602084013e610c97565b606091505b5050905080610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd29061331d565b60405180910390fd5b50565b610cf983838360405180602001604052806000815250611689565b505050565b610d06611a33565b73ffffffffffffffffffffffffffffffffffffffff16610d24611059565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906132bd565b60405180910390fd5b80600a9080519060200190610d909291906129ef565b5050565b601160019054906101000a900460ff1681565b610daf611a33565b73ffffffffffffffffffffffffffffffffffffffff16610dcd611059565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906132bd565b60405180910390fd5b8060099080519060200190610e399291906129ef565b5050565b60105481565b6000610e4e82611fac565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f31611a33565b73ffffffffffffffffffffffffffffffffffffffff16610f4f611059565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906132bd565b60405180910390fd5b610faf600061223b565b565b610fb9611a33565b73ffffffffffffffffffffffffffffffffffffffff16610fd7611059565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906132bd565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61108b611a33565b73ffffffffffffffffffffffffffffffffffffffff166110a9611059565b73ffffffffffffffffffffffffffffffffffffffff16146110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906132bd565b60405180910390fd5b80600b8190555050565b611111611a33565b73ffffffffffffffffffffffffffffffffffffffff1661112f611059565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c906132bd565b60405180910390fd5b80600e8190555050565b60606003805461119e9061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546111ca9061362d565b80156112175780601f106111ec57610100808354040283529160200191611217565b820191906000526020600020905b8154815290600101906020018083116111fa57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461123f9190613462565b83611248610ade565b6112529190613462565b1080156112ab5750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112a89190613462565b11155b905080156112bc57600091506113f8565b600b54836112ca91906134e9565b34101561130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906132fd565b60405180910390fd5b600f5483611318610ade565b6113229190613462565b1115611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061327d565b60405180910390fd5b601160009054906101000a900460ff166113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a99061325d565b60405180910390fd5b600c548311156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee9061333d565b60405180910390fd5b5b80156114555782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144d9190613462565b925050819055505b61145f3384612301565b82601060008282546114719190613462565b92505081905550505050565b611485611a33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f7611a33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a4611a33565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e99190613220565b60405180910390a35050565b600a80546116029061362d565b80601f016020809104026020016040519081016040528092919081815260200182805461162e9061362d565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b505050505081565b600d5481565b611694848484611af6565b6116b38373ffffffffffffffffffffffffffffffffffffffff1661231f565b80156116c857506116c684848484612342565b155b156116ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061171a826119e5565b611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906132dd565b60405180910390fd5b60001515601160019054906101000a900460ff161515141561179d57600a604051602001611787919061315e565b60405160208183030381529060405290506117cb565b60096117a8836124a2565b6040516020016117b9929190613175565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611885611a33565b73ffffffffffffffffffffffffffffffffffffffff166118a3611059565b73ffffffffffffffffffffffffffffffffffffffff16146118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906132bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119609061329d565b60405180910390fd5b6119728161223b565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119f0611aed565b111580156119ff575060005482105b8015611a2c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0182611fac565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b8d611a33565b73ffffffffffffffffffffffffffffffffffffffff161480611bbc5750611bbb85611bb6611a33565b6117e9565b5b80611c015750611bca611a33565b73ffffffffffffffffffffffffffffffffffffffff16611be984610957565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c3a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ca1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cae8585856001612603565b611cba60008487611a3b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f3a576000548214611f3957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fa58585856001612609565b5050505050565b611fb4612a75565b600082905080611fc2611aed565b11158015611fd1575060005481105b15612204576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161220257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e6578092505050612236565b5b60011561220157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121fc578092505050612236565b6120e7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231b82826040518060200160405280600081525061260f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612368611a33565b8786866040518563ffffffff1660e01b815260040161238a94939291906131d4565b602060405180830381600087803b1580156123a457600080fd5b505af19250505080156123d557506040513d601f19601f820116820180604052508101906123d29190612e0e565b60015b61244f573d8060008114612405576040519150601f19603f3d011682016040523d82523d6000602084013e61240a565b606091505b50600081511415612447576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125fe565b600082905060005b6000821461251c57808061250590613690565b915050600a8261251591906134b8565b91506124f2565b60008167ffffffffffffffff811115612538576125376137c6565b5b6040519080825280601f01601f19166020018201604052801561256a5781602001600182028036833780820191505090505b5090505b600085146125f7576001826125839190613543565b9150600a8561259291906136d9565b603061259e9190613462565b60f81b8183815181106125b4576125b3613797565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f091906134b8565b945061256e565b8093505050505b919050565b50505050565b50505050565b61261c8383836001612621565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156126c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126d66000868387612603565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128a0575061289f8773ffffffffffffffffffffffffffffffffffffffff1661231f565b5b15612966575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129156000888480600101955088612342565b61294b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128a657826000541461296157600080fd5b6129d2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612967575b8160008190555050506129e86000868387612609565b5050505050565b8280546129fb9061362d565b90600052602060002090601f016020900481019282612a1d5760008555612a64565b82601f10612a3657805160ff1916838001178555612a64565b82800160010185558215612a64579182015b82811115612a63578251825591602001919060010190612a48565b5b509050612a719190612ab8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ad1576000816000905550600101612ab9565b5090565b6000612ae8612ae38461339d565b613378565b905082815260208101848484011115612b0457612b036137fa565b5b612b0f8482856135eb565b509392505050565b6000612b2a612b25846133ce565b613378565b905082815260208101848484011115612b4657612b456137fa565b5b612b518482856135eb565b509392505050565b600081359050612b68816139da565b92915050565b600081359050612b7d816139f1565b92915050565b600081359050612b9281613a08565b92915050565b600081519050612ba781613a08565b92915050565b600082601f830112612bc257612bc16137f5565b5b8135612bd2848260208601612ad5565b91505092915050565b600082601f830112612bf057612bef6137f5565b5b8135612c00848260208601612b17565b91505092915050565b600081359050612c1881613a1f565b92915050565b600060208284031215612c3457612c33613804565b5b6000612c4284828501612b59565b91505092915050565b60008060408385031215612c6257612c61613804565b5b6000612c7085828601612b59565b9250506020612c8185828601612b59565b9150509250929050565b600080600060608486031215612ca457612ca3613804565b5b6000612cb286828701612b59565b9350506020612cc386828701612b59565b9250506040612cd486828701612c09565b9150509250925092565b60008060008060808587031215612cf857612cf7613804565b5b6000612d0687828801612b59565b9450506020612d1787828801612b59565b9350506040612d2887828801612c09565b925050606085013567ffffffffffffffff811115612d4957612d486137ff565b5b612d5587828801612bad565b91505092959194509250565b60008060408385031215612d7857612d77613804565b5b6000612d8685828601612b59565b9250506020612d9785828601612b6e565b9150509250929050565b60008060408385031215612db857612db7613804565b5b6000612dc685828601612b59565b9250506020612dd785828601612c09565b9150509250929050565b600060208284031215612df757612df6613804565b5b6000612e0584828501612b83565b91505092915050565b600060208284031215612e2457612e23613804565b5b6000612e3284828501612b98565b91505092915050565b600060208284031215612e5157612e50613804565b5b600082013567ffffffffffffffff811115612e6f57612e6e6137ff565b5b612e7b84828501612bdb565b91505092915050565b600060208284031215612e9a57612e99613804565b5b6000612ea884828501612c09565b91505092915050565b612eba81613577565b82525050565b612ec981613589565b82525050565b6000612eda82613414565b612ee4818561342a565b9350612ef48185602086016135fa565b612efd81613809565b840191505092915050565b6000612f138261341f565b612f1d8185613446565b9350612f2d8185602086016135fa565b612f3681613809565b840191505092915050565b6000612f4c8261341f565b612f568185613457565b9350612f668185602086016135fa565b80840191505092915050565b60008154612f7f8161362d565b612f898186613457565b94506001821660008114612fa45760018114612fb557612fe8565b60ff19831686528186019350612fe8565b612fbe856133ff565b60005b83811015612fe057815481890152600182019150602081019050612fc1565b838801955050505b50505092915050565b6000612ffe601783613446565b91506130098261381a565b602082019050919050565b6000613021600f83613446565b915061302c82613843565b602082019050919050565b6000613044602683613446565b915061304f8261386c565b604082019050919050565b6000613067600583613457565b9150613072826138bb565b600582019050919050565b600061308a602083613446565b9150613095826138e4565b602082019050919050565b60006130ad602f83613446565b91506130b88261390d565b604082019050919050565b60006130d0601d83613446565b91506130db8261395c565b602082019050919050565b60006130f360008361343b565b91506130fe82613985565b600082019050919050565b6000613116601083613446565b915061312182613988565b602082019050919050565b6000613139601383613446565b9150613144826139b1565b602082019050919050565b613158816135e1565b82525050565b600061316a8284612f72565b915081905092915050565b60006131818285612f72565b915061318d8284612f41565b91506131988261305a565b91508190509392505050565b60006131af826130e6565b9150819050919050565b60006020820190506131ce6000830184612eb1565b92915050565b60006080820190506131e96000830187612eb1565b6131f66020830186612eb1565b613203604083018561314f565b81810360608301526132158184612ecf565b905095945050505050565b60006020820190506132356000830184612ec0565b92915050565b600060208201905081810360008301526132558184612f08565b905092915050565b6000602082019050818103600083015261327681612ff1565b9050919050565b6000602082019050818103600083015261329681613014565b9050919050565b600060208201905081810360008301526132b681613037565b9050919050565b600060208201905081810360008301526132d68161307d565b9050919050565b600060208201905081810360008301526132f6816130a0565b9050919050565b60006020820190508181036000830152613316816130c3565b9050919050565b6000602082019050818103600083015261333681613109565b9050919050565b600060208201905081810360008301526133568161312c565b9050919050565b6000602082019050613372600083018461314f565b92915050565b6000613382613393565b905061338e828261365f565b919050565b6000604051905090565b600067ffffffffffffffff8211156133b8576133b76137c6565b5b6133c182613809565b9050602081019050919050565b600067ffffffffffffffff8211156133e9576133e86137c6565b5b6133f282613809565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061346d826135e1565b9150613478836135e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134ad576134ac61370a565b5b828201905092915050565b60006134c3826135e1565b91506134ce836135e1565b9250826134de576134dd613739565b5b828204905092915050565b60006134f4826135e1565b91506134ff836135e1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135385761353761370a565b5b828202905092915050565b600061354e826135e1565b9150613559836135e1565b92508282101561356c5761356b61370a565b5b828203905092915050565b6000613582826135c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136185780820151818401526020810190506135fd565b83811115613627576000848401525b50505050565b6000600282049050600182168061364557607f821691505b6020821081141561365957613658613768565b5b50919050565b61366882613809565b810181811067ffffffffffffffff82111715613687576136866137c6565b5b80604052505050565b600061369b826135e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ce576136cd61370a565b5b600182019050919050565b60006136e4826135e1565b91506136ef836135e1565b9250826136ff576136fe613739565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f7265204d656f7765727a0000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6139e381613577565b81146139ee57600080fd5b50565b6139fa81613589565b8114613a0557600080fd5b50565b613a1181613595565b8114613a1c57600080fd5b50565b613a28816135e1565b8114613a3357600080fd5b5056fea2646970667358221220480ddb75fd4c8835ee4509fb59e1681dd4a04fb130cc0a724ade41933855bf3864736f6c63430008070033

Deployed Bytecode Sourcemap

69192:3056:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51374:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54487:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55990:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55553:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50623:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56855:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69464:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71677:78;;;;;;;;;;;;;:::i;:::-;;72039:206;;;;;;;;;;;;;:::i;:::-;;57096:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71331:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69615:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71235:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69544:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54295:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51743:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6372:103;;;;;;;;;;;;;:::i;:::-;;71763:84;;;;;;;;;;;;;:::i;:::-;;5721:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71577:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71474:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54656:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69341:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69938:700;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56266:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69301:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69420:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57352:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71855:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70762:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69575:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69504;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56624:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6630:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69384:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51374:305;51476:4;51528:25;51513:40;;;:11;:40;;;;:105;;;;51585:33;51570:48;;;:11;:48;;;;51513:105;:158;;;;51635:36;51659:11;51635:23;:36::i;:::-;51513:158;51493:178;;51374:305;;;:::o;54487:100::-;54541:13;54574:5;54567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54487:100;:::o;55990:204::-;56058:7;56083:16;56091:7;56083;:16::i;:::-;56078:64;;56108:34;;;;;;;;;;;;;;56078:64;56162:15;:24;56178:7;56162:24;;;;;;;;;;;;;;;;;;;;;56155:31;;55990:204;;;:::o;55553:371::-;55626:13;55642:24;55658:7;55642:15;:24::i;:::-;55626:40;;55687:5;55681:11;;:2;:11;;;55677:48;;;55701:24;;;;;;;;;;;;;;55677:48;55758:5;55742:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;55768:37;55785:5;55792:12;:10;:12::i;:::-;55768:16;:37::i;:::-;55767:38;55742:63;55738:138;;;55829:35;;;;;;;;;;;;;;55738:138;55888:28;55897:2;55901:7;55910:5;55888:8;:28::i;:::-;55615:309;55553:371;;:::o;50623:303::-;50667:7;50892:15;:13;:15::i;:::-;50877:12;;50861:13;;:28;:46;50854:53;;50623:303;:::o;56855:170::-;56989:28;56999:4;57005:2;57009:7;56989:9;:28::i;:::-;56855:170;;;:::o;69464:31::-;;;;:::o;71677:78::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71739:8:::1;;;;;;;;;;;71738:9;71727:8;;:20;;;;;;;;;;;;;;;;;;71677:78::o:0;72039:206::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72090:12:::1;72116:10;72108:24;;72154:21;72108:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72089:101;;;72209:7;72201:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;72078:167;72039:206::o:0;57096:185::-;57234:39;57251:4;57257:2;57261:7;57234:39;;;;;;;;;;;;:16;:39::i;:::-;57096:185;;;:::o;71331:135::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71440:18:::1;71420:17;:38;;;;;;;;;;;;:::i;:::-;;71331:135:::0;:::o;69615:28::-;;;;;;;;;;;;;:::o;71235:88::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71312:3:::1;71302:7;:13;;;;;;;;;;;;:::i;:::-;;71235:88:::0;:::o;69544:22::-;;;;:::o;54295:125::-;54359:7;54386:21;54399:7;54386:12;:21::i;:::-;:26;;;54379:33;;54295:125;;;:::o;51743:206::-;51807:7;51848:1;51831:19;;:5;:19;;;51827:60;;;51859:28;;;;;;;;;;;;;;51827:60;51913:12;:19;51926:5;51913:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;51905:36;;51898:43;;51743:206;;;:::o;6372:103::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6437:30:::1;6464:1;6437:18;:30::i;:::-;6372:103::o:0;71763:84::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71828:11:::1;;;;;;;;;;;71827:12;71813:11;;:26;;;;;;;;;;;;;;;;;;71763:84::o:0;5721:87::-;5767:7;5794:6;;;;;;;;;;;5787:13;;5721:87;:::o;71577:92::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71652:9:::1;71644:5;:17;;;;71577:92:::0;:::o;71474:95::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71555:6:::1;71543:9;:18;;;;71474:95:::0;:::o;54656:104::-;54712:13;54745:7;54738:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54656:104;:::o;69341:34::-;;;;:::o;69938:700::-;69993:12;70008:5;;69993:20;;70022:11;70081:1;70069:9;;:13;;;;:::i;:::-;70061:5;70045:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;70044:109;;;;;70136:16;;70127:5;70095:17;:29;70113:10;70095:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;70044:109;70022:132;;70169:6;70165:323;;;70193:1;70186:8;;70165:323;;;70255:5;;70247;:13;;;;:::i;:::-;70234:9;:26;;70226:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70336:9;;70327:5;70311:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;70303:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;70382:11;;;;;;;;;;;70374:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;70447:8;;70438:5;:17;;70430:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;70165:323;70502:6;70498:72;;;70555:5;70522:17;:29;70540:10;70522:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;70498:72;70579:28;70589:10;70601:5;70579:9;:28::i;:::-;70625:5;70615:6;;:15;;;;;;;:::i;:::-;;;;;;;;69984:654;;69938:700;:::o;56266:287::-;56377:12;:10;:12::i;:::-;56365:24;;:8;:24;;;56361:54;;;56398:17;;;;;;;;;;;;;;56361:54;56473:8;56428:18;:32;56447:12;:10;:12::i;:::-;56428:32;;;;;;;;;;;;;;;:42;56461:8;56428:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;56526:8;56497:48;;56512:12;:10;:12::i;:::-;56497:48;;;56536:8;56497:48;;;;;;:::i;:::-;;;;;;;;56266:287;;:::o;69301:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69420:35::-;;;;:::o;57352:369::-;57519:28;57529:4;57535:2;57539:7;57519:9;:28::i;:::-;57562:15;:2;:13;;;:15::i;:::-;:76;;;;;57582:56;57613:4;57619:2;57623:7;57632:5;57582:30;:56::i;:::-;57581:57;57562:76;57558:156;;;57662:40;;;;;;;;;;;;;;57558:156;57352:369;;;;:::o;71855:75::-;71896:4;71916:6;;71909:13;;71855:75;:::o;70762:465::-;70880:13;70933:16;70941:7;70933;:16::i;:::-;70911:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;71053:5;71041:17;;:8;;;;;;;;;;;:17;;;71037:97;;;71103:17;71086:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;71072:50;;;;71037:97;71181:7;71190:18;:7;:16;:18::i;:::-;71164:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71150:69;;70762:465;;;;:::o;69575:31::-;;;;;;;;;;;;;:::o;69504:::-;;;;:::o;56624:164::-;56721:4;56745:18;:25;56764:5;56745:25;;;;;;;;;;;;;;;:35;56771:8;56745:35;;;;;;;;;;;;;;;;;;;;;;;;;56738:42;;56624:164;;;;:::o;6630:201::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6739:1:::1;6719:22;;:8;:22;;;;6711:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6795:28;6814:8;6795:18;:28::i;:::-;6630:201:::0;:::o;69384:27::-;;;;:::o;18505:157::-;18590:4;18629:25;18614:40;;;:11;:40;;;;18607:47;;18505:157;;;:::o;57976:174::-;58033:4;58076:7;58057:15;:13;:15::i;:::-;:26;;:53;;;;;58097:13;;58087:7;:23;58057:53;:85;;;;;58115:11;:20;58127:7;58115:20;;;;;;;;;;;:27;;;;;;;;;;;;58114:28;58057:85;58050:92;;57976:174;;;:::o;4445:98::-;4498:7;4525:10;4518:17;;4445:98;:::o;66133:196::-;66275:2;66248:15;:24;66264:7;66248:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;66313:7;66309:2;66293:28;;66302:5;66293:28;;;;;;;;;;;;66133:196;;;:::o;71938:93::-;71995:7;72022:1;72015:8;;71938:93;:::o;61076:2130::-;61191:35;61229:21;61242:7;61229:12;:21::i;:::-;61191:59;;61289:4;61267:26;;:13;:18;;;:26;;;61263:67;;61302:28;;;;;;;;;;;;;;61263:67;61343:22;61385:4;61369:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;61406:36;61423:4;61429:12;:10;:12::i;:::-;61406:16;:36::i;:::-;61369:73;:126;;;;61483:12;:10;:12::i;:::-;61459:36;;:20;61471:7;61459:11;:20::i;:::-;:36;;;61369:126;61343:153;;61514:17;61509:66;;61540:35;;;;;;;;;;;;;;61509:66;61604:1;61590:16;;:2;:16;;;61586:52;;;61615:23;;;;;;;;;;;;;;61586:52;61651:43;61673:4;61679:2;61683:7;61692:1;61651:21;:43::i;:::-;61759:35;61776:1;61780:7;61789:4;61759:8;:35::i;:::-;62120:1;62090:12;:18;62103:4;62090:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62164:1;62136:12;:16;62149:2;62136:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62182:31;62216:11;:20;62228:7;62216:20;;;;;;;;;;;62182:54;;62267:2;62251:8;:13;;;:18;;;;;;;;;;;;;;;;;;62317:15;62284:8;:23;;;:49;;;;;;;;;;;;;;;;;;62585:19;62617:1;62607:7;:11;62585:33;;62633:31;62667:11;:24;62679:11;62667:24;;;;;;;;;;;62633:58;;62735:1;62710:27;;:8;:13;;;;;;;;;;;;:27;;;62706:384;;;62920:13;;62905:11;:28;62901:174;;62974:4;62958:8;:13;;;:20;;;;;;;;;;;;;;;;;;63027:13;:28;;;63001:8;:23;;;:54;;;;;;;;;;;;;;;;;;62901:174;62706:384;62065:1036;;;63137:7;63133:2;63118:27;;63127:4;63118:27;;;;;;;;;;;;63156:42;63177:4;63183:2;63187:7;63196:1;63156:20;:42::i;:::-;61180:2026;;61076:2130;;;:::o;53124:1109::-;53186:21;;:::i;:::-;53220:12;53235:7;53220:22;;53303:4;53284:15;:13;:15::i;:::-;:23;;:47;;;;;53318:13;;53311:4;:20;53284:47;53280:886;;;53352:31;53386:11;:17;53398:4;53386:17;;;;;;;;;;;53352:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53427:9;:16;;;53422:729;;53498:1;53472:28;;:9;:14;;;:28;;;53468:101;;53536:9;53529:16;;;;;;53468:101;53871:261;53878:4;53871:261;;;53911:6;;;;;;;;53956:11;:17;53968:4;53956:17;;;;;;;;;;;53944:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54030:1;54004:28;;:9;:14;;;:28;;;54000:109;;54072:9;54065:16;;;;;;54000:109;53871:261;;;53422:729;53333:833;53280:886;54194:31;;;;;;;;;;;;;;53124:1109;;;;:::o;6991:191::-;7065:16;7084:6;;;;;;;;;;;7065:25;;7110:8;7101:6;;:17;;;;;;;;;;;;;;;;;;7165:8;7134:40;;7155:8;7134:40;;;;;;;;;;;;7054:128;6991:191;:::o;58158:104::-;58227:27;58237:2;58241:8;58227:27;;;;;;;;;;;;:9;:27::i;:::-;58158:104;;:::o;8422:326::-;8482:4;8739:1;8717:7;:19;;;:23;8710:30;;8422:326;;;:::o;66821:667::-;66984:4;67021:2;67005:36;;;67042:12;:10;:12::i;:::-;67056:4;67062:7;67071:5;67005:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67001:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67256:1;67239:6;:13;:18;67235:235;;;67285:40;;;;;;;;;;;;;;67235:235;67428:6;67422:13;67413:6;67409:2;67405:15;67398:38;67001:480;67134:45;;;67124:55;;;:6;:55;;;;67117:62;;;66821:667;;;;;;:::o;2007:723::-;2063:13;2293:1;2284:5;:10;2280:53;;;2311:10;;;;;;;;;;;;;;;;;;;;;2280:53;2343:12;2358:5;2343:20;;2374:14;2399:78;2414:1;2406:4;:9;2399:78;;2432:8;;;;;:::i;:::-;;;;2463:2;2455:10;;;;;:::i;:::-;;;2399:78;;;2487:19;2519:6;2509:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2487:39;;2537:154;2553:1;2544:5;:10;2537:154;;2581:1;2571:11;;;;;:::i;:::-;;;2648:2;2640:5;:10;;;;:::i;:::-;2627:2;:24;;;;:::i;:::-;2614:39;;2597:6;2604;2597:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2677:2;2668:11;;;;;:::i;:::-;;;2537:154;;;2715:6;2701:21;;;;;2007:723;;;;:::o;68136:159::-;;;;;:::o;68954:158::-;;;;;:::o;58625:163::-;58748:32;58754:2;58758:8;58768:5;58775:4;58748:5;:32::i;:::-;58625:163;;;:::o;59047:1775::-;59186:20;59209:13;;59186:36;;59251:1;59237:16;;:2;:16;;;59233:48;;;59262:19;;;;;;;;;;;;;;59233:48;59308:1;59296:8;:13;59292:44;;;59318:18;;;;;;;;;;;;;;59292:44;59349:61;59379:1;59383:2;59387:12;59401:8;59349:21;:61::i;:::-;59722:8;59687:12;:16;59700:2;59687:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59786:8;59746:12;:16;59759:2;59746:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59845:2;59812:11;:25;59824:12;59812:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;59912:15;59862:11;:25;59874:12;59862:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;59945:20;59968:12;59945:35;;59995:11;60024:8;60009:12;:23;59995:37;;60053:4;:23;;;;;60061:15;:2;:13;;;:15::i;:::-;60053:23;60049:641;;;60097:314;60153:12;60149:2;60128:38;;60145:1;60128:38;;;;;;;;;;;;60194:69;60233:1;60237:2;60241:14;;;;;;60257:5;60194:30;:69::i;:::-;60189:174;;60299:40;;;;;;;;;;;;;;60189:174;60406:3;60390:12;:19;;60097:314;;60492:12;60475:13;;:29;60471:43;;60506:8;;;60471:43;60049:641;;;60555:120;60611:14;;;;;;60607:2;60586:40;;60603:1;60586:40;;;;;;;;;;;;60670:3;60654:12;:19;;60555:120;;60049:641;60720:12;60704:13;:28;;;;59662:1082;;60754:60;60783:1;60787:2;60791:12;60805:8;60754:20;:60::i;:::-;59175:1647;59047:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:400::-;10667:3;10688:84;10770:1;10765:3;10688:84;:::i;:::-;10681:91;;10781:93;10870:3;10781:93;:::i;:::-;10899:1;10894:3;10890:11;10883:18;;10507:400;;;:::o;10913:366::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:398::-;12188:3;12209:83;12290:1;12285:3;12209:83;:::i;:::-;12202:90;;12301:93;12390:3;12301:93;:::i;:::-;12419:1;12414:3;12410:11;12403:18;;12029:398;;;:::o;12433:366::-;12575:3;12596:67;12660:2;12655:3;12596:67;:::i;:::-;12589:74;;12672:93;12761:3;12672:93;:::i;:::-;12790:2;12785:3;12781:12;12774:19;;12433:366;;;:::o;12805:::-;12947:3;12968:67;13032:2;13027:3;12968:67;:::i;:::-;12961:74;;13044:93;13133:3;13044:93;:::i;:::-;13162:2;13157:3;13153:12;13146:19;;12805:366;;;:::o;13177:118::-;13264:24;13282:5;13264:24;:::i;:::-;13259:3;13252:37;13177:118;;:::o;13301:269::-;13430:3;13452:92;13540:3;13531:6;13452:92;:::i;:::-;13445:99;;13561:3;13554:10;;13301:269;;;;:::o;13576:695::-;13854:3;13876:92;13964:3;13955:6;13876:92;:::i;:::-;13869:99;;13985:95;14076:3;14067:6;13985:95;:::i;:::-;13978:102;;14097:148;14241:3;14097:148;:::i;:::-;14090:155;;14262:3;14255:10;;13576:695;;;;;:::o;14277:379::-;14461:3;14483:147;14626:3;14483:147;:::i;:::-;14476:154;;14647:3;14640:10;;14277:379;;;:::o;14662:222::-;14755:4;14793:2;14782:9;14778:18;14770:26;;14806:71;14874:1;14863:9;14859:17;14850:6;14806:71;:::i;:::-;14662:222;;;;:::o;14890:640::-;15085:4;15123:3;15112:9;15108:19;15100:27;;15137:71;15205:1;15194:9;15190:17;15181:6;15137:71;:::i;:::-;15218:72;15286:2;15275:9;15271:18;15262:6;15218:72;:::i;:::-;15300;15368:2;15357:9;15353:18;15344:6;15300:72;:::i;:::-;15419:9;15413:4;15409:20;15404:2;15393:9;15389:18;15382:48;15447:76;15518:4;15509:6;15447:76;:::i;:::-;15439:84;;14890:640;;;;;;;:::o;15536:210::-;15623:4;15661:2;15650:9;15646:18;15638:26;;15674:65;15736:1;15725:9;15721:17;15712:6;15674:65;:::i;:::-;15536:210;;;;:::o;15752:313::-;15865:4;15903:2;15892:9;15888:18;15880:26;;15952:9;15946:4;15942:20;15938:1;15927:9;15923:17;15916:47;15980:78;16053:4;16044:6;15980:78;:::i;:::-;15972:86;;15752:313;;;;:::o;16071:419::-;16237:4;16275:2;16264:9;16260:18;16252:26;;16324:9;16318:4;16314:20;16310:1;16299:9;16295:17;16288:47;16352:131;16478:4;16352:131;:::i;:::-;16344:139;;16071:419;;;:::o;16496:::-;16662:4;16700:2;16689:9;16685:18;16677:26;;16749:9;16743:4;16739:20;16735:1;16724:9;16720:17;16713:47;16777:131;16903:4;16777:131;:::i;:::-;16769:139;;16496:419;;;:::o;16921:::-;17087:4;17125:2;17114:9;17110:18;17102:26;;17174:9;17168:4;17164:20;17160:1;17149:9;17145:17;17138:47;17202:131;17328:4;17202:131;:::i;:::-;17194:139;;16921:419;;;:::o;17346:::-;17512:4;17550:2;17539:9;17535:18;17527:26;;17599:9;17593:4;17589:20;17585:1;17574:9;17570:17;17563:47;17627:131;17753:4;17627:131;:::i;:::-;17619:139;;17346:419;;;:::o;17771:::-;17937:4;17975:2;17964:9;17960:18;17952:26;;18024:9;18018:4;18014:20;18010:1;17999:9;17995:17;17988:47;18052:131;18178:4;18052:131;:::i;:::-;18044:139;;17771:419;;;:::o;18196:::-;18362:4;18400:2;18389:9;18385:18;18377:26;;18449:9;18443:4;18439:20;18435:1;18424:9;18420:17;18413:47;18477:131;18603:4;18477:131;:::i;:::-;18469:139;;18196:419;;;:::o;18621:::-;18787:4;18825:2;18814:9;18810:18;18802:26;;18874:9;18868:4;18864:20;18860:1;18849:9;18845:17;18838:47;18902:131;19028:4;18902:131;:::i;:::-;18894:139;;18621:419;;;:::o;19046:::-;19212:4;19250:2;19239:9;19235:18;19227:26;;19299:9;19293:4;19289:20;19285:1;19274:9;19270:17;19263:47;19327:131;19453:4;19327:131;:::i;:::-;19319:139;;19046:419;;;:::o;19471:222::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19615:71;19683:1;19672:9;19668:17;19659:6;19615:71;:::i;:::-;19471:222;;;;:::o;19699:129::-;19733:6;19760:20;;:::i;:::-;19750:30;;19789:33;19817:4;19809:6;19789:33;:::i;:::-;19699:129;;;:::o;19834:75::-;19867:6;19900:2;19894:9;19884:19;;19834:75;:::o;19915:307::-;19976:4;20066:18;20058:6;20055:30;20052:56;;;20088:18;;:::i;:::-;20052:56;20126:29;20148:6;20126:29;:::i;:::-;20118:37;;20210:4;20204;20200:15;20192:23;;19915:307;;;:::o;20228:308::-;20290:4;20380:18;20372:6;20369:30;20366:56;;;20402:18;;:::i;:::-;20366:56;20440:29;20462:6;20440:29;:::i;:::-;20432:37;;20524:4;20518;20514:15;20506:23;;20228:308;;;:::o;20542:141::-;20591:4;20614:3;20606:11;;20637:3;20634:1;20627:14;20671:4;20668:1;20658:18;20650:26;;20542:141;;;:::o;20689:98::-;20740:6;20774:5;20768:12;20758:22;;20689:98;;;:::o;20793:99::-;20845:6;20879:5;20873:12;20863:22;;20793:99;;;:::o;20898:168::-;20981:11;21015:6;21010:3;21003:19;21055:4;21050:3;21046:14;21031:29;;20898:168;;;;:::o;21072:147::-;21173:11;21210:3;21195:18;;21072:147;;;;:::o;21225:169::-;21309:11;21343:6;21338:3;21331:19;21383:4;21378:3;21374:14;21359:29;;21225:169;;;;:::o;21400:148::-;21502:11;21539:3;21524:18;;21400:148;;;;:::o;21554:305::-;21594:3;21613:20;21631:1;21613:20;:::i;:::-;21608:25;;21647:20;21665:1;21647:20;:::i;:::-;21642:25;;21801:1;21733:66;21729:74;21726:1;21723:81;21720:107;;;21807:18;;:::i;:::-;21720:107;21851:1;21848;21844:9;21837:16;;21554:305;;;;:::o;21865:185::-;21905:1;21922:20;21940:1;21922:20;:::i;:::-;21917:25;;21956:20;21974:1;21956:20;:::i;:::-;21951:25;;21995:1;21985:35;;22000:18;;:::i;:::-;21985:35;22042:1;22039;22035:9;22030:14;;21865:185;;;;:::o;22056:348::-;22096:7;22119:20;22137:1;22119:20;:::i;:::-;22114:25;;22153:20;22171:1;22153:20;:::i;:::-;22148:25;;22341:1;22273:66;22269:74;22266:1;22263:81;22258:1;22251:9;22244:17;22240:105;22237:131;;;22348:18;;:::i;:::-;22237:131;22396:1;22393;22389:9;22378:20;;22056:348;;;;:::o;22410:191::-;22450:4;22470:20;22488:1;22470:20;:::i;:::-;22465:25;;22504:20;22522:1;22504:20;:::i;:::-;22499:25;;22543:1;22540;22537:8;22534:34;;;22548:18;;:::i;:::-;22534:34;22593:1;22590;22586:9;22578:17;;22410:191;;;;:::o;22607:96::-;22644:7;22673:24;22691:5;22673:24;:::i;:::-;22662:35;;22607:96;;;:::o;22709:90::-;22743:7;22786:5;22779:13;22772:21;22761:32;;22709:90;;;:::o;22805:149::-;22841:7;22881:66;22874:5;22870:78;22859:89;;22805:149;;;:::o;22960:126::-;22997:7;23037:42;23030:5;23026:54;23015:65;;22960:126;;;:::o;23092:77::-;23129:7;23158:5;23147:16;;23092:77;;;:::o;23175:154::-;23259:6;23254:3;23249;23236:30;23321:1;23312:6;23307:3;23303:16;23296:27;23175:154;;;:::o;23335:307::-;23403:1;23413:113;23427:6;23424:1;23421:13;23413:113;;;23512:1;23507:3;23503:11;23497:18;23493:1;23488:3;23484:11;23477:39;23449:2;23446:1;23442:10;23437:15;;23413:113;;;23544:6;23541:1;23538:13;23535:101;;;23624:1;23615:6;23610:3;23606:16;23599:27;23535:101;23384:258;23335:307;;;:::o;23648:320::-;23692:6;23729:1;23723:4;23719:12;23709:22;;23776:1;23770:4;23766:12;23797:18;23787:81;;23853:4;23845:6;23841:17;23831:27;;23787:81;23915:2;23907:6;23904:14;23884:18;23881:38;23878:84;;;23934:18;;:::i;:::-;23878:84;23699:269;23648:320;;;:::o;23974:281::-;24057:27;24079:4;24057:27;:::i;:::-;24049:6;24045:40;24187:6;24175:10;24172:22;24151:18;24139:10;24136:34;24133:62;24130:88;;;24198:18;;:::i;:::-;24130:88;24238:10;24234:2;24227:22;24017:238;23974:281;;:::o;24261:233::-;24300:3;24323:24;24341:5;24323:24;:::i;:::-;24314:33;;24369:66;24362:5;24359:77;24356:103;;;24439:18;;:::i;:::-;24356:103;24486:1;24479:5;24475:13;24468:20;;24261:233;;;:::o;24500:176::-;24532:1;24549:20;24567:1;24549:20;:::i;:::-;24544:25;;24583:20;24601:1;24583:20;:::i;:::-;24578:25;;24622:1;24612:35;;24627:18;;:::i;:::-;24612:35;24668:1;24665;24661:9;24656:14;;24500:176;;;;:::o;24682:180::-;24730:77;24727:1;24720:88;24827:4;24824:1;24817:15;24851:4;24848:1;24841:15;24868:180;24916:77;24913:1;24906:88;25013:4;25010:1;25003:15;25037:4;25034:1;25027:15;25054:180;25102:77;25099:1;25092:88;25199:4;25196:1;25189:15;25223:4;25220:1;25213:15;25240:180;25288:77;25285:1;25278:88;25385:4;25382:1;25375:15;25409:4;25406:1;25399:15;25426:180;25474:77;25471:1;25464:88;25571:4;25568:1;25561:15;25595:4;25592:1;25585:15;25612:117;25721:1;25718;25711:12;25735:117;25844:1;25841;25834:12;25858:117;25967:1;25964;25957:12;25981:117;26090:1;26087;26080:12;26104:102;26145:6;26196:2;26192:7;26187:2;26180:5;26176:14;26172:28;26162:38;;26104:102;;;:::o;26212:173::-;26352:25;26348:1;26340:6;26336:14;26329:49;26212:173;:::o;26391:165::-;26531:17;26527:1;26519:6;26515:14;26508:41;26391:165;:::o;26562:225::-;26702:34;26698:1;26690:6;26686:14;26679:58;26771:8;26766:2;26758:6;26754:15;26747:33;26562:225;:::o;26793:155::-;26933:7;26929:1;26921:6;26917:14;26910:31;26793:155;:::o;26954:182::-;27094:34;27090:1;27082:6;27078:14;27071:58;26954:182;:::o;27142:234::-;27282:34;27278:1;27270:6;27266:14;27259:58;27351:17;27346:2;27338:6;27334:15;27327:42;27142:234;:::o;27382:179::-;27522:31;27518:1;27510:6;27506:14;27499:55;27382:179;:::o;27567:114::-;;:::o;27687:166::-;27827:18;27823:1;27815:6;27811:14;27804:42;27687:166;:::o;27859:169::-;27999:21;27995:1;27987:6;27983:14;27976:45;27859:169;:::o;28034:122::-;28107:24;28125:5;28107:24;:::i;:::-;28100:5;28097:35;28087:63;;28146:1;28143;28136:12;28087:63;28034:122;:::o;28162:116::-;28232:21;28247:5;28232:21;:::i;:::-;28225:5;28222:32;28212:60;;28268:1;28265;28258:12;28212:60;28162:116;:::o;28284:120::-;28356:23;28373:5;28356:23;:::i;:::-;28349:5;28346:34;28336:62;;28394:1;28391;28384:12;28336:62;28284:120;:::o;28410:122::-;28483:24;28501:5;28483:24;:::i;:::-;28476:5;28473:35;28463:63;;28522:1;28519;28512:12;28463:63;28410:122;:::o

Swarm Source

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