ETH Price: $2,538.38 (+4.63%)

Token

Pokarts (PKRT)
 

Overview

Max Total Supply

229 PKRT

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mrghostforfun.eth
Balance
1 PKRT
0xBc3dce9E27172a07610e532C2f1a9136156aF9a8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
POKARTS

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;



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

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

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

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

// File: contracts/Pokarts.sol



pragma solidity >=0.8.9 <0.9.0;






contract POKARTS is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri = "ipfs://bafybeie2y6fevat6i5l63slkyo62qynj7ddfxzgrcc4e5qlkpaibctz6eq/reveal.json";
    uint256 public costWL = 0.06 ether;
    uint256 public cost = 0.07 ether;
    uint256 public maxSupply = 777;
    uint256 public maxMintAmountWL = 2;
    uint256 public maxMintAmountPublic = 2;

    bool public revealed = false;

    mapping(address => uint256) public addressMintedBalanceWL;
    mapping(address => uint256) public addressMintedBalance;

    uint256 public currentState = 0;
	
    mapping(address => bool) public whitelistedAddresses;

    bytes32 public merkleRootWhitelist;
  
    constructor() ERC721A("Pokarts", "PKRT") {}

    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            require(currentState > 0, "the contract is paused");
            if (currentState == 1) {
                uint256 ownerMintedCount = addressMintedBalanceWL[msg.sender];
                require(
                    isWhitelisted(msg.sender, _merkleProof),
                    "user is not whitelisted"
                );
                require(
                    _mintAmount <= maxMintAmountWL,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountWL,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costWL * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 2) {
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    _mintAmount <= maxMintAmountPublic,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountPublic,
                    "max NFT per address exceeded"
                );
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
        }

        _safeMint(msg.sender, _mintAmount);
        if (currentState == 1) {
            addressMintedBalanceWL[msg.sender] += _mintAmount;
        } else if (currentState == 2) {
            addressMintedBalance[msg.sender] += _mintAmount;
        }
    }
	
    function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
	    require(_mintAmount > 0, "need to mint at least 1 NFT");
		require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");
        _safeMint(_receiver, _mintAmount);
    }

    function isWhitelisted(address _user, bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkleRootWhitelist, leaf);
    }

    function mintableAmountForUser(address _user) public view returns (uint256) {
        if (currentState == 1) {
            return maxMintAmountWL - addressMintedBalanceWL[_user];
        } else if (currentState == 2) {
            return maxMintAmountPublic - addressMintedBalance[_user];
        }
        return 0;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
	
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
	
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

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

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setmaxMintAmountPublic(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountPublic = _newmaxMintAmount;
    }

    function setmaxMintAmountWL(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountWL = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
	
    function pause() public onlyOwner {
        currentState = 0;
    }

    function setPublicCost(uint256 _price) public onlyOwner {
        cost = _price;
    }

    function setWLCost(uint256 _price) public onlyOwner {
        costWL = _price;
    }

    function setOnlyWhitelisted() public onlyOwner {
        currentState = 1;
    }

    function setPublic() public onlyOwner {
        currentState = 2;
    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootWhitelist = _merkleRoot;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWhitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"mintableAmountForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"payable","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":"payable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000293565b506040518060800160405280604e815260200162004d84604e9139600c90805190602001906200008392919062000293565b5066d529ae9e860000600d5566f8b0a10e470000600e55610309600f55600260105560026011556000601260006101000a81548160ff0219169083151502179055506000601555348015620000d757600080fd5b506040518060400160405280600781526020017f506f6b61727473000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504b52540000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015c92919062000293565b5080600390805190602001906200017592919062000293565b5062000186620001bc60201b60201c565b6000819055505050620001ae620001a2620001c560201b60201c565b620001cd60201b60201c565b6001600981905550620003a8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a19062000372565b90600052602060002090601f016020900481019282620002c5576000855562000311565b82601f10620002e057805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000310578251825591602001919060010190620002f3565b5b50905062000320919062000324565b5090565b5b808211156200033f57600081600090555060010162000325565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038b57607f821691505b60208210811415620003a257620003a162000343565b5b50919050565b6149cc80620003b86000396000f3fe6080604052600436106102ff5760003560e01c80636eddb9e311610190578063a475b5dd116100dc578063c87b56dd11610095578063da3ef23f1161006f578063da3ef23f14610b3d578063e985e9c514610b66578063f2c4ce1e14610ba3578063f2fde38b14610bcc576102ff565b8063c87b56dd14610aac578063d1d1921314610ae9578063d5abeb0114610b12576102ff565b8063a475b5dd146109cc578063b88d4fde146109e3578063ba41b0c6146109ff578063bd32fb6614610a1b578063c23dc68f14610a44578063c668286214610a81576102ff565b80638456cb59116101495780638e1f9cfe116101235780638e1f9cfe1461091057806395d89b411461093b57806399a2557a14610966578063a22cb465146109a3576102ff565b80638456cb59146108915780638462151c146108a85780638da5cb5b146108e5576102ff565b80636eddb9e3146107ab57806370a08231146107d4578063715018a61461081157806377e56357146108285780637871e1541461083f578063811d243714610868576102ff565b806318cae2691161024f57806342842e0e116102085780635a23dd99116101e25780635a23dd99146106c95780635bbb2177146107065780636352211e146107435780636c0360eb14610780576102ff565b806342842e0e14610659578063518302271461067557806355f804b3146106a0576102ff565b806318cae2691461056c578063231878d1146105a957806323b872dd146105d2578063295e4c33146105ee57806337546c67146106055780633ccfd60b14610642576102ff565b8063081c8c44116102bc57806313093b1d1161029657806313093b1d146104c057806313faede6146104eb57806317f7bece1461051657806318160ddd14610541576102ff565b8063081c8c441461044e578063095ea7b3146104795780630c3f6acf14610495576102ff565b806301ffc9a71461030457806306afd5921461034157806306c933d81461036c57806306fdde03146103a957806307656e33146103d4578063081812fc14610411575b600080fd5b34801561031057600080fd5b5061032b6004803603810190610326919061337d565b610bf5565b60405161033891906133c5565b60405180910390f35b34801561034d57600080fd5b50610356610c87565b60405161036391906133f9565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613472565b610c8d565b6040516103a091906133c5565b60405180910390f35b3480156103b557600080fd5b506103be610cad565b6040516103cb9190613538565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613472565b610d3f565b60405161040891906133f9565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613586565b610e09565b60405161044591906135c2565b60405180910390f35b34801561045a57600080fd5b50610463610e88565b6040516104709190613538565b60405180910390f35b610493600480360381019061048e91906135dd565b610f16565b005b3480156104a157600080fd5b506104aa61105a565b6040516104b791906133f9565b60405180910390f35b3480156104cc57600080fd5b506104d5611060565b6040516104e291906133f9565b60405180910390f35b3480156104f757600080fd5b50610500611066565b60405161050d91906133f9565b60405180910390f35b34801561052257600080fd5b5061052b61106c565b60405161053891906133f9565b60405180910390f35b34801561054d57600080fd5b50610556611072565b60405161056391906133f9565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613472565b611089565b6040516105a091906133f9565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb9190613586565b6110a1565b005b6105ec60048036038101906105e7919061361d565b6110b3565b005b3480156105fa57600080fd5b506106036113d8565b005b34801561061157600080fd5b5061062c60048036038101906106279190613472565b6113ea565b60405161063991906133f9565b60405180910390f35b34801561064e57600080fd5b50610657611402565b005b610673600480360381019061066e919061361d565b6114e0565b005b34801561068157600080fd5b5061068a611500565b60405161069791906133c5565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c291906137a5565b611513565b005b3480156106d557600080fd5b506106f060048036038101906106eb919061384e565b611535565b6040516106fd91906133c5565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190613904565b6115b9565b60405161073a9190613ab4565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190613586565b61167c565b60405161077791906135c2565b60405180910390f35b34801561078c57600080fd5b5061079561168e565b6040516107a29190613538565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613586565b61171c565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613472565b61172e565b60405161080891906133f9565b60405180910390f35b34801561081d57600080fd5b506108266117e7565b005b34801561083457600080fd5b5061083d6117fb565b005b34801561084b57600080fd5b5061086660048036038101906108619190613ad6565b61180d565b005b34801561087457600080fd5b5061088f600480360381019061088a9190613586565b6118bd565b005b34801561089d57600080fd5b506108a66118cf565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613472565b6118e1565b6040516108dc9190613bd4565b60405180910390f35b3480156108f157600080fd5b506108fa611a2b565b60405161090791906135c2565b60405180910390f35b34801561091c57600080fd5b50610925611a55565b6040516109329190613c0f565b60405180910390f35b34801561094757600080fd5b50610950611a5b565b60405161095d9190613538565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613c2a565b611aed565b60405161099a9190613bd4565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613ca9565b611d01565b005b3480156109d857600080fd5b506109e1611e0c565b005b6109fd60048036038101906109f89190613d8a565b611e31565b005b610a196004803603810190610a149190613e0d565b611ea4565b005b348015610a2757600080fd5b50610a426004803603810190610a3d9190613e99565b612357565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613586565b612369565b604051610a789190613f1b565b60405180910390f35b348015610a8d57600080fd5b50610a966123d3565b604051610aa39190613538565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190613586565b612461565b604051610ae09190613538565b60405180910390f35b348015610af557600080fd5b50610b106004803603810190610b0b9190613586565b6125ba565b005b348015610b1e57600080fd5b50610b276125cc565b604051610b3491906133f9565b60405180910390f35b348015610b4957600080fd5b50610b646004803603810190610b5f91906137a5565b6125d2565b005b348015610b7257600080fd5b50610b8d6004803603810190610b889190613f36565b6125f4565b604051610b9a91906133c5565b60405180910390f35b348015610baf57600080fd5b50610bca6004803603810190610bc591906137a5565b612688565b005b348015610bd857600080fd5b50610bf36004803603810190610bee9190613472565b6126aa565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c5057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b60166020528060005260406000206000915054906101000a900460ff1681565b606060028054610cbc90613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890613fa5565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b600060016015541415610da057601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601054610d999190614006565b9050610e04565b60026015541415610dff57601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154610df89190614006565b9050610e04565b600090505b919050565b6000610e148261272e565b610e4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610e9590613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190613fa5565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b505050505081565b6000610f218261167c565b90508073ffffffffffffffffffffffffffffffffffffffff16610f4261278d565b73ffffffffffffffffffffffffffffffffffffffff1614610fa557610f6e81610f6961278d565b6125f4565b610fa4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60155481565b60105481565b600e5481565b60115481565b600061107c612795565b6001546000540303905090565b60146020528060005260406000206000915090505481565b6110a961279e565b8060118190555050565b60006110be8261281c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611125576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611131846128ea565b91509150611147818761114261278d565b612911565b6111935761115c8661115761278d565b6125f4565b611192576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111fa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112078686866001612955565b801561121257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112e0856112bc88888761295b565b7c020000000000000000000000000000000000000000000000000000000017612983565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611368576000600185019050600060046000838152602001908152602001600020541415611366576000548114611365578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113d086868660016129ae565b505050505050565b6113e061279e565b6001601581905550565b60136020528060005260406000206000915090505481565b61140a61279e565b60026009541415611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614086565b60405180910390fd5b60026009819055506000611462611a2b565b73ffffffffffffffffffffffffffffffffffffffff1647604051611485906140d7565b60006040518083038185875af1925050503d80600081146114c2576040519150601f19603f3d011682016040523d82523d6000602084013e6114c7565b606091505b50509050806114d557600080fd5b506001600981905550565b6114fb83838360405180602001604052806000815250611e31565b505050565b601260009054906101000a900460ff1681565b61151b61279e565b80600a908051906020019061153192919061321f565b5050565b600080846040516020016115499190614134565b6040516020818303038152906040528051906020012090506115af848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601754836129b4565b9150509392505050565b6060600083839050905060008167ffffffffffffffff8111156115df576115de61367a565b5b60405190808252806020026020018201604052801561161857816020015b6116056132a5565b8152602001906001900390816115fd5790505b50905060005b8281146116705761164786868381811061163b5761163a61414f565b5b90506020020135612369565b82828151811061165a5761165961414f565b5b602002602001018190525080600101905061161e565b50809250505092915050565b60006116878261281c565b9050919050565b600a805461169b90613fa5565b80601f01602080910402602001604051908101604052809291908181526020018280546116c790613fa5565b80156117145780601f106116e957610100808354040283529160200191611714565b820191906000526020600020905b8154815290600101906020018083116116f757829003601f168201915b505050505081565b61172461279e565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117ef61279e565b6117f960006129cb565b565b61180361279e565b6002601581905550565b61181561279e565b60008211611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f906141ca565b60405180910390fd5b600f5482611864611072565b61186e91906141ea565b11156118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a69061428c565b60405180910390fd5b6118b98183612a91565b5050565b6118c561279e565b80600e8190555050565b6118d761279e565b6000601581905550565b606060008060006118f18561172e565b905060008167ffffffffffffffff81111561190f5761190e61367a565b5b60405190808252806020026020018201604052801561193d5781602001602082028036833780820191505090505b5090506119486132a5565b6000611952612795565b90505b838614611a1d5761196581612aaf565b915081604001511561197657611a12565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119b657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611a115780838780600101985081518110611a0457611a0361414f565b5b6020026020010181815250505b5b806001019050611955565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60175481565b606060038054611a6a90613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9690613fa5565b8015611ae35780601f10611ab857610100808354040283529160200191611ae3565b820191906000526020600020905b815481529060010190602001808311611ac657829003601f168201915b5050505050905090565b6060818310611b28576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b33612ada565b9050611b3d612795565b851015611b4f57611b4c612795565b94505b80841115611b5b578093505b6000611b668761172e565b905084861015611b89576000868603905081811015611b83578091505b50611b8e565b600090505b60008167ffffffffffffffff811115611baa57611ba961367a565b5b604051908082528060200260200182016040528015611bd85781602001602082028036833780820191505090505b5090506000821415611bf05780945050505050611cfa565b6000611bfb88612369565b905060008160400151611c1057816000015190505b60008990505b888114158015611c265750848714155b15611cec57611c3481612aaf565b9250826040015115611c4557611ce1565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611c8557826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce05780848880600101995081518110611cd357611cd261414f565b5b6020026020010181815250505b5b806001019050611c16565b508583528296505050505050505b9392505050565b8060076000611d0e61278d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dbb61278d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0091906133c5565b60405180910390a35050565b611e1461279e565b6001601260006101000a81548160ff021916908315150217905550565b611e3c8484846110b3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e9e57611e6784848484612ae3565b611e9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611eae611072565b905060008411611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906141ca565b60405180910390fd5b600f548482611f0291906141ea565b1115611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a9061428c565b60405180910390fd5b611f4b611a2b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461227e57600060155411611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb9906142f8565b60405180910390fd5b60016015541415612146576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061201c338585611535565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290614364565b60405180910390fd5b6010548511156120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906143f6565b60405180910390fd5b60105485826120af91906141ea565b11156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614462565b60405180910390fd5b84600d546120fe9190614482565b341015612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614528565b60405180910390fd5b5061227d565b6002601554141561227c576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548511156121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d1906143f6565b60405180910390fd5b60115485826121e991906141ea565b111561222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190614462565b60405180910390fd5b84600e546122389190614482565b34101561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614528565b60405180910390fd5b505b5b5b6122883385612a91565b600160155414156122ee5783601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e291906141ea565b92505081905550612351565b600260155414156123505783601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234891906141ea565b925050819055505b5b50505050565b61235f61279e565b8060178190555050565b6123716132a5565b6123796132a5565b612381612795565b8310806123955750612391612ada565b8310155b156123a357809150506123ce565b6123ac83612aaf565b90508060400151156123c157809150506123ce565b6123ca83612c43565b9150505b919050565b600b80546123e090613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461240c90613fa5565b80156124595780601f1061242e57610100808354040283529160200191612459565b820191906000526020600020905b81548152906001019060200180831161243c57829003601f168201915b505050505081565b606061246c8261272e565b6124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a2906145ba565b60405180910390fd5b60001515601260009054906101000a900460ff161515141561255957600c80546124d490613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461250090613fa5565b801561254d5780601f106125225761010080835404028352916020019161254d565b820191906000526020600020905b81548152906001019060200180831161253057829003601f168201915b505050505090506125b5565b6000612563612c63565b9050600081511161258357604051806020016040528060008152506125b1565b8061258d84612cf5565b600b6040516020016125a1939291906146aa565b6040516020818303038152906040525b9150505b919050565b6125c261279e565b80600d8190555050565b600f5481565b6125da61279e565b80600b90805190602001906125f092919061321f565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61269061279e565b80600c90805190602001906126a692919061321f565b5050565b6126b261279e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127199061474d565b60405180910390fd5b61272b816129cb565b50565b600081612739612795565b11158015612748575060005482105b8015612786575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6127a6612e56565b73ffffffffffffffffffffffffffffffffffffffff166127c4611a2b565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612811906147b9565b60405180910390fd5b565b6000808290508061282b612795565b116128b3576000548110156128b25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156128b0575b60008114156128a657600460008360019003935083815260200190815260200160002054905061287b565b80925050506128e5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612972868684612e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000826129c18584612e67565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aab828260405180602001604052806000815250612ebd565b5050565b612ab76132a5565b612ad36004600084815260200190815260200160002054612f5a565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b0961278d565b8786866040518563ffffffff1660e01b8152600401612b2b949392919061482e565b602060405180830381600087803b158015612b4557600080fd5b505af1925050508015612b7657506040513d601f19601f82011682018060405250810190612b73919061488f565b60015b612bf0573d8060008114612ba6576040519150601f19603f3d011682016040523d82523d6000602084013e612bab565b606091505b50600081511415612be8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612c4b6132a5565b612c5c612c578361281c565b612f5a565b9050919050565b6060600a8054612c7290613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c9e90613fa5565b8015612ceb5780601f10612cc057610100808354040283529160200191612ceb565b820191906000526020600020905b815481529060010190602001808311612cce57829003601f168201915b5050505050905090565b60606000821415612d3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e51565b600082905060005b60008214612d6f578080612d58906148bc565b915050600a82612d689190614934565b9150612d45565b60008167ffffffffffffffff811115612d8b57612d8a61367a565b5b6040519080825280601f01601f191660200182016040528015612dbd5781602001600182028036833780820191505090505b5090505b60008514612e4a57600182612dd69190614006565b9150600a85612de59190614965565b6030612df191906141ea565b60f81b818381518110612e0757612e0661414f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e439190614934565b9450612dc1565b8093505050505b919050565b600033905090565b60009392505050565b60008082905060005b8451811015612eb257612e9d82868381518110612e9057612e8f61414f565b5b6020026020010151613010565b91508080612eaa906148bc565b915050612e70565b508091505092915050565b612ec7838361303b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f5557600080549050600083820390505b612f076000868380600101945086612ae3565b612f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ef4578160005414612f5257600080fd5b50505b505050565b612f626132a5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008183106130285761302382846131f8565b613033565b61303283836131f8565b5b905092915050565b600080549050600082141561307c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130896000848385612955565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613100836130f1600086600061295b565b6130fa8561320f565b17612983565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146131a157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613166565b5060008214156131dd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506131f360008483856129ae565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461322b90613fa5565b90600052602060002090601f01602090048101928261324d5760008555613294565b82601f1061326657805160ff1916838001178555613294565b82800160010185558215613294579182015b82811115613293578251825591602001919060010190613278565b5b5090506132a191906132f4565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561330d5760008160009055506001016132f5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61335a81613325565b811461336557600080fd5b50565b60008135905061337781613351565b92915050565b6000602082840312156133935761339261331b565b5b60006133a184828501613368565b91505092915050565b60008115159050919050565b6133bf816133aa565b82525050565b60006020820190506133da60008301846133b6565b92915050565b6000819050919050565b6133f3816133e0565b82525050565b600060208201905061340e60008301846133ea565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343f82613414565b9050919050565b61344f81613434565b811461345a57600080fd5b50565b60008135905061346c81613446565b92915050565b6000602082840312156134885761348761331b565b5b60006134968482850161345d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134d95780820151818401526020810190506134be565b838111156134e8576000848401525b50505050565b6000601f19601f8301169050919050565b600061350a8261349f565b61351481856134aa565b93506135248185602086016134bb565b61352d816134ee565b840191505092915050565b6000602082019050818103600083015261355281846134ff565b905092915050565b613563816133e0565b811461356e57600080fd5b50565b6000813590506135808161355a565b92915050565b60006020828403121561359c5761359b61331b565b5b60006135aa84828501613571565b91505092915050565b6135bc81613434565b82525050565b60006020820190506135d760008301846135b3565b92915050565b600080604083850312156135f4576135f361331b565b5b60006136028582860161345d565b925050602061361385828601613571565b9150509250929050565b6000806000606084860312156136365761363561331b565b5b60006136448682870161345d565b93505060206136558682870161345d565b925050604061366686828701613571565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136b2826134ee565b810181811067ffffffffffffffff821117156136d1576136d061367a565b5b80604052505050565b60006136e4613311565b90506136f082826136a9565b919050565b600067ffffffffffffffff8211156137105761370f61367a565b5b613719826134ee565b9050602081019050919050565b82818337600083830152505050565b6000613748613743846136f5565b6136da565b90508281526020810184848401111561376457613763613675565b5b61376f848285613726565b509392505050565b600082601f83011261378c5761378b613670565b5b813561379c848260208601613735565b91505092915050565b6000602082840312156137bb576137ba61331b565b5b600082013567ffffffffffffffff8111156137d9576137d8613320565b5b6137e584828501613777565b91505092915050565b600080fd5b600080fd5b60008083601f84011261380e5761380d613670565b5b8235905067ffffffffffffffff81111561382b5761382a6137ee565b5b602083019150836020820283011115613847576138466137f3565b5b9250929050565b6000806000604084860312156138675761386661331b565b5b60006138758682870161345d565b935050602084013567ffffffffffffffff81111561389657613895613320565b5b6138a2868287016137f8565b92509250509250925092565b60008083601f8401126138c4576138c3613670565b5b8235905067ffffffffffffffff8111156138e1576138e06137ee565b5b6020830191508360208202830111156138fd576138fc6137f3565b5b9250929050565b6000806020838503121561391b5761391a61331b565b5b600083013567ffffffffffffffff81111561393957613938613320565b5b613945858286016138ae565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61398681613434565b82525050565b600067ffffffffffffffff82169050919050565b6139a98161398c565b82525050565b6139b8816133aa565b82525050565b600062ffffff82169050919050565b6139d6816139be565b82525050565b6080820160008201516139f2600085018261397d565b506020820151613a0560208501826139a0565b506040820151613a1860408501826139af565b506060820151613a2b60608501826139cd565b50505050565b6000613a3d83836139dc565b60808301905092915050565b6000602082019050919050565b6000613a6182613951565b613a6b818561395c565b9350613a768361396d565b8060005b83811015613aa7578151613a8e8882613a31565b9750613a9983613a49565b925050600181019050613a7a565b5085935050505092915050565b60006020820190508181036000830152613ace8184613a56565b905092915050565b60008060408385031215613aed57613aec61331b565b5b6000613afb85828601613571565b9250506020613b0c8582860161345d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b4b816133e0565b82525050565b6000613b5d8383613b42565b60208301905092915050565b6000602082019050919050565b6000613b8182613b16565b613b8b8185613b21565b9350613b9683613b32565b8060005b83811015613bc7578151613bae8882613b51565b9750613bb983613b69565b925050600181019050613b9a565b5085935050505092915050565b60006020820190508181036000830152613bee8184613b76565b905092915050565b6000819050919050565b613c0981613bf6565b82525050565b6000602082019050613c246000830184613c00565b92915050565b600080600060608486031215613c4357613c4261331b565b5b6000613c518682870161345d565b9350506020613c6286828701613571565b9250506040613c7386828701613571565b9150509250925092565b613c86816133aa565b8114613c9157600080fd5b50565b600081359050613ca381613c7d565b92915050565b60008060408385031215613cc057613cbf61331b565b5b6000613cce8582860161345d565b9250506020613cdf85828601613c94565b9150509250929050565b600067ffffffffffffffff821115613d0457613d0361367a565b5b613d0d826134ee565b9050602081019050919050565b6000613d2d613d2884613ce9565b6136da565b905082815260208101848484011115613d4957613d48613675565b5b613d54848285613726565b509392505050565b600082601f830112613d7157613d70613670565b5b8135613d81848260208601613d1a565b91505092915050565b60008060008060808587031215613da457613da361331b565b5b6000613db28782880161345d565b9450506020613dc38782880161345d565b9350506040613dd487828801613571565b925050606085013567ffffffffffffffff811115613df557613df4613320565b5b613e0187828801613d5c565b91505092959194509250565b600080600060408486031215613e2657613e2561331b565b5b6000613e3486828701613571565b935050602084013567ffffffffffffffff811115613e5557613e54613320565b5b613e61868287016137f8565b92509250509250925092565b613e7681613bf6565b8114613e8157600080fd5b50565b600081359050613e9381613e6d565b92915050565b600060208284031215613eaf57613eae61331b565b5b6000613ebd84828501613e84565b91505092915050565b608082016000820151613edc600085018261397d565b506020820151613eef60208501826139a0565b506040820151613f0260408501826139af565b506060820151613f1560608501826139cd565b50505050565b6000608082019050613f306000830184613ec6565b92915050565b60008060408385031215613f4d57613f4c61331b565b5b6000613f5b8582860161345d565b9250506020613f6c8582860161345d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fbd57607f821691505b60208210811415613fd157613fd0613f76565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614011826133e0565b915061401c836133e0565b92508282101561402f5761402e613fd7565b5b828203905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614070601f836134aa565b915061407b8261403a565b602082019050919050565b6000602082019050818103600083015261409f81614063565b9050919050565b600081905092915050565b50565b60006140c16000836140a6565b91506140cc826140b1565b600082019050919050565b60006140e2826140b4565b9150819050919050565b60008160601b9050919050565b6000614104826140ec565b9050919050565b6000614116826140f9565b9050919050565b61412e61412982613434565b61410b565b82525050565b6000614140828461411d565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006141b4601b836134aa565b91506141bf8261417e565b602082019050919050565b600060208201905081810360008301526141e3816141a7565b9050919050565b60006141f5826133e0565b9150614200836133e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561423557614234613fd7565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006142766016836134aa565b915061428182614240565b602082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b60006142e26016836134aa565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b600061434e6017836134aa565b915061435982614318565b602082019050919050565b6000602082019050818103600083015261437d81614341565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b60006143e06024836134aa565b91506143eb82614384565b604082019050919050565b6000602082019050818103600083015261440f816143d3565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b600061444c601c836134aa565b915061445782614416565b602082019050919050565b6000602082019050818103600083015261447b8161443f565b9050919050565b600061448d826133e0565b9150614498836133e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d1576144d0613fd7565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006145126012836134aa565b915061451d826144dc565b602082019050919050565b6000602082019050818103600083015261454181614505565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145a4602f836134aa565b91506145af82614548565b604082019050919050565b600060208201905081810360008301526145d381614597565b9050919050565b600081905092915050565b60006145f08261349f565b6145fa81856145da565b935061460a8185602086016134bb565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461463881613fa5565b61464281866145da565b9450600182166000811461465d576001811461466e576146a1565b60ff198316865281860193506146a1565b61467785614616565b60005b838110156146995781548189015260018201915060208101905061467a565b838801955050505b50505092915050565b60006146b682866145e5565b91506146c282856145e5565b91506146ce828461462b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147376026836134aa565b9150614742826146db565b604082019050919050565b600060208201905081810360008301526147668161472a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147a36020836134aa565b91506147ae8261476d565b602082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614800826147d9565b61480a81856147e4565b935061481a8185602086016134bb565b614823816134ee565b840191505092915050565b600060808201905061484360008301876135b3565b61485060208301866135b3565b61485d60408301856133ea565b818103606083015261486f81846147f5565b905095945050505050565b60008151905061488981613351565b92915050565b6000602082840312156148a5576148a461331b565b5b60006148b38482850161487a565b91505092915050565b60006148c7826133e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148fa576148f9613fd7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061493f826133e0565b915061494a836133e0565b92508261495a57614959614905565b5b828204905092915050565b6000614970826133e0565b915061497b836133e0565b92508261498b5761498a614905565b5b82820690509291505056fea2646970667358221220201a2f684096e0dbe00491b9061e447b36caf2be024f8fa8f15483bcc5f626b464736f6c63430008090033697066733a2f2f626166796265696532793666657661743669356c3633736c6b796f363271796e6a37646466787a67726363346535716c6b7061696263747a3665712f72657665616c2e6a736f6e

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c80636eddb9e311610190578063a475b5dd116100dc578063c87b56dd11610095578063da3ef23f1161006f578063da3ef23f14610b3d578063e985e9c514610b66578063f2c4ce1e14610ba3578063f2fde38b14610bcc576102ff565b8063c87b56dd14610aac578063d1d1921314610ae9578063d5abeb0114610b12576102ff565b8063a475b5dd146109cc578063b88d4fde146109e3578063ba41b0c6146109ff578063bd32fb6614610a1b578063c23dc68f14610a44578063c668286214610a81576102ff565b80638456cb59116101495780638e1f9cfe116101235780638e1f9cfe1461091057806395d89b411461093b57806399a2557a14610966578063a22cb465146109a3576102ff565b80638456cb59146108915780638462151c146108a85780638da5cb5b146108e5576102ff565b80636eddb9e3146107ab57806370a08231146107d4578063715018a61461081157806377e56357146108285780637871e1541461083f578063811d243714610868576102ff565b806318cae2691161024f57806342842e0e116102085780635a23dd99116101e25780635a23dd99146106c95780635bbb2177146107065780636352211e146107435780636c0360eb14610780576102ff565b806342842e0e14610659578063518302271461067557806355f804b3146106a0576102ff565b806318cae2691461056c578063231878d1146105a957806323b872dd146105d2578063295e4c33146105ee57806337546c67146106055780633ccfd60b14610642576102ff565b8063081c8c44116102bc57806313093b1d1161029657806313093b1d146104c057806313faede6146104eb57806317f7bece1461051657806318160ddd14610541576102ff565b8063081c8c441461044e578063095ea7b3146104795780630c3f6acf14610495576102ff565b806301ffc9a71461030457806306afd5921461034157806306c933d81461036c57806306fdde03146103a957806307656e33146103d4578063081812fc14610411575b600080fd5b34801561031057600080fd5b5061032b6004803603810190610326919061337d565b610bf5565b60405161033891906133c5565b60405180910390f35b34801561034d57600080fd5b50610356610c87565b60405161036391906133f9565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613472565b610c8d565b6040516103a091906133c5565b60405180910390f35b3480156103b557600080fd5b506103be610cad565b6040516103cb9190613538565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613472565b610d3f565b60405161040891906133f9565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613586565b610e09565b60405161044591906135c2565b60405180910390f35b34801561045a57600080fd5b50610463610e88565b6040516104709190613538565b60405180910390f35b610493600480360381019061048e91906135dd565b610f16565b005b3480156104a157600080fd5b506104aa61105a565b6040516104b791906133f9565b60405180910390f35b3480156104cc57600080fd5b506104d5611060565b6040516104e291906133f9565b60405180910390f35b3480156104f757600080fd5b50610500611066565b60405161050d91906133f9565b60405180910390f35b34801561052257600080fd5b5061052b61106c565b60405161053891906133f9565b60405180910390f35b34801561054d57600080fd5b50610556611072565b60405161056391906133f9565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613472565b611089565b6040516105a091906133f9565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb9190613586565b6110a1565b005b6105ec60048036038101906105e7919061361d565b6110b3565b005b3480156105fa57600080fd5b506106036113d8565b005b34801561061157600080fd5b5061062c60048036038101906106279190613472565b6113ea565b60405161063991906133f9565b60405180910390f35b34801561064e57600080fd5b50610657611402565b005b610673600480360381019061066e919061361d565b6114e0565b005b34801561068157600080fd5b5061068a611500565b60405161069791906133c5565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c291906137a5565b611513565b005b3480156106d557600080fd5b506106f060048036038101906106eb919061384e565b611535565b6040516106fd91906133c5565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190613904565b6115b9565b60405161073a9190613ab4565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190613586565b61167c565b60405161077791906135c2565b60405180910390f35b34801561078c57600080fd5b5061079561168e565b6040516107a29190613538565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613586565b61171c565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613472565b61172e565b60405161080891906133f9565b60405180910390f35b34801561081d57600080fd5b506108266117e7565b005b34801561083457600080fd5b5061083d6117fb565b005b34801561084b57600080fd5b5061086660048036038101906108619190613ad6565b61180d565b005b34801561087457600080fd5b5061088f600480360381019061088a9190613586565b6118bd565b005b34801561089d57600080fd5b506108a66118cf565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613472565b6118e1565b6040516108dc9190613bd4565b60405180910390f35b3480156108f157600080fd5b506108fa611a2b565b60405161090791906135c2565b60405180910390f35b34801561091c57600080fd5b50610925611a55565b6040516109329190613c0f565b60405180910390f35b34801561094757600080fd5b50610950611a5b565b60405161095d9190613538565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613c2a565b611aed565b60405161099a9190613bd4565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613ca9565b611d01565b005b3480156109d857600080fd5b506109e1611e0c565b005b6109fd60048036038101906109f89190613d8a565b611e31565b005b610a196004803603810190610a149190613e0d565b611ea4565b005b348015610a2757600080fd5b50610a426004803603810190610a3d9190613e99565b612357565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613586565b612369565b604051610a789190613f1b565b60405180910390f35b348015610a8d57600080fd5b50610a966123d3565b604051610aa39190613538565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190613586565b612461565b604051610ae09190613538565b60405180910390f35b348015610af557600080fd5b50610b106004803603810190610b0b9190613586565b6125ba565b005b348015610b1e57600080fd5b50610b276125cc565b604051610b3491906133f9565b60405180910390f35b348015610b4957600080fd5b50610b646004803603810190610b5f91906137a5565b6125d2565b005b348015610b7257600080fd5b50610b8d6004803603810190610b889190613f36565b6125f4565b604051610b9a91906133c5565b60405180910390f35b348015610baf57600080fd5b50610bca6004803603810190610bc591906137a5565b612688565b005b348015610bd857600080fd5b50610bf36004803603810190610bee9190613472565b6126aa565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c5057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b60166020528060005260406000206000915054906101000a900460ff1681565b606060028054610cbc90613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890613fa5565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b600060016015541415610da057601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601054610d999190614006565b9050610e04565b60026015541415610dff57601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154610df89190614006565b9050610e04565b600090505b919050565b6000610e148261272e565b610e4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610e9590613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190613fa5565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b505050505081565b6000610f218261167c565b90508073ffffffffffffffffffffffffffffffffffffffff16610f4261278d565b73ffffffffffffffffffffffffffffffffffffffff1614610fa557610f6e81610f6961278d565b6125f4565b610fa4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60155481565b60105481565b600e5481565b60115481565b600061107c612795565b6001546000540303905090565b60146020528060005260406000206000915090505481565b6110a961279e565b8060118190555050565b60006110be8261281c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611125576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611131846128ea565b91509150611147818761114261278d565b612911565b6111935761115c8661115761278d565b6125f4565b611192576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111fa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112078686866001612955565b801561121257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112e0856112bc88888761295b565b7c020000000000000000000000000000000000000000000000000000000017612983565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611368576000600185019050600060046000838152602001908152602001600020541415611366576000548114611365578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113d086868660016129ae565b505050505050565b6113e061279e565b6001601581905550565b60136020528060005260406000206000915090505481565b61140a61279e565b60026009541415611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614086565b60405180910390fd5b60026009819055506000611462611a2b565b73ffffffffffffffffffffffffffffffffffffffff1647604051611485906140d7565b60006040518083038185875af1925050503d80600081146114c2576040519150601f19603f3d011682016040523d82523d6000602084013e6114c7565b606091505b50509050806114d557600080fd5b506001600981905550565b6114fb83838360405180602001604052806000815250611e31565b505050565b601260009054906101000a900460ff1681565b61151b61279e565b80600a908051906020019061153192919061321f565b5050565b600080846040516020016115499190614134565b6040516020818303038152906040528051906020012090506115af848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601754836129b4565b9150509392505050565b6060600083839050905060008167ffffffffffffffff8111156115df576115de61367a565b5b60405190808252806020026020018201604052801561161857816020015b6116056132a5565b8152602001906001900390816115fd5790505b50905060005b8281146116705761164786868381811061163b5761163a61414f565b5b90506020020135612369565b82828151811061165a5761165961414f565b5b602002602001018190525080600101905061161e565b50809250505092915050565b60006116878261281c565b9050919050565b600a805461169b90613fa5565b80601f01602080910402602001604051908101604052809291908181526020018280546116c790613fa5565b80156117145780601f106116e957610100808354040283529160200191611714565b820191906000526020600020905b8154815290600101906020018083116116f757829003601f168201915b505050505081565b61172461279e565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117ef61279e565b6117f960006129cb565b565b61180361279e565b6002601581905550565b61181561279e565b60008211611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f906141ca565b60405180910390fd5b600f5482611864611072565b61186e91906141ea565b11156118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a69061428c565b60405180910390fd5b6118b98183612a91565b5050565b6118c561279e565b80600e8190555050565b6118d761279e565b6000601581905550565b606060008060006118f18561172e565b905060008167ffffffffffffffff81111561190f5761190e61367a565b5b60405190808252806020026020018201604052801561193d5781602001602082028036833780820191505090505b5090506119486132a5565b6000611952612795565b90505b838614611a1d5761196581612aaf565b915081604001511561197657611a12565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119b657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611a115780838780600101985081518110611a0457611a0361414f565b5b6020026020010181815250505b5b806001019050611955565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60175481565b606060038054611a6a90613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9690613fa5565b8015611ae35780601f10611ab857610100808354040283529160200191611ae3565b820191906000526020600020905b815481529060010190602001808311611ac657829003601f168201915b5050505050905090565b6060818310611b28576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b33612ada565b9050611b3d612795565b851015611b4f57611b4c612795565b94505b80841115611b5b578093505b6000611b668761172e565b905084861015611b89576000868603905081811015611b83578091505b50611b8e565b600090505b60008167ffffffffffffffff811115611baa57611ba961367a565b5b604051908082528060200260200182016040528015611bd85781602001602082028036833780820191505090505b5090506000821415611bf05780945050505050611cfa565b6000611bfb88612369565b905060008160400151611c1057816000015190505b60008990505b888114158015611c265750848714155b15611cec57611c3481612aaf565b9250826040015115611c4557611ce1565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611c8557826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce05780848880600101995081518110611cd357611cd261414f565b5b6020026020010181815250505b5b806001019050611c16565b508583528296505050505050505b9392505050565b8060076000611d0e61278d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dbb61278d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0091906133c5565b60405180910390a35050565b611e1461279e565b6001601260006101000a81548160ff021916908315150217905550565b611e3c8484846110b3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e9e57611e6784848484612ae3565b611e9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611eae611072565b905060008411611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906141ca565b60405180910390fd5b600f548482611f0291906141ea565b1115611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a9061428c565b60405180910390fd5b611f4b611a2b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461227e57600060155411611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb9906142f8565b60405180910390fd5b60016015541415612146576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061201c338585611535565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290614364565b60405180910390fd5b6010548511156120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906143f6565b60405180910390fd5b60105485826120af91906141ea565b11156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614462565b60405180910390fd5b84600d546120fe9190614482565b341015612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614528565b60405180910390fd5b5061227d565b6002601554141561227c576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548511156121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d1906143f6565b60405180910390fd5b60115485826121e991906141ea565b111561222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190614462565b60405180910390fd5b84600e546122389190614482565b34101561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614528565b60405180910390fd5b505b5b5b6122883385612a91565b600160155414156122ee5783601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e291906141ea565b92505081905550612351565b600260155414156123505783601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234891906141ea565b925050819055505b5b50505050565b61235f61279e565b8060178190555050565b6123716132a5565b6123796132a5565b612381612795565b8310806123955750612391612ada565b8310155b156123a357809150506123ce565b6123ac83612aaf565b90508060400151156123c157809150506123ce565b6123ca83612c43565b9150505b919050565b600b80546123e090613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461240c90613fa5565b80156124595780601f1061242e57610100808354040283529160200191612459565b820191906000526020600020905b81548152906001019060200180831161243c57829003601f168201915b505050505081565b606061246c8261272e565b6124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a2906145ba565b60405180910390fd5b60001515601260009054906101000a900460ff161515141561255957600c80546124d490613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461250090613fa5565b801561254d5780601f106125225761010080835404028352916020019161254d565b820191906000526020600020905b81548152906001019060200180831161253057829003601f168201915b505050505090506125b5565b6000612563612c63565b9050600081511161258357604051806020016040528060008152506125b1565b8061258d84612cf5565b600b6040516020016125a1939291906146aa565b6040516020818303038152906040525b9150505b919050565b6125c261279e565b80600d8190555050565b600f5481565b6125da61279e565b80600b90805190602001906125f092919061321f565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61269061279e565b80600c90805190602001906126a692919061321f565b5050565b6126b261279e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127199061474d565b60405180910390fd5b61272b816129cb565b50565b600081612739612795565b11158015612748575060005482105b8015612786575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6127a6612e56565b73ffffffffffffffffffffffffffffffffffffffff166127c4611a2b565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612811906147b9565b60405180910390fd5b565b6000808290508061282b612795565b116128b3576000548110156128b25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156128b0575b60008114156128a657600460008360019003935083815260200190815260200160002054905061287b565b80925050506128e5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612972868684612e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000826129c18584612e67565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aab828260405180602001604052806000815250612ebd565b5050565b612ab76132a5565b612ad36004600084815260200190815260200160002054612f5a565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b0961278d565b8786866040518563ffffffff1660e01b8152600401612b2b949392919061482e565b602060405180830381600087803b158015612b4557600080fd5b505af1925050508015612b7657506040513d601f19601f82011682018060405250810190612b73919061488f565b60015b612bf0573d8060008114612ba6576040519150601f19603f3d011682016040523d82523d6000602084013e612bab565b606091505b50600081511415612be8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612c4b6132a5565b612c5c612c578361281c565b612f5a565b9050919050565b6060600a8054612c7290613fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c9e90613fa5565b8015612ceb5780601f10612cc057610100808354040283529160200191612ceb565b820191906000526020600020905b815481529060010190602001808311612cce57829003601f168201915b5050505050905090565b60606000821415612d3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e51565b600082905060005b60008214612d6f578080612d58906148bc565b915050600a82612d689190614934565b9150612d45565b60008167ffffffffffffffff811115612d8b57612d8a61367a565b5b6040519080825280601f01601f191660200182016040528015612dbd5781602001600182028036833780820191505090505b5090505b60008514612e4a57600182612dd69190614006565b9150600a85612de59190614965565b6030612df191906141ea565b60f81b818381518110612e0757612e0661414f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e439190614934565b9450612dc1565b8093505050505b919050565b600033905090565b60009392505050565b60008082905060005b8451811015612eb257612e9d82868381518110612e9057612e8f61414f565b5b6020026020010151613010565b91508080612eaa906148bc565b915050612e70565b508091505092915050565b612ec7838361303b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f5557600080549050600083820390505b612f076000868380600101945086612ae3565b612f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ef4578160005414612f5257600080fd5b50505b505050565b612f626132a5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008183106130285761302382846131f8565b613033565b61303283836131f8565b5b905092915050565b600080549050600082141561307c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130896000848385612955565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613100836130f1600086600061295b565b6130fa8561320f565b17612983565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146131a157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613166565b5060008214156131dd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506131f360008483856129ae565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461322b90613fa5565b90600052602060002090601f01602090048101928261324d5760008555613294565b82601f1061326657805160ff1916838001178555613294565b82800160010185558215613294579182015b82811115613293578251825591602001919060010190613278565b5b5090506132a191906132f4565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561330d5760008160009055506001016132f5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61335a81613325565b811461336557600080fd5b50565b60008135905061337781613351565b92915050565b6000602082840312156133935761339261331b565b5b60006133a184828501613368565b91505092915050565b60008115159050919050565b6133bf816133aa565b82525050565b60006020820190506133da60008301846133b6565b92915050565b6000819050919050565b6133f3816133e0565b82525050565b600060208201905061340e60008301846133ea565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343f82613414565b9050919050565b61344f81613434565b811461345a57600080fd5b50565b60008135905061346c81613446565b92915050565b6000602082840312156134885761348761331b565b5b60006134968482850161345d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134d95780820151818401526020810190506134be565b838111156134e8576000848401525b50505050565b6000601f19601f8301169050919050565b600061350a8261349f565b61351481856134aa565b93506135248185602086016134bb565b61352d816134ee565b840191505092915050565b6000602082019050818103600083015261355281846134ff565b905092915050565b613563816133e0565b811461356e57600080fd5b50565b6000813590506135808161355a565b92915050565b60006020828403121561359c5761359b61331b565b5b60006135aa84828501613571565b91505092915050565b6135bc81613434565b82525050565b60006020820190506135d760008301846135b3565b92915050565b600080604083850312156135f4576135f361331b565b5b60006136028582860161345d565b925050602061361385828601613571565b9150509250929050565b6000806000606084860312156136365761363561331b565b5b60006136448682870161345d565b93505060206136558682870161345d565b925050604061366686828701613571565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136b2826134ee565b810181811067ffffffffffffffff821117156136d1576136d061367a565b5b80604052505050565b60006136e4613311565b90506136f082826136a9565b919050565b600067ffffffffffffffff8211156137105761370f61367a565b5b613719826134ee565b9050602081019050919050565b82818337600083830152505050565b6000613748613743846136f5565b6136da565b90508281526020810184848401111561376457613763613675565b5b61376f848285613726565b509392505050565b600082601f83011261378c5761378b613670565b5b813561379c848260208601613735565b91505092915050565b6000602082840312156137bb576137ba61331b565b5b600082013567ffffffffffffffff8111156137d9576137d8613320565b5b6137e584828501613777565b91505092915050565b600080fd5b600080fd5b60008083601f84011261380e5761380d613670565b5b8235905067ffffffffffffffff81111561382b5761382a6137ee565b5b602083019150836020820283011115613847576138466137f3565b5b9250929050565b6000806000604084860312156138675761386661331b565b5b60006138758682870161345d565b935050602084013567ffffffffffffffff81111561389657613895613320565b5b6138a2868287016137f8565b92509250509250925092565b60008083601f8401126138c4576138c3613670565b5b8235905067ffffffffffffffff8111156138e1576138e06137ee565b5b6020830191508360208202830111156138fd576138fc6137f3565b5b9250929050565b6000806020838503121561391b5761391a61331b565b5b600083013567ffffffffffffffff81111561393957613938613320565b5b613945858286016138ae565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61398681613434565b82525050565b600067ffffffffffffffff82169050919050565b6139a98161398c565b82525050565b6139b8816133aa565b82525050565b600062ffffff82169050919050565b6139d6816139be565b82525050565b6080820160008201516139f2600085018261397d565b506020820151613a0560208501826139a0565b506040820151613a1860408501826139af565b506060820151613a2b60608501826139cd565b50505050565b6000613a3d83836139dc565b60808301905092915050565b6000602082019050919050565b6000613a6182613951565b613a6b818561395c565b9350613a768361396d565b8060005b83811015613aa7578151613a8e8882613a31565b9750613a9983613a49565b925050600181019050613a7a565b5085935050505092915050565b60006020820190508181036000830152613ace8184613a56565b905092915050565b60008060408385031215613aed57613aec61331b565b5b6000613afb85828601613571565b9250506020613b0c8582860161345d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b4b816133e0565b82525050565b6000613b5d8383613b42565b60208301905092915050565b6000602082019050919050565b6000613b8182613b16565b613b8b8185613b21565b9350613b9683613b32565b8060005b83811015613bc7578151613bae8882613b51565b9750613bb983613b69565b925050600181019050613b9a565b5085935050505092915050565b60006020820190508181036000830152613bee8184613b76565b905092915050565b6000819050919050565b613c0981613bf6565b82525050565b6000602082019050613c246000830184613c00565b92915050565b600080600060608486031215613c4357613c4261331b565b5b6000613c518682870161345d565b9350506020613c6286828701613571565b9250506040613c7386828701613571565b9150509250925092565b613c86816133aa565b8114613c9157600080fd5b50565b600081359050613ca381613c7d565b92915050565b60008060408385031215613cc057613cbf61331b565b5b6000613cce8582860161345d565b9250506020613cdf85828601613c94565b9150509250929050565b600067ffffffffffffffff821115613d0457613d0361367a565b5b613d0d826134ee565b9050602081019050919050565b6000613d2d613d2884613ce9565b6136da565b905082815260208101848484011115613d4957613d48613675565b5b613d54848285613726565b509392505050565b600082601f830112613d7157613d70613670565b5b8135613d81848260208601613d1a565b91505092915050565b60008060008060808587031215613da457613da361331b565b5b6000613db28782880161345d565b9450506020613dc38782880161345d565b9350506040613dd487828801613571565b925050606085013567ffffffffffffffff811115613df557613df4613320565b5b613e0187828801613d5c565b91505092959194509250565b600080600060408486031215613e2657613e2561331b565b5b6000613e3486828701613571565b935050602084013567ffffffffffffffff811115613e5557613e54613320565b5b613e61868287016137f8565b92509250509250925092565b613e7681613bf6565b8114613e8157600080fd5b50565b600081359050613e9381613e6d565b92915050565b600060208284031215613eaf57613eae61331b565b5b6000613ebd84828501613e84565b91505092915050565b608082016000820151613edc600085018261397d565b506020820151613eef60208501826139a0565b506040820151613f0260408501826139af565b506060820151613f1560608501826139cd565b50505050565b6000608082019050613f306000830184613ec6565b92915050565b60008060408385031215613f4d57613f4c61331b565b5b6000613f5b8582860161345d565b9250506020613f6c8582860161345d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fbd57607f821691505b60208210811415613fd157613fd0613f76565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614011826133e0565b915061401c836133e0565b92508282101561402f5761402e613fd7565b5b828203905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614070601f836134aa565b915061407b8261403a565b602082019050919050565b6000602082019050818103600083015261409f81614063565b9050919050565b600081905092915050565b50565b60006140c16000836140a6565b91506140cc826140b1565b600082019050919050565b60006140e2826140b4565b9150819050919050565b60008160601b9050919050565b6000614104826140ec565b9050919050565b6000614116826140f9565b9050919050565b61412e61412982613434565b61410b565b82525050565b6000614140828461411d565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006141b4601b836134aa565b91506141bf8261417e565b602082019050919050565b600060208201905081810360008301526141e3816141a7565b9050919050565b60006141f5826133e0565b9150614200836133e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561423557614234613fd7565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006142766016836134aa565b915061428182614240565b602082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b60006142e26016836134aa565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b600061434e6017836134aa565b915061435982614318565b602082019050919050565b6000602082019050818103600083015261437d81614341565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b60006143e06024836134aa565b91506143eb82614384565b604082019050919050565b6000602082019050818103600083015261440f816143d3565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b600061444c601c836134aa565b915061445782614416565b602082019050919050565b6000602082019050818103600083015261447b8161443f565b9050919050565b600061448d826133e0565b9150614498836133e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d1576144d0613fd7565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006145126012836134aa565b915061451d826144dc565b602082019050919050565b6000602082019050818103600083015261454181614505565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145a4602f836134aa565b91506145af82614548565b604082019050919050565b600060208201905081810360008301526145d381614597565b9050919050565b600081905092915050565b60006145f08261349f565b6145fa81856145da565b935061460a8185602086016134bb565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461463881613fa5565b61464281866145da565b9450600182166000811461465d576001811461466e576146a1565b60ff198316865281860193506146a1565b61467785614616565b60005b838110156146995781548189015260018201915060208101905061467a565b838801955050505b50505092915050565b60006146b682866145e5565b91506146c282856145e5565b91506146ce828461462b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147376026836134aa565b9150614742826146db565b604082019050919050565b600060208201905081810360008301526147668161472a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147a36020836134aa565b91506147ae8261476d565b602082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614800826147d9565b61480a81856147e4565b935061481a8185602086016134bb565b614823816134ee565b840191505092915050565b600060808201905061484360008301876135b3565b61485060208301866135b3565b61485d60408301856133ea565b818103606083015261486f81846147f5565b905095945050505050565b60008151905061488981613351565b92915050565b6000602082840312156148a5576148a461331b565b5b60006148b38482850161487a565b91505092915050565b60006148c7826133e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148fa576148f9613fd7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061493f826133e0565b915061494a836133e0565b92508261495a57614959614905565b5b828204905092915050565b6000614970826133e0565b915061497b836133e0565b92508261498b5761498a614905565b5b82820690509291505056fea2646970667358221220201a2f684096e0dbe00491b9061e447b36caf2be024f8fa8f15483bcc5f626b464736f6c63430008090033

Deployed Bytecode Sourcemap

78100:6175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36011:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78394:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78805:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36913:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81507:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43404:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78276:111;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42837:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78764:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78511:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78435:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78552:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32664:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78700:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82885:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47043:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83811:82;;;;;;;;;;;;;:::i;:::-;;78636:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84112:160;;;;;;;;;;;;;:::i;:::-;;49964:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78599:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83161:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81224:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73234:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38306:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78204:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83027:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33848:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16790:103;;;;;;;;;;;;;:::i;:::-;;83901:73;;;;;;;;;;;;;:::i;:::-;;80947:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83621:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83544:69;;;;;;;;;;;;;:::i;:::-;;77110:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16142:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78866:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37089:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74150:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43962:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82808:69;;;;;;;;;;;;;:::i;:::-;;50755:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78962:1976;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83982:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72647:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78232:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82075:725;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83717:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78474:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83273:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44353:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83409:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36011:639;36096:4;36435:10;36420:25;;:11;:25;;;;:102;;;;36512:10;36497:25;;:11;:25;;;;36420:102;:179;;;;36589:10;36574:25;;:11;:25;;;;36420:179;36400:199;;36011:639;;;:::o;78394:34::-;;;;:::o;78805:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;36913:100::-;36967:13;37000:5;36993:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36913:100;:::o;81507:329::-;81574:7;81614:1;81598:12;;:17;81594:216;;;81657:22;:29;81680:5;81657:29;;;;;;;;;;;;;;;;81639:15;;:47;;;;:::i;:::-;81632:54;;;;81594:216;81724:1;81708:12;;:17;81704:106;;;81771:20;:27;81792:5;81771:27;;;;;;;;;;;;;;;;81749:19;;:49;;;;:::i;:::-;81742:56;;;;81704:106;81827:1;81820:8;;81507:329;;;;:::o;43404:218::-;43480:7;43505:16;43513:7;43505;:16::i;:::-;43500:64;;43530:34;;;;;;;;;;;;;;43500:64;43584:15;:24;43600:7;43584:24;;;;;;;;;;;:30;;;;;;;;;;;;43577:37;;43404:218;;;:::o;78276:111::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42837:408::-;42926:13;42942:16;42950:7;42942;:16::i;:::-;42926:32;;42998:5;42975:28;;:19;:17;:19::i;:::-;:28;;;42971:175;;43023:44;43040:5;43047:19;:17;:19::i;:::-;43023:16;:44::i;:::-;43018:128;;43095:35;;;;;;;;;;;;;;43018:128;42971:175;43191:2;43158:15;:24;43174:7;43158:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43229:7;43225:2;43209:28;;43218:5;43209:28;;;;;;;;;;;;42915:330;42837:408;;:::o;78764:31::-;;;;:::o;78511:34::-;;;;:::o;78435:32::-;;;;:::o;78552:38::-;;;;:::o;32664:323::-;32725:7;32953:15;:13;:15::i;:::-;32938:12;;32922:13;;:28;:46;32915:53;;32664:323;:::o;78700:55::-;;;;;;;;;;;;;;;;;:::o;82885:134::-;16028:13;:11;:13::i;:::-;82994:17:::1;82972:19;:39;;;;82885:134:::0;:::o;47043:2825::-;47185:27;47215;47234:7;47215:18;:27::i;:::-;47185:57;;47300:4;47259:45;;47275:19;47259:45;;;47255:86;;47313:28;;;;;;;;;;;;;;47255:86;47355:27;47384:23;47411:35;47438:7;47411:26;:35::i;:::-;47354:92;;;;47546:68;47571:15;47588:4;47594:19;:17;:19::i;:::-;47546:24;:68::i;:::-;47541:180;;47634:43;47651:4;47657:19;:17;:19::i;:::-;47634:16;:43::i;:::-;47629:92;;47686:35;;;;;;;;;;;;;;47629:92;47541:180;47752:1;47738:16;;:2;:16;;;47734:52;;;47763:23;;;;;;;;;;;;;;47734:52;47799:43;47821:4;47827:2;47831:7;47840:1;47799:21;:43::i;:::-;47935:15;47932:160;;;48075:1;48054:19;48047:30;47932:160;48472:18;:24;48491:4;48472:24;;;;;;;;;;;;;;;;48470:26;;;;;;;;;;;;48541:18;:22;48560:2;48541:22;;;;;;;;;;;;;;;;48539:24;;;;;;;;;;;48863:146;48900:2;48949:45;48964:4;48970:2;48974:19;48949:14;:45::i;:::-;29063:8;48921:73;48863:18;:146::i;:::-;48834:17;:26;48852:7;48834:26;;;;;;;;;;;:175;;;;49180:1;29063:8;49129:19;:47;:52;49125:627;;;49202:19;49234:1;49224:7;:11;49202:33;;49391:1;49357:17;:30;49375:11;49357:30;;;;;;;;;;;;:35;49353:384;;;49495:13;;49480:11;:28;49476:242;;49675:19;49642:17;:30;49660:11;49642:30;;;;;;;;;;;:52;;;;49476:242;49353:384;49183:569;49125:627;49799:7;49795:2;49780:27;;49789:4;49780:27;;;;;;;;;;;;49818:42;49839:4;49845:2;49849:7;49858:1;49818:20;:42::i;:::-;47174:2694;;;47043:2825;;;:::o;83811:82::-;16028:13;:11;:13::i;:::-;83884:1:::1;83869:12;:16;;;;83811:82::o:0;78636:57::-;;;;;;;;;;;;;;;;;:::o;84112:160::-;16028:13;:11;:13::i;:::-;4342:1:::1;4940:7;;:19;;4932:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4342:1;5073:7;:18;;;;84174:7:::2;84195;:5;:7::i;:::-;84187:21;;84216;84187:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84173:69;;;84261:2;84253:11;;;::::0;::::2;;84162:110;4298:1:::1;5252:7;:22;;;;84112:160::o:0;49964:193::-;50110:39;50127:4;50133:2;50137:7;50110:39;;;;;;;;;;;;:16;:39::i;:::-;49964:193;;;:::o;78599:28::-;;;;;;;;;;;;;:::o;83161:104::-;16028:13;:11;:13::i;:::-;83246:11:::1;83236:7;:21;;;;;;;;;;;;:::i;:::-;;83161:104:::0;:::o;81224:275::-;81343:4;81365:12;81407:5;81390:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;81380:34;;;;;;81365:49;;81432:59;81451:12;;81432:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81465:19;;81486:4;81432:18;:59::i;:::-;81425:66;;;81224:275;;;;;:::o;73234:528::-;73378:23;73444:22;73469:8;;:15;;73444:40;;73499:34;73557:14;73536:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;73499:73;;73592:9;73587:125;73608:14;73603:1;:19;73587:125;;73664:32;73684:8;;73693:1;73684:11;;;;;;;:::i;:::-;;;;;;;;73664:19;:32::i;:::-;73648:10;73659:1;73648:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;73624:3;;;;;73587:125;;;;73733:10;73726:17;;;;73234:528;;;;:::o;38306:152::-;38378:7;38421:27;38440:7;38421:18;:27::i;:::-;38398:52;;38306:152;;;:::o;78204:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;83027:126::-;16028:13;:11;:13::i;:::-;83128:17:::1;83110:15;:35;;;;83027:126:::0;:::o;33848:233::-;33920:7;33961:1;33944:19;;:5;:19;;;33940:60;;;33972:28;;;;;;;;;;;;;;33940:60;28007:13;34018:18;:25;34037:5;34018:25;;;;;;;;;;;;;;;;:55;34011:62;;33848:233;;;:::o;16790:103::-;16028:13;:11;:13::i;:::-;16855:30:::1;16882:1;16855:18;:30::i;:::-;16790:103::o:0;83901:73::-;16028:13;:11;:13::i;:::-;83965:1:::1;83950:12;:16;;;;83901:73::o:0;80947:269::-;16028:13;:11;:13::i;:::-;81051:1:::1;81037:11;:15;81029:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;81128:9;;81113:11;81097:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;81089:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;81175:33;81185:9;81196:11;81175:9;:33::i;:::-;80947:269:::0;;:::o;83621:88::-;16028:13;:11;:13::i;:::-;83695:6:::1;83688:4;:13;;;;83621:88:::0;:::o;83544:69::-;16028:13;:11;:13::i;:::-;83604:1:::1;83589:12;:16;;;;83544:69::o:0;77110:900::-;77188:16;77242:19;77276:25;77316:22;77341:16;77351:5;77341:9;:16::i;:::-;77316:41;;77372:25;77414:14;77400:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77372:57;;77444:31;;:::i;:::-;77495:9;77507:15;:13;:15::i;:::-;77495:27;;77490:472;77539:14;77524:11;:29;77490:472;;77591:15;77604:1;77591:12;:15::i;:::-;77579:27;;77629:9;:16;;;77625:73;;;77670:8;;77625:73;77746:1;77720:28;;:9;:14;;;:28;;;77716:111;;77793:9;:14;;;77773:34;;77716:111;77870:5;77849:26;;:17;:26;;;77845:102;;;77926:1;77900:8;77909:13;;;;;;77900:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;77845:102;77490:472;77555:3;;;;;77490:472;;;;77983:8;77976:15;;;;;;;77110:900;;;:::o;16142:87::-;16188:7;16215:6;;;;;;;;;;;16208:13;;16142:87;:::o;78866:34::-;;;;:::o;37089:104::-;37145:13;37178:7;37171:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37089:104;:::o;74150:2513::-;74293:16;74360:4;74351:5;:13;74347:45;;74373:19;;;;;;;;;;;;;;74347:45;74407:19;74441:17;74461:14;:12;:14::i;:::-;74441:34;;74561:15;:13;:15::i;:::-;74553:5;:23;74549:87;;;74605:15;:13;:15::i;:::-;74597:23;;74549:87;74712:9;74705:4;:16;74701:73;;;74749:9;74742:16;;74701:73;74788:25;74816:16;74826:5;74816:9;:16::i;:::-;74788:44;;75010:4;75002:5;:12;74998:278;;;75035:19;75064:5;75057:4;:12;75035:34;;75106:17;75092:11;:31;75088:111;;;75168:11;75148:31;;75088:111;75016:198;74998:278;;;75259:1;75239:21;;74998:278;75290:25;75332:17;75318:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75290:60;;75390:1;75369:17;:22;75365:78;;;75419:8;75412:15;;;;;;;;75365:78;75587:31;75621:26;75641:5;75621:19;:26::i;:::-;75587:60;;75662:25;75907:9;:16;;;75902:92;;75964:9;:14;;;75944:34;;75902:92;76013:9;76025:5;76013:17;;76008:478;76037:4;76032:1;:9;;:45;;;;;76060:17;76045:11;:32;;76032:45;76008:478;;;76115:15;76128:1;76115:12;:15::i;:::-;76103:27;;76153:9;:16;;;76149:73;;;76194:8;;76149:73;76270:1;76244:28;;:9;:14;;;:28;;;76240:111;;76317:9;:14;;;76297:34;;76240:111;76394:5;76373:26;;:17;:26;;;76369:102;;;76450:1;76424:8;76433:13;;;;;;76424:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;76369:102;76008:478;76079:3;;;;;76008:478;;;;76588:11;76578:8;76571:29;76636:8;76629:15;;;;;;;;74150:2513;;;;;;:::o;43962:234::-;44109:8;44057:18;:39;44076:19;:17;:19::i;:::-;44057:39;;;;;;;;;;;;;;;:49;44097:8;44057:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44169:8;44133:55;;44148:19;:17;:19::i;:::-;44133:55;;;44179:8;44133:55;;;;;;:::i;:::-;;;;;;;;43962:234;;:::o;82808:69::-;16028:13;:11;:13::i;:::-;82865:4:::1;82854:8;;:15;;;;;;;;;;;;;;;;;;82808:69::o:0;50755:407::-;50930:31;50943:4;50949:2;50953:7;50930:12;:31::i;:::-;50994:1;50976:2;:14;;;:19;50972:183;;51015:56;51046:4;51052:2;51056:7;51065:5;51015:30;:56::i;:::-;51010:145;;51099:40;;;;;;;;;;;;;;51010:145;50972:183;50755:407;;;;:::o;78962:1976::-;79079:14;79096:13;:11;:13::i;:::-;79079:30;;79142:1;79128:11;:15;79120:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;79218:9;;79203:11;79194:6;:20;;;;:::i;:::-;:33;;79186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79283:7;:5;:7::i;:::-;79269:21;;:10;:21;;;79265:1407;;79330:1;79315:12;;:16;79307:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;79393:1;79377:12;;:17;79373:1288;;;79415:24;79442:22;:34;79465:10;79442:34;;;;;;;;;;;;;;;;79415:61;;79525:39;79539:10;79551:12;;79525:13;:39::i;:::-;79495:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;79695:15;;79680:11;:30;;79650:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;79873:15;;79858:11;79839:16;:30;;;;:::i;:::-;:49;;79809:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;80031:11;80022:6;;:20;;;;:::i;:::-;80009:9;:33;;79979:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;79396:724;79373:1288;;;80146:1;80130:12;;:17;80126:535;;;80168:24;80195:20;:32;80216:10;80195:32;;;;;;;;;;;;;;;;80168:59;;80291:19;;80276:11;:34;;80246:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;80473:19;;80458:11;80439:16;:30;;;;:::i;:::-;:53;;80409:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;80611:11;80604:4;;:18;;;;:::i;:::-;80591:9;:31;;80583:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;80149:512;80126:535;79373:1288;79265:1407;80684:34;80694:10;80706:11;80684:9;:34::i;:::-;80749:1;80733:12;;:17;80729:202;;;80805:11;80767:22;:34;80790:10;80767:34;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;80729:202;;;80854:1;80838:12;;:17;80834:97;;;80908:11;80872:20;:32;80893:10;80872:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;80834:97;80729:202;79068:1870;78962:1976;;;:::o;83982:122::-;16028:13;:11;:13::i;:::-;84085:11:::1;84063:19;:33;;;;83982:122:::0;:::o;72647:428::-;72731:21;;:::i;:::-;72765:31;;:::i;:::-;72821:15;:13;:15::i;:::-;72811:7;:25;:54;;;;72851:14;:12;:14::i;:::-;72840:7;:25;;72811:54;72807:103;;;72889:9;72882:16;;;;;72807:103;72932:21;72945:7;72932:12;:21::i;:::-;72920:33;;72968:9;:16;;;72964:65;;;73008:9;73001:16;;;;;72964:65;73046:21;73059:7;73046:12;:21::i;:::-;73039:28;;;72647:428;;;;:::o;78232:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82075:725::-;82193:13;82246:16;82254:7;82246;:16::i;:::-;82224:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;82366:5;82354:17;;:8;;;;;;;;;;;:17;;;82350:71;;;82395:14;82388:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82350:71;82433:28;82464:10;:8;:10::i;:::-;82433:41;;82536:1;82511:14;82505:28;:32;:287;;;;;;;;;;;;;;;;;82629:14;82670:18;:7;:16;:18::i;:::-;82715:13;82586:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82505:287;82485:307;;;82075:725;;;;:::o;83717:86::-;16028:13;:11;:13::i;:::-;83789:6:::1;83780;:15;;;;83717:86:::0;:::o;78474:30::-;;;;:::o;83273:128::-;16028:13;:11;:13::i;:::-;83376:17:::1;83360:13;:33;;;;;;;;;;;;:::i;:::-;;83273:128:::0;:::o;44353:164::-;44450:4;44474:18;:25;44493:5;44474:25;;;;;;;;;;;;;;;:35;44500:8;44474:35;;;;;;;;;;;;;;;;;;;;;;;;;44467:42;;44353:164;;;;:::o;83409:126::-;16028:13;:11;:13::i;:::-;83512:15:::1;83495:14;:32;;;;;;;;;;;;:::i;:::-;;83409:126:::0;:::o;17048:201::-;16028:13;:11;:13::i;:::-;17157:1:::1;17137:22;;:8;:22;;;;17129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17213:28;17232:8;17213:18;:28::i;:::-;17048:201:::0;:::o;44775:282::-;44840:4;44896:7;44877:15;:13;:15::i;:::-;:26;;:66;;;;;44930:13;;44920:7;:23;44877:66;:153;;;;;45029:1;28783:8;44981:17;:26;44999:7;44981:26;;;;;;;;;;;;:44;:49;44877:153;44857:173;;44775:282;;;:::o;67083:105::-;67143:7;67170:10;67163:17;;67083:105;:::o;81965:101::-;82030:7;82057:1;82050:8;;81965:101;:::o;16307:132::-;16382:12;:10;:12::i;:::-;16371:23;;:7;:5;:7::i;:::-;:23;;;16363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16307:132::o;39461:1275::-;39528:7;39548:12;39563:7;39548:22;;39631:4;39612:15;:13;:15::i;:::-;:23;39608:1061;;39665:13;;39658:4;:20;39654:1015;;;39703:14;39720:17;:23;39738:4;39720:23;;;;;;;;;;;;39703:40;;39837:1;28783:8;39809:6;:24;:29;39805:845;;;40474:113;40491:1;40481:6;:11;40474:113;;;40534:17;:25;40552:6;;;;;;;40534:25;;;;;;;;;;;;40525:34;;40474:113;;;40620:6;40613:13;;;;;;39805:845;39680:989;39654:1015;39608:1061;40697:31;;;;;;;;;;;;;;39461:1275;;;;:::o;45938:485::-;46040:27;46069:23;46110:38;46151:15;:24;46167:7;46151:24;;;;;;;;;;;46110:65;;46328:18;46305:41;;46385:19;46379:26;46360:45;;46290:126;45938:485;;;:::o;45166:659::-;45315:11;45480:16;45473:5;45469:28;45460:37;;45640:16;45629:9;45625:32;45612:45;;45790:15;45779:9;45776:30;45768:5;45757:9;45754:20;45751:56;45741:66;;45166:659;;;;;:::o;51824:159::-;;;;;:::o;66392:311::-;66527:7;66547:16;29187:3;66573:19;:41;;66547:68;;29187:3;66641:31;66652:4;66658:2;66662:9;66641:10;:31::i;:::-;66633:40;;:62;;66626:69;;;66392:311;;;;;:::o;41284:450::-;41364:14;41532:16;41525:5;41521:28;41512:37;;41709:5;41695:11;41670:23;41666:41;41663:52;41656:5;41653:63;41643:73;;41284:450;;;;:::o;52648:158::-;;;;;:::o;6508:190::-;6633:4;6686;6657:25;6670:5;6677:4;6657:12;:25::i;:::-;:33;6650:40;;6508:190;;;;;:::o;17409:191::-;17483:16;17502:6;;;;;;;;;;;17483:25;;17528:8;17519:6;;:17;;;;;;;;;;;;;;;;;;17583:8;17552:40;;17573:8;17552:40;;;;;;;;;;;;17472:128;17409:191;:::o;60915:112::-;60992:27;61002:2;61006:8;60992:27;;;;;;;;;;;;:9;:27::i;:::-;60915:112;;:::o;38909:161::-;38977:21;;:::i;:::-;39018:44;39037:17;:24;39055:5;39037:24;;;;;;;;;;;;39018:18;:44::i;:::-;39011:51;;38909:161;;;:::o;32351:103::-;32406:7;32433:13;;32426:20;;32351:103;:::o;53246:716::-;53409:4;53455:2;53430:45;;;53476:19;:17;:19::i;:::-;53497:4;53503:7;53512:5;53430:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53426:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53730:1;53713:6;:13;:18;53709:235;;;53759:40;;;;;;;;;;;;;;53709:235;53902:6;53896:13;53887:6;53883:2;53879:15;53872:38;53426:529;53599:54;;;53589:64;;;:6;:64;;;;53582:71;;;53246:716;;;;;;:::o;38647:166::-;38717:21;;:::i;:::-;38758:47;38777:27;38796:7;38777:18;:27::i;:::-;38758:18;:47::i;:::-;38751:54;;38647:166;;;:::o;81848:108::-;81908:13;81941:7;81934:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81848:108;:::o;463:723::-;519:13;749:1;740:5;:10;736:53;;;767:10;;;;;;;;;;;;;;;;;;;;;736:53;799:12;814:5;799:20;;830:14;855:78;870:1;862:4;:9;855:78;;888:8;;;;;:::i;:::-;;;;919:2;911:10;;;;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943:39;;993:154;1009:1;1000:5;:10;993:154;;1037:1;1027:11;;;;;:::i;:::-;;;1104:2;1096:5;:10;;;;:::i;:::-;1083:2;:24;;;;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1133:2;1124:11;;;;;:::i;:::-;;;993:154;;;1171:6;1157:21;;;;;463:723;;;;:::o;14693:98::-;14746:7;14773:10;14766:17;;14693:98;:::o;66093:147::-;66230:6;66093:147;;;;;:::o;7375:296::-;7458:7;7478:20;7501:4;7478:27;;7521:9;7516:118;7540:5;:12;7536:1;:16;7516:118;;;7589:33;7599:12;7613:5;7619:1;7613:8;;;;;;;;:::i;:::-;;;;;;;;7589:9;:33::i;:::-;7574:48;;7554:3;;;;;:::i;:::-;;;;7516:118;;;;7651:12;7644:19;;;7375:296;;;;:::o;60142:689::-;60273:19;60279:2;60283:8;60273:5;:19::i;:::-;60352:1;60334:2;:14;;;:19;60330:483;;60374:11;60388:13;;60374:27;;60420:13;60442:8;60436:3;:14;60420:30;;60469:233;60500:62;60539:1;60543:2;60547:7;;;;;;60556:5;60500:30;:62::i;:::-;60495:167;;60598:40;;;;;;;;;;;;;;60495:167;60697:3;60689:5;:11;60469:233;;60784:3;60767:13;;:20;60763:34;;60789:8;;;60763:34;60355:458;;60330:483;60142:689;;;:::o;40835:366::-;40901:31;;:::i;:::-;40978:6;40945:9;:14;;:41;;;;;;;;;;;28666:3;41031:6;:33;;40997:9;:24;;:68;;;;;;;;;;;41123:1;28783:8;41095:6;:24;:29;;41076:9;:16;;:48;;;;;;;;;;;29187:3;41164:6;:28;;41135:9;:19;;:58;;;;;;;;;;;40835:366;;;:::o;13582:149::-;13645:7;13676:1;13672;:5;:51;;13703:20;13718:1;13721;13703:14;:20::i;:::-;13672:51;;;13680:20;13695:1;13698;13680:14;:20::i;:::-;13672:51;13665:58;;13582:149;;;;:::o;54424:2966::-;54497:20;54520:13;;54497:36;;54560:1;54548:8;:13;54544:44;;;54570:18;;;;;;;;;;;;;;54544:44;54601:61;54631:1;54635:2;54639:12;54653:8;54601:21;:61::i;:::-;55145:1;28145:2;55115:1;:26;;55114:32;55102:8;:45;55076:18;:22;55095:2;55076:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55424:139;55461:2;55515:33;55538:1;55542:2;55546:1;55515:14;:33::i;:::-;55482:30;55503:8;55482:20;:30::i;:::-;:66;55424:18;:139::i;:::-;55390:17;:31;55408:12;55390:31;;;;;;;;;;;:173;;;;55580:16;55611:11;55640:8;55625:12;:23;55611:37;;56161:16;56157:2;56153:25;56141:37;;56533:12;56493:8;56452:1;56390:25;56331:1;56270;56243:335;56904:1;56890:12;56886:20;56844:346;56945:3;56936:7;56933:16;56844:346;;57163:7;57153:8;57150:1;57123:25;57120:1;57117;57112:59;56998:1;56989:7;56985:15;56974:26;;56844:346;;;56848:77;57235:1;57223:8;:13;57219:45;;;57245:19;;;;;;;;;;;;;;57219:45;57297:3;57281:13;:19;;;;54850:2462;;57322:60;57351:1;57355:2;57359:12;57373:8;57322:20;:60::i;:::-;54486:2904;54424:2966;;:::o;13739:268::-;13807:13;13914:1;13908:4;13901:15;13943:1;13937:4;13930:15;13984:4;13978;13968:21;13959:30;;13739:268;;;;:::o;41836:324::-;41906:14;42139:1;42129:8;42126:15;42100:24;42096:46;42086:56;;41836:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:329::-;2519:6;2568:2;2556:9;2547:7;2543:23;2539:32;2536:119;;;2574:79;;:::i;:::-;2536:119;2694:1;2719:53;2764:7;2755:6;2744:9;2740:22;2719:53;:::i;:::-;2709:63;;2665:117;2460:329;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:307::-;3143:1;3153:113;3167:6;3164:1;3161:13;3153:113;;;3252:1;3247:3;3243:11;3237:18;3233:1;3228:3;3224:11;3217:39;3189:2;3186:1;3182:10;3177:15;;3153:113;;;3284:6;3281:1;3278:13;3275:101;;;3364:1;3355:6;3350:3;3346:16;3339:27;3275:101;3124:258;3075:307;;;:::o;3388:102::-;3429:6;3480:2;3476:7;3471:2;3464:5;3460:14;3456:28;3446:38;;3388:102;;;:::o;3496:364::-;3584:3;3612:39;3645:5;3612:39;:::i;:::-;3667:71;3731:6;3726:3;3667:71;:::i;:::-;3660:78;;3747:52;3792:6;3787:3;3780:4;3773:5;3769:16;3747:52;:::i;:::-;3824:29;3846:6;3824:29;:::i;:::-;3819:3;3815:39;3808:46;;3588:272;3496:364;;;;:::o;3866:313::-;3979:4;4017:2;4006:9;4002:18;3994:26;;4066:9;4060:4;4056:20;4052:1;4041:9;4037:17;4030:47;4094:78;4167:4;4158:6;4094:78;:::i;:::-;4086:86;;3866:313;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:329::-;4517:6;4566:2;4554:9;4545:7;4541:23;4537:32;4534:119;;;4572:79;;:::i;:::-;4534:119;4692:1;4717:53;4762:7;4753:6;4742:9;4738:22;4717:53;:::i;:::-;4707:63;;4663:117;4458:329;;;;:::o;4793:118::-;4880:24;4898:5;4880:24;:::i;:::-;4875:3;4868:37;4793:118;;:::o;4917:222::-;5010:4;5048:2;5037:9;5033:18;5025:26;;5061:71;5129:1;5118:9;5114:17;5105:6;5061:71;:::i;:::-;4917:222;;;;:::o;5145:474::-;5213:6;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5145:474;;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:117::-;8980:1;8977;8970:12;8994:117;9103:1;9100;9093:12;9134:568;9207:8;9217:6;9267:3;9260:4;9252:6;9248:17;9244:27;9234:122;;9275:79;;:::i;:::-;9234:122;9388:6;9375:20;9365:30;;9418:18;9410:6;9407:30;9404:117;;;9440:79;;:::i;:::-;9404:117;9554:4;9546:6;9542:17;9530:29;;9608:3;9600:4;9592:6;9588:17;9578:8;9574:32;9571:41;9568:128;;;9615:79;;:::i;:::-;9568:128;9134:568;;;;;:::o;9708:704::-;9803:6;9811;9819;9868:2;9856:9;9847:7;9843:23;9839:32;9836:119;;;9874:79;;:::i;:::-;9836:119;9994:1;10019:53;10064:7;10055:6;10044:9;10040:22;10019:53;:::i;:::-;10009:63;;9965:117;10149:2;10138:9;10134:18;10121:32;10180:18;10172:6;10169:30;10166:117;;;10202:79;;:::i;:::-;10166:117;10315:80;10387:7;10378:6;10367:9;10363:22;10315:80;:::i;:::-;10297:98;;;;10092:313;9708:704;;;;;:::o;10435:568::-;10508:8;10518:6;10568:3;10561:4;10553:6;10549:17;10545:27;10535:122;;10576:79;;:::i;:::-;10535:122;10689:6;10676:20;10666:30;;10719:18;10711:6;10708:30;10705:117;;;10741:79;;:::i;:::-;10705:117;10855:4;10847:6;10843:17;10831:29;;10909:3;10901:4;10893:6;10889:17;10879:8;10875:32;10872:41;10869:128;;;10916:79;;:::i;:::-;10869:128;10435:568;;;;;:::o;11009:559::-;11095:6;11103;11152:2;11140:9;11131:7;11127:23;11123:32;11120:119;;;11158:79;;:::i;:::-;11120:119;11306:1;11295:9;11291:17;11278:31;11336:18;11328:6;11325:30;11322:117;;;11358:79;;:::i;:::-;11322:117;11471:80;11543:7;11534:6;11523:9;11519:22;11471:80;:::i;:::-;11453:98;;;;11249:312;11009:559;;;;;:::o;11574:145::-;11672:6;11706:5;11700:12;11690:22;;11574:145;;;:::o;11725:215::-;11855:11;11889:6;11884:3;11877:19;11929:4;11924:3;11920:14;11905:29;;11725:215;;;;:::o;11946:163::-;12044:4;12067:3;12059:11;;12097:4;12092:3;12088:14;12080:22;;11946:163;;;:::o;12115:108::-;12192:24;12210:5;12192:24;:::i;:::-;12187:3;12180:37;12115:108;;:::o;12229:101::-;12265:7;12305:18;12298:5;12294:30;12283:41;;12229:101;;;:::o;12336:105::-;12411:23;12428:5;12411:23;:::i;:::-;12406:3;12399:36;12336:105;;:::o;12447:99::-;12518:21;12533:5;12518:21;:::i;:::-;12513:3;12506:34;12447:99;;:::o;12552:91::-;12588:7;12628:8;12621:5;12617:20;12606:31;;12552:91;;;:::o;12649:105::-;12724:23;12741:5;12724:23;:::i;:::-;12719:3;12712:36;12649:105;;:::o;12832:864::-;12981:4;12976:3;12972:14;13068:4;13061:5;13057:16;13051:23;13087:63;13144:4;13139:3;13135:14;13121:12;13087:63;:::i;:::-;12996:164;13252:4;13245:5;13241:16;13235:23;13271:61;13326:4;13321:3;13317:14;13303:12;13271:61;:::i;:::-;13170:172;13426:4;13419:5;13415:16;13409:23;13445:57;13496:4;13491:3;13487:14;13473:12;13445:57;:::i;:::-;13352:160;13599:4;13592:5;13588:16;13582:23;13618:61;13673:4;13668:3;13664:14;13650:12;13618:61;:::i;:::-;13522:167;12950:746;12832:864;;:::o;13702:303::-;13833:10;13854:108;13958:3;13950:6;13854:108;:::i;:::-;13994:4;13989:3;13985:14;13971:28;;13702:303;;;;:::o;14011:144::-;14112:4;14144;14139:3;14135:14;14127:22;;14011:144;;;:::o;14237:980::-;14418:3;14447:85;14526:5;14447:85;:::i;:::-;14548:117;14658:6;14653:3;14548:117;:::i;:::-;14541:124;;14689:87;14770:5;14689:87;:::i;:::-;14799:7;14830:1;14815:377;14840:6;14837:1;14834:13;14815:377;;;14916:6;14910:13;14943:125;15064:3;15049:13;14943:125;:::i;:::-;14936:132;;15091:91;15175:6;15091:91;:::i;:::-;15081:101;;14875:317;14862:1;14859;14855:9;14850:14;;14815:377;;;14819:14;15208:3;15201:10;;14423:794;;;14237:980;;;;:::o;15223:497::-;15428:4;15466:2;15455:9;15451:18;15443:26;;15515:9;15509:4;15505:20;15501:1;15490:9;15486:17;15479:47;15543:170;15708:4;15699:6;15543:170;:::i;:::-;15535:178;;15223:497;;;;:::o;15726:474::-;15794:6;15802;15851:2;15839:9;15830:7;15826:23;15822:32;15819:119;;;15857:79;;:::i;:::-;15819:119;15977:1;16002:53;16047:7;16038:6;16027:9;16023:22;16002:53;:::i;:::-;15992:63;;15948:117;16104:2;16130:53;16175:7;16166:6;16155:9;16151:22;16130:53;:::i;:::-;16120:63;;16075:118;15726:474;;;;;:::o;16206:114::-;16273:6;16307:5;16301:12;16291:22;;16206:114;;;:::o;16326:184::-;16425:11;16459:6;16454:3;16447:19;16499:4;16494:3;16490:14;16475:29;;16326:184;;;;:::o;16516:132::-;16583:4;16606:3;16598:11;;16636:4;16631:3;16627:14;16619:22;;16516:132;;;:::o;16654:108::-;16731:24;16749:5;16731:24;:::i;:::-;16726:3;16719:37;16654:108;;:::o;16768:179::-;16837:10;16858:46;16900:3;16892:6;16858:46;:::i;:::-;16936:4;16931:3;16927:14;16913:28;;16768:179;;;;:::o;16953:113::-;17023:4;17055;17050:3;17046:14;17038:22;;16953:113;;;:::o;17102:732::-;17221:3;17250:54;17298:5;17250:54;:::i;:::-;17320:86;17399:6;17394:3;17320:86;:::i;:::-;17313:93;;17430:56;17480:5;17430:56;:::i;:::-;17509:7;17540:1;17525:284;17550:6;17547:1;17544:13;17525:284;;;17626:6;17620:13;17653:63;17712:3;17697:13;17653:63;:::i;:::-;17646:70;;17739:60;17792:6;17739:60;:::i;:::-;17729:70;;17585:224;17572:1;17569;17565:9;17560:14;;17525:284;;;17529:14;17825:3;17818:10;;17226:608;;;17102:732;;;;:::o;17840:373::-;17983:4;18021:2;18010:9;18006:18;17998:26;;18070:9;18064:4;18060:20;18056:1;18045:9;18041:17;18034:47;18098:108;18201:4;18192:6;18098:108;:::i;:::-;18090:116;;17840:373;;;;:::o;18219:77::-;18256:7;18285:5;18274:16;;18219:77;;;:::o;18302:118::-;18389:24;18407:5;18389:24;:::i;:::-;18384:3;18377:37;18302:118;;:::o;18426:222::-;18519:4;18557:2;18546:9;18542:18;18534:26;;18570:71;18638:1;18627:9;18623:17;18614:6;18570:71;:::i;:::-;18426:222;;;;:::o;18654:619::-;18731:6;18739;18747;18796:2;18784:9;18775:7;18771:23;18767:32;18764:119;;;18802:79;;:::i;:::-;18764:119;18922:1;18947:53;18992:7;18983:6;18972:9;18968:22;18947:53;:::i;:::-;18937:63;;18893:117;19049:2;19075:53;19120:7;19111:6;19100:9;19096:22;19075:53;:::i;:::-;19065:63;;19020:118;19177:2;19203:53;19248:7;19239:6;19228:9;19224:22;19203:53;:::i;:::-;19193:63;;19148:118;18654:619;;;;;:::o;19279:116::-;19349:21;19364:5;19349:21;:::i;:::-;19342:5;19339:32;19329:60;;19385:1;19382;19375:12;19329:60;19279:116;:::o;19401:133::-;19444:5;19482:6;19469:20;19460:29;;19498:30;19522:5;19498:30;:::i;:::-;19401:133;;;;:::o;19540:468::-;19605:6;19613;19662:2;19650:9;19641:7;19637:23;19633:32;19630:119;;;19668:79;;:::i;:::-;19630:119;19788:1;19813:53;19858:7;19849:6;19838:9;19834:22;19813:53;:::i;:::-;19803:63;;19759:117;19915:2;19941:50;19983:7;19974:6;19963:9;19959:22;19941:50;:::i;:::-;19931:60;;19886:115;19540:468;;;;;:::o;20014:307::-;20075:4;20165:18;20157:6;20154:30;20151:56;;;20187:18;;:::i;:::-;20151:56;20225:29;20247:6;20225:29;:::i;:::-;20217:37;;20309:4;20303;20299:15;20291:23;;20014:307;;;:::o;20327:410::-;20404:5;20429:65;20445:48;20486:6;20445:48;:::i;:::-;20429:65;:::i;:::-;20420:74;;20517:6;20510:5;20503:21;20555:4;20548:5;20544:16;20593:3;20584:6;20579:3;20575:16;20572:25;20569:112;;;20600:79;;:::i;:::-;20569:112;20690:41;20724:6;20719:3;20714;20690:41;:::i;:::-;20410:327;20327:410;;;;;:::o;20756:338::-;20811:5;20860:3;20853:4;20845:6;20841:17;20837:27;20827:122;;20868:79;;:::i;:::-;20827:122;20985:6;20972:20;21010:78;21084:3;21076:6;21069:4;21061:6;21057:17;21010:78;:::i;:::-;21001:87;;20817:277;20756:338;;;;:::o;21100:943::-;21195:6;21203;21211;21219;21268:3;21256:9;21247:7;21243:23;21239:33;21236:120;;;21275:79;;:::i;:::-;21236:120;21395:1;21420:53;21465:7;21456:6;21445:9;21441:22;21420:53;:::i;:::-;21410:63;;21366:117;21522:2;21548:53;21593:7;21584:6;21573:9;21569:22;21548:53;:::i;:::-;21538:63;;21493:118;21650:2;21676:53;21721:7;21712:6;21701:9;21697:22;21676:53;:::i;:::-;21666:63;;21621:118;21806:2;21795:9;21791:18;21778:32;21837:18;21829:6;21826:30;21823:117;;;21859:79;;:::i;:::-;21823:117;21964:62;22018:7;22009:6;21998:9;21994:22;21964:62;:::i;:::-;21954:72;;21749:287;21100:943;;;;;;;:::o;22049:704::-;22144:6;22152;22160;22209:2;22197:9;22188:7;22184:23;22180:32;22177:119;;;22215:79;;:::i;:::-;22177:119;22335:1;22360:53;22405:7;22396:6;22385:9;22381:22;22360:53;:::i;:::-;22350:63;;22306:117;22490:2;22479:9;22475:18;22462:32;22521:18;22513:6;22510:30;22507:117;;;22543:79;;:::i;:::-;22507:117;22656:80;22728:7;22719:6;22708:9;22704:22;22656:80;:::i;:::-;22638:98;;;;22433:313;22049:704;;;;;:::o;22759:122::-;22832:24;22850:5;22832:24;:::i;:::-;22825:5;22822:35;22812:63;;22871:1;22868;22861:12;22812:63;22759:122;:::o;22887:139::-;22933:5;22971:6;22958:20;22949:29;;22987:33;23014:5;22987:33;:::i;:::-;22887:139;;;;:::o;23032:329::-;23091:6;23140:2;23128:9;23119:7;23115:23;23111:32;23108:119;;;23146:79;;:::i;:::-;23108:119;23266:1;23291:53;23336:7;23327:6;23316:9;23312:22;23291:53;:::i;:::-;23281:63;;23237:117;23032:329;;;;:::o;23439:874::-;23598:4;23593:3;23589:14;23685:4;23678:5;23674:16;23668:23;23704:63;23761:4;23756:3;23752:14;23738:12;23704:63;:::i;:::-;23613:164;23869:4;23862:5;23858:16;23852:23;23888:61;23943:4;23938:3;23934:14;23920:12;23888:61;:::i;:::-;23787:172;24043:4;24036:5;24032:16;24026:23;24062:57;24113:4;24108:3;24104:14;24090:12;24062:57;:::i;:::-;23969:160;24216:4;24209:5;24205:16;24199:23;24235:61;24290:4;24285:3;24281:14;24267:12;24235:61;:::i;:::-;24139:167;23567:746;23439:874;;:::o;24319:347::-;24474:4;24512:3;24501:9;24497:19;24489:27;;24526:133;24656:1;24645:9;24641:17;24632:6;24526:133;:::i;:::-;24319:347;;;;:::o;24672:474::-;24740:6;24748;24797:2;24785:9;24776:7;24772:23;24768:32;24765:119;;;24803:79;;:::i;:::-;24765:119;24923:1;24948:53;24993:7;24984:6;24973:9;24969:22;24948:53;:::i;:::-;24938:63;;24894:117;25050:2;25076:53;25121:7;25112:6;25101:9;25097:22;25076:53;:::i;:::-;25066:63;;25021:118;24672:474;;;;;:::o;25152:180::-;25200:77;25197:1;25190:88;25297:4;25294:1;25287:15;25321:4;25318:1;25311:15;25338:320;25382:6;25419:1;25413:4;25409:12;25399:22;;25466:1;25460:4;25456:12;25487:18;25477:81;;25543:4;25535:6;25531:17;25521:27;;25477:81;25605:2;25597:6;25594:14;25574:18;25571:38;25568:84;;;25624:18;;:::i;:::-;25568:84;25389:269;25338:320;;;:::o;25664:180::-;25712:77;25709:1;25702:88;25809:4;25806:1;25799:15;25833:4;25830:1;25823:15;25850:191;25890:4;25910:20;25928:1;25910:20;:::i;:::-;25905:25;;25944:20;25962:1;25944:20;:::i;:::-;25939:25;;25983:1;25980;25977:8;25974:34;;;25988:18;;:::i;:::-;25974:34;26033:1;26030;26026:9;26018:17;;25850:191;;;;:::o;26047:181::-;26187:33;26183:1;26175:6;26171:14;26164:57;26047:181;:::o;26234:366::-;26376:3;26397:67;26461:2;26456:3;26397:67;:::i;:::-;26390:74;;26473:93;26562:3;26473:93;:::i;:::-;26591:2;26586:3;26582:12;26575:19;;26234:366;;;:::o;26606:419::-;26772:4;26810:2;26799:9;26795:18;26787:26;;26859:9;26853:4;26849:20;26845:1;26834:9;26830:17;26823:47;26887:131;27013:4;26887:131;:::i;:::-;26879:139;;26606:419;;;:::o;27031:147::-;27132:11;27169:3;27154:18;;27031:147;;;;:::o;27184:114::-;;:::o;27304:398::-;27463:3;27484:83;27565:1;27560:3;27484:83;:::i;:::-;27477:90;;27576:93;27665:3;27576:93;:::i;:::-;27694:1;27689:3;27685:11;27678:18;;27304:398;;;:::o;27708:379::-;27892:3;27914:147;28057:3;27914:147;:::i;:::-;27907:154;;28078:3;28071:10;;27708:379;;;:::o;28093:94::-;28126:8;28174:5;28170:2;28166:14;28145:35;;28093:94;;;:::o;28193:::-;28232:7;28261:20;28275:5;28261:20;:::i;:::-;28250:31;;28193:94;;;:::o;28293:100::-;28332:7;28361:26;28381:5;28361:26;:::i;:::-;28350:37;;28293:100;;;:::o;28399:157::-;28504:45;28524:24;28542:5;28524:24;:::i;:::-;28504:45;:::i;:::-;28499:3;28492:58;28399:157;;:::o;28562:256::-;28674:3;28689:75;28760:3;28751:6;28689:75;:::i;:::-;28789:2;28784:3;28780:12;28773:19;;28809:3;28802:10;;28562:256;;;;:::o;28824:180::-;28872:77;28869:1;28862:88;28969:4;28966:1;28959:15;28993:4;28990:1;28983:15;29010:177;29150:29;29146:1;29138:6;29134:14;29127:53;29010:177;:::o;29193:366::-;29335:3;29356:67;29420:2;29415:3;29356:67;:::i;:::-;29349:74;;29432:93;29521:3;29432:93;:::i;:::-;29550:2;29545:3;29541:12;29534:19;;29193:366;;;:::o;29565:419::-;29731:4;29769:2;29758:9;29754:18;29746:26;;29818:9;29812:4;29808:20;29804:1;29793:9;29789:17;29782:47;29846:131;29972:4;29846:131;:::i;:::-;29838:139;;29565:419;;;:::o;29990:305::-;30030:3;30049:20;30067:1;30049:20;:::i;:::-;30044:25;;30083:20;30101:1;30083:20;:::i;:::-;30078:25;;30237:1;30169:66;30165:74;30162:1;30159:81;30156:107;;;30243:18;;:::i;:::-;30156:107;30287:1;30284;30280:9;30273:16;;29990:305;;;;:::o;30301:172::-;30441:24;30437:1;30429:6;30425:14;30418:48;30301:172;:::o;30479:366::-;30621:3;30642:67;30706:2;30701:3;30642:67;:::i;:::-;30635:74;;30718:93;30807:3;30718:93;:::i;:::-;30836:2;30831:3;30827:12;30820:19;;30479:366;;;:::o;30851:419::-;31017:4;31055:2;31044:9;31040:18;31032:26;;31104:9;31098:4;31094:20;31090:1;31079:9;31075:17;31068:47;31132:131;31258:4;31132:131;:::i;:::-;31124:139;;30851:419;;;:::o;31276:172::-;31416:24;31412:1;31404:6;31400:14;31393:48;31276:172;:::o;31454:366::-;31596:3;31617:67;31681:2;31676:3;31617:67;:::i;:::-;31610:74;;31693:93;31782:3;31693:93;:::i;:::-;31811:2;31806:3;31802:12;31795:19;;31454:366;;;:::o;31826:419::-;31992:4;32030:2;32019:9;32015:18;32007:26;;32079:9;32073:4;32069:20;32065:1;32054:9;32050:17;32043:47;32107:131;32233:4;32107:131;:::i;:::-;32099:139;;31826:419;;;:::o;32251:173::-;32391:25;32387:1;32379:6;32375:14;32368:49;32251:173;:::o;32430:366::-;32572:3;32593:67;32657:2;32652:3;32593:67;:::i;:::-;32586:74;;32669:93;32758:3;32669:93;:::i;:::-;32787:2;32782:3;32778:12;32771:19;;32430:366;;;:::o;32802:419::-;32968:4;33006:2;32995:9;32991:18;32983:26;;33055:9;33049:4;33045:20;33041:1;33030:9;33026:17;33019:47;33083:131;33209:4;33083:131;:::i;:::-;33075:139;;32802:419;;;:::o;33227:223::-;33367:34;33363:1;33355:6;33351:14;33344:58;33436:6;33431:2;33423:6;33419:15;33412:31;33227:223;:::o;33456:366::-;33598:3;33619:67;33683:2;33678:3;33619:67;:::i;:::-;33612:74;;33695:93;33784:3;33695:93;:::i;:::-;33813:2;33808:3;33804:12;33797:19;;33456:366;;;:::o;33828:419::-;33994:4;34032:2;34021:9;34017:18;34009:26;;34081:9;34075:4;34071:20;34067:1;34056:9;34052:17;34045:47;34109:131;34235:4;34109:131;:::i;:::-;34101:139;;33828:419;;;:::o;34253:178::-;34393:30;34389:1;34381:6;34377:14;34370:54;34253:178;:::o;34437:366::-;34579:3;34600:67;34664:2;34659:3;34600:67;:::i;:::-;34593:74;;34676:93;34765:3;34676:93;:::i;:::-;34794:2;34789:3;34785:12;34778:19;;34437:366;;;:::o;34809:419::-;34975:4;35013:2;35002:9;34998:18;34990:26;;35062:9;35056:4;35052:20;35048:1;35037:9;35033:17;35026:47;35090:131;35216:4;35090:131;:::i;:::-;35082:139;;34809:419;;;:::o;35234:348::-;35274:7;35297:20;35315:1;35297:20;:::i;:::-;35292:25;;35331:20;35349:1;35331:20;:::i;:::-;35326:25;;35519:1;35451:66;35447:74;35444:1;35441:81;35436:1;35429:9;35422:17;35418:105;35415:131;;;35526:18;;:::i;:::-;35415:131;35574:1;35571;35567:9;35556:20;;35234:348;;;;:::o;35588:168::-;35728:20;35724:1;35716:6;35712:14;35705:44;35588:168;:::o;35762:366::-;35904:3;35925:67;35989:2;35984:3;35925:67;:::i;:::-;35918:74;;36001:93;36090:3;36001:93;:::i;:::-;36119:2;36114:3;36110:12;36103:19;;35762:366;;;:::o;36134:419::-;36300:4;36338:2;36327:9;36323:18;36315:26;;36387:9;36381:4;36377:20;36373:1;36362:9;36358:17;36351:47;36415:131;36541:4;36415:131;:::i;:::-;36407:139;;36134:419;;;:::o;36559:234::-;36699:34;36695:1;36687:6;36683:14;36676:58;36768:17;36763:2;36755:6;36751:15;36744:42;36559:234;:::o;36799:366::-;36941:3;36962:67;37026:2;37021:3;36962:67;:::i;:::-;36955:74;;37038:93;37127:3;37038:93;:::i;:::-;37156:2;37151:3;37147:12;37140:19;;36799:366;;;:::o;37171:419::-;37337:4;37375:2;37364:9;37360:18;37352:26;;37424:9;37418:4;37414:20;37410:1;37399:9;37395:17;37388:47;37452:131;37578:4;37452:131;:::i;:::-;37444:139;;37171:419;;;:::o;37596:148::-;37698:11;37735:3;37720:18;;37596:148;;;;:::o;37750:377::-;37856:3;37884:39;37917:5;37884:39;:::i;:::-;37939:89;38021:6;38016:3;37939:89;:::i;:::-;37932:96;;38037:52;38082:6;38077:3;38070:4;38063:5;38059:16;38037:52;:::i;:::-;38114:6;38109:3;38105:16;38098:23;;37860:267;37750:377;;;;:::o;38133:141::-;38182:4;38205:3;38197:11;;38228:3;38225:1;38218:14;38262:4;38259:1;38249:18;38241:26;;38133:141;;;:::o;38304:845::-;38407:3;38444:5;38438:12;38473:36;38499:9;38473:36;:::i;:::-;38525:89;38607:6;38602:3;38525:89;:::i;:::-;38518:96;;38645:1;38634:9;38630:17;38661:1;38656:137;;;;38807:1;38802:341;;;;38623:520;;38656:137;38740:4;38736:9;38725;38721:25;38716:3;38709:38;38776:6;38771:3;38767:16;38760:23;;38656:137;;38802:341;38869:38;38901:5;38869:38;:::i;:::-;38929:1;38943:154;38957:6;38954:1;38951:13;38943:154;;;39031:7;39025:14;39021:1;39016:3;39012:11;39005:35;39081:1;39072:7;39068:15;39057:26;;38979:4;38976:1;38972:12;38967:17;;38943:154;;;39126:6;39121:3;39117:16;39110:23;;38809:334;;38623:520;;38411:738;;38304:845;;;;:::o;39155:589::-;39380:3;39402:95;39493:3;39484:6;39402:95;:::i;:::-;39395:102;;39514:95;39605:3;39596:6;39514:95;:::i;:::-;39507:102;;39626:92;39714:3;39705:6;39626:92;:::i;:::-;39619:99;;39735:3;39728:10;;39155:589;;;;;;:::o;39750:225::-;39890:34;39886:1;39878:6;39874:14;39867:58;39959:8;39954:2;39946:6;39942:15;39935:33;39750:225;:::o;39981:366::-;40123:3;40144:67;40208:2;40203:3;40144:67;:::i;:::-;40137:74;;40220:93;40309:3;40220:93;:::i;:::-;40338:2;40333:3;40329:12;40322:19;;39981:366;;;:::o;40353:419::-;40519:4;40557:2;40546:9;40542:18;40534:26;;40606:9;40600:4;40596:20;40592:1;40581:9;40577:17;40570:47;40634:131;40760:4;40634:131;:::i;:::-;40626:139;;40353:419;;;:::o;40778:182::-;40918:34;40914:1;40906:6;40902:14;40895:58;40778:182;:::o;40966:366::-;41108:3;41129:67;41193:2;41188:3;41129:67;:::i;:::-;41122:74;;41205:93;41294:3;41205:93;:::i;:::-;41323:2;41318:3;41314:12;41307:19;;40966:366;;;:::o;41338:419::-;41504:4;41542:2;41531:9;41527:18;41519:26;;41591:9;41585:4;41581:20;41577:1;41566:9;41562:17;41555:47;41619:131;41745:4;41619:131;:::i;:::-;41611:139;;41338:419;;;:::o;41763:98::-;41814:6;41848:5;41842:12;41832:22;;41763:98;;;:::o;41867:168::-;41950:11;41984:6;41979:3;41972:19;42024:4;42019:3;42015:14;42000:29;;41867:168;;;;:::o;42041:360::-;42127:3;42155:38;42187:5;42155:38;:::i;:::-;42209:70;42272:6;42267:3;42209:70;:::i;:::-;42202:77;;42288:52;42333:6;42328:3;42321:4;42314:5;42310:16;42288:52;:::i;:::-;42365:29;42387:6;42365:29;:::i;:::-;42360:3;42356:39;42349:46;;42131:270;42041:360;;;;:::o;42407:640::-;42602:4;42640:3;42629:9;42625:19;42617:27;;42654:71;42722:1;42711:9;42707:17;42698:6;42654:71;:::i;:::-;42735:72;42803:2;42792:9;42788:18;42779:6;42735:72;:::i;:::-;42817;42885:2;42874:9;42870:18;42861:6;42817:72;:::i;:::-;42936:9;42930:4;42926:20;42921:2;42910:9;42906:18;42899:48;42964:76;43035:4;43026:6;42964:76;:::i;:::-;42956:84;;42407:640;;;;;;;:::o;43053:141::-;43109:5;43140:6;43134:13;43125:22;;43156:32;43182:5;43156:32;:::i;:::-;43053:141;;;;:::o;43200:349::-;43269:6;43318:2;43306:9;43297:7;43293:23;43289:32;43286:119;;;43324:79;;:::i;:::-;43286:119;43444:1;43469:63;43524:7;43515:6;43504:9;43500:22;43469:63;:::i;:::-;43459:73;;43415:127;43200:349;;;;:::o;43555:233::-;43594:3;43617:24;43635:5;43617:24;:::i;:::-;43608:33;;43663:66;43656:5;43653:77;43650:103;;;43733:18;;:::i;:::-;43650:103;43780:1;43773:5;43769:13;43762:20;;43555:233;;;:::o;43794:180::-;43842:77;43839:1;43832:88;43939:4;43936:1;43929:15;43963:4;43960:1;43953:15;43980:185;44020:1;44037:20;44055:1;44037:20;:::i;:::-;44032:25;;44071:20;44089:1;44071:20;:::i;:::-;44066:25;;44110:1;44100:35;;44115:18;;:::i;:::-;44100:35;44157:1;44154;44150:9;44145:14;;43980:185;;;;:::o;44171:176::-;44203:1;44220:20;44238:1;44220:20;:::i;:::-;44215:25;;44254:20;44272:1;44254:20;:::i;:::-;44249:25;;44293:1;44283:35;;44298:18;;:::i;:::-;44283:35;44339:1;44336;44332:9;44327:14;;44171:176;;;;:::o

Swarm Source

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