ETH Price: $3,243.87 (-0.46%)
Gas: 1 Gwei

Token

Cranky Crocz (CCROCZ)
 

Overview

Max Total Supply

888 CCROCZ

Holders

711

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ziaaaax.eth
Balance
1 CCROCZ
0x8c3b4aCb049054c68F4Edc46B41ad6D62372D3E7
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:
CrankyCrocz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Cranky Crocz


// 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/utils/cryptography/ECDSA.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// 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.0
// 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();

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

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

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

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

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

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

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

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

    // =============================================================
    //                        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.0
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contracts/CrankyCrocz.sol



pragma solidity ^0.8.4;





contract CrankyCrocz is ERC721A, Ownable {

  using Strings for uint256;
  using ECDSA for bytes32;

  address signer;
  error InvalidSignarure();
  
  uint public maxSupply = 888;
  // 88 reserved for team & giveaways
  uint public maxMintable = 800;

  string tokenBaseUri = "https://bafybeibljilzb7bgwzuzivb4sulife7ktiggmeo4nfhacwzrr4fhyny2xy.ipfs.nftstorage.link/";

  bool public paused = false;
  mapping(address => uint256) private _freeMintedCount;
 
  constructor() ERC721A("Cranky Crocz", "CCROCZ") {}

  function freeMint() external {
    
      require(!paused, "Minting paused");
      require(_freeMintedCount[msg.sender] < 1);

      uint256 _totalSupply = totalSupply();

      require(_totalSupply + 1 < maxMintable + 1, "SOLD OUT");


      _freeMintedCount[msg.sender] += 1;

      _mint(msg.sender, 1);
    
  }

  function devMint(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function freeMintedCount(address owner) external view returns (uint256) {
    return _freeMintedCount[owner];
  }

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

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

  function setBaseURI(string calldata _newBaseUri) external onlyOwner {
    tokenBaseUri = _newBaseUri;
  }

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

  function setMaxMintable(uint256 _maxMintable) external onlyOwner {
    maxMintable = _maxMintable;
  }

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

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

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


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

  function burn(
        uint256 tokenId,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        if (keccak256(abi.encodePacked(msg.sender, tokenId)).toEthSignedMessageHash().recover(v, r, s) != signer) {
            revert InvalidSignarure();
        }
        _burn(tokenId);
    }
  function batchBurn(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidSignarure","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"maxMintable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintable","type":"uint256"}],"name":"setMaxMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610378600a55610320600b5560405180608001604052806059815260200162003af960599139600c9080519060200190620000419291906200021e565b506000600d60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280600c81526020017f4372616e6b792043726f637a00000000000000000000000000000000000000008152506040518060400160405280600681526020017f4343524f435a00000000000000000000000000000000000000000000000000008152508160029080519060200190620000ef9291906200021e565b508060039080519060200190620001089291906200021e565b50620001196200014760201b60201c565b600081905550505062000141620001356200015060201b60201c565b6200015860201b60201c565b62000333565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022c90620002ce565b90600052602060002090601f0160209004810192826200025057600085556200029c565b82601f106200026b57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029b5782518255916020019190600101906200027e565b5b509050620002ab9190620002af565b5090565b5b80821115620002ca576000816000905550600101620002b0565b5090565b60006002820490506001821680620002e757607f821691505b60208210811415620002fe57620002fd62000304565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137b680620003436000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e11610104578063a22cb465116100a2578063dc8e92ea11610071578063dc8e92ea14610507578063e985e9c514610523578063f2fde38b14610553578063fcc82dc21461056f576101da565b8063a22cb46514610481578063b88d4fde1461049d578063c87b56dd146104b9578063d5abeb01146104e9576101da565b8063715018a6116100de578063715018a61461040b5780638da5cb5b1461041557806395d89b41146104335780639813323514610451576101da565b80636352211e1461038f5780636f8b44b0146103bf57806370a08231146103db576101da565b806325d387b51161017c57806342842e0e1161014b57806342842e0e1461032f57806355f804b31461034b5780635b70ea9f146103675780635c975abb14610371576101da565b806325d387b5146102d15780632d1a12f6146102ed5780633031e7c7146103095780633ccfd60b14610325576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780632154dc391461029757806323b872dd146102b5576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f491906128c9565b61058b565b6040516102069190612e18565b60405180910390f35b61021761061d565b6040516102249190612e78565b60405180910390f35b61024760048036038101906102429190612970565b6106af565b6040516102549190612db1565b60405180910390f35b61027760048036038101906102729190612813565b61072e565b005b610281610872565b60405161028e9190612fba565b60405180910390f35b61029f610889565b6040516102ac9190612fba565b60405180910390f35b6102cf60048036038101906102ca91906126fd565b61088f565b005b6102eb60048036038101906102e69190612970565b610bb4565b005b6103076004803603810190610302919061299d565b610bc6565b005b610323600480360381019061031e919061289c565b610bdc565b005b61032d610c01565b005b610349600480360381019061034491906126fd565b610c89565b005b61036560048036038101906103609190612923565b610ca9565b005b61036f610cc7565b005b610379610e30565b6040516103869190612e18565b60405180910390f35b6103a960048036038101906103a49190612970565b610e43565b6040516103b69190612db1565b60405180910390f35b6103d960048036038101906103d49190612970565b610e55565b005b6103f560048036038101906103f09190612690565b610e67565b6040516104029190612fba565b60405180910390f35b610413610f20565b005b61041d610f34565b60405161042a9190612db1565b60405180910390f35b61043b610f5e565b6040516104489190612e78565b60405180910390f35b61046b60048036038101906104669190612690565b610ff0565b6040516104789190612fba565b60405180910390f35b61049b600480360381019061049691906127d3565b611039565b005b6104b760048036038101906104b29190612750565b6111b1565b005b6104d360048036038101906104ce9190612970565b611224565b6040516104e09190612e78565b60405180910390f35b6104f16112cb565b6040516104fe9190612fba565b60405180910390f35b610521600480360381019061051c9190612853565b6112d1565b005b61053d600480360381019061053891906126bd565b61132b565b60405161054a9190612e18565b60405180910390f35b61056d60048036038101906105689190612690565b6113bf565b005b610589600480360381019061058491906129dd565b611443565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106165750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062c9061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546106589061322d565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b60006106ba8261151f565b6106f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073982610e43565b90508073ffffffffffffffffffffffffffffffffffffffff1661075a61157e565b73ffffffffffffffffffffffffffffffffffffffff16146107bd576107868161078161157e565b61132b565b6107bc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061087c611586565b6001546000540303905090565b600b5481565b600061089a8261158f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610901576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061090d8461165d565b91509150610923818761091e61157e565b611684565b61096f576109388661093361157e565b61132b565b61096e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156109d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109e386868660016116c8565b80156109ee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610abc85610a988888876116ce565b7c0200000000000000000000000000000000000000000000000000000000176116f6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b44576000600185019050600060046000838152602001908152602001600020541415610b42576000548114610b41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bac8686866001611721565b505050505050565b610bbc611727565b80600b8190555050565b610bce611727565b610bd881836117a5565b5050565b610be4611727565b80600d60006101000a81548160ff02191690831515021790555050565b610c09611727565b6000610c13610f34565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c3690612d9c565b60006040518083038185875af1925050503d8060008114610c73576040519150601f19603f3d011682016040523d82523d6000602084013e610c78565b606091505b5050905080610c8657600080fd5b50565b610ca4838383604051806020016040528060008152506111b1565b505050565b610cb1611727565b8181600c9190610cc29291906123f6565b505050565b600d60009054906101000a900460ff1615610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612efa565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610d6357600080fd5b6000610d6d610872565b90506001600b54610d7e91906130a5565b600182610d8b91906130a5565b10610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612eba565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1b91906130a5565b92505081905550610e2d3360016117c3565b50565b600d60009054906101000a900460ff1681565b6000610e4e8261158f565b9050919050565b610e5d611727565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f28611727565b610f326000611980565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f6d9061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f999061322d565b8015610fe65780601f10610fbb57610100808354040283529160200191610fe6565b820191906000526020600020905b815481529060010190602001808311610fc957829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104161157e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110b361157e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661116061157e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a59190612e18565b60405180910390a35050565b6111bc84848461088f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461121e576111e784848484611a46565b61121d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061122f8261151f565b61126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590612f9a565b60405180910390fd5b6000611278611ba6565b9050600081511161129857604051806020016040528060008152506112c3565b806112a284611c38565b6040516020016112b3929190612d47565b6040516020818303038152906040525b915050919050565b600a5481565b6112d9611727565b60008151905060005b818110156113265760008382815181106112ff576112fe6133fe565b5b6020026020010151905061131281611d99565b50808061131e90613290565b9150506112e2565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c7611727565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90612f1a565b60405180910390fd5b61144081611980565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114c38484846114b3338a604051602001611498929190612d1b565b60405160208183030381529060405280519060200120611da7565b611dd7909392919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f8aa9c9ac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151984611d99565b50505050565b60008161152a611586565b11158015611539575060005482105b8015611577575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061159e611586565b11611626576000548110156116255760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611623575b60008114156116195760046000836001900393508381526020019081526020016000205490506115ee565b8092505050611658565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116e5868684611e02565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61172f611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661174d610f34565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90612f7a565b60405180910390fd5b565b6117bf828260405180602001604052806000815250611e13565b5050565b6000805490506000821415611804576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181160008483856116c8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506118888361187960008660006116ce565b61188285611eb0565b176116f6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461192957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506118ee565b506000821415611965576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061197b6000848385611721565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a6c61157e565b8786866040518563ffffffff1660e01b8152600401611a8e9493929190612dcc565b602060405180830381600087803b158015611aa857600080fd5b505af1925050508015611ad957506040513d601f19601f82011682018060405250810190611ad691906128f6565b60015b611b53573d8060008114611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b50600081511415611b4b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611bb59061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054611be19061322d565b8015611c2e5780601f10611c0357610100808354040283529160200191611c2e565b820191906000526020600020905b815481529060010190602001808311611c1157829003601f168201915b5050505050905090565b60606000821415611c80576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d94565b600082905060005b60008214611cb2578080611c9b90613290565b915050600a82611cab91906130fb565b9150611c88565b60008167ffffffffffffffff811115611cce57611ccd61342d565b5b6040519080825280601f01601f191660200182016040528015611d005781602001600182028036833780820191505090505b5090505b60008514611d8d57600182611d19919061312c565b9150600a85611d289190613311565b6030611d3491906130a5565b60f81b818381518110611d4a57611d496133fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d8691906130fb565b9450611d04565b8093505050505b919050565b611da4816000611ec0565b50565b600081604051602001611dba9190612d76565b604051602081830303815290604052805190602001209050919050565b6000806000611de887878787612114565b91509150611df581612221565b8192505050949350505050565b60009392505050565b600033905090565b611e1d83836117c3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eab57600080549050600083820390505b611e5d6000868380600101945086611a46565b611e93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e4a578160005414611ea857600080fd5b50505b505050565b60006001821460e11b9050919050565b6000611ecb8361158f565b90506000819050600080611ede8661165d565b915091508415611f4757611efa8184611ef561157e565b611684565b611f4657611f0f83611f0a61157e565b61132b565b611f45576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f558360008860016116c8565b8015611f6057600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061200883611fc5856000886116ce565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176116f6565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561209057600060018701905060006004600083815260200190815260200160002054141561208e57600054811461208d578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120fa836000886001611721565b600160008154809291906001019190505550505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561214f576000600391509150612218565b601b8560ff16141580156121675750601c8560ff1614155b15612179576000600491509150612218565b60006001878787876040516000815260200160405260405161219e9493929190612e33565b6020604051602081039080840390855afa1580156121c0573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561220f57600060019250925050612218565b80600092509250505b94509492505050565b60006004811115612235576122346133a0565b5b816004811115612248576122476133a0565b5b1415612253576123f3565b60016004811115612267576122666133a0565b5b81600481111561227a576122796133a0565b5b14156122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b290612e9a565b60405180910390fd5b600260048111156122cf576122ce6133a0565b5b8160048111156122e2576122e16133a0565b5b1415612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90612eda565b60405180910390fd5b60036004811115612337576123366133a0565b5b81600481111561234a576123496133a0565b5b141561238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290612f3a565b60405180910390fd5b60048081111561239e5761239d6133a0565b5b8160048111156123b1576123b06133a0565b5b14156123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990612f5a565b60405180910390fd5b5b50565b8280546124029061322d565b90600052602060002090601f016020900481019282612424576000855561246b565b82601f1061243d57803560ff191683800117855561246b565b8280016001018555821561246b579182015b8281111561246a57823582559160200191906001019061244f565b5b509050612478919061247c565b5090565b5b8082111561249557600081600090555060010161247d565b5090565b60006124ac6124a784612ffa565b612fd5565b905080838252602082019050828560208602820111156124cf576124ce613466565b5b60005b858110156124ff57816124e58882612666565b8452602084019350602083019250506001810190506124d2565b5050509392505050565b600061251c61251784613026565b612fd5565b9050828152602081018484840111156125385761253761346b565b5b6125438482856131eb565b509392505050565b60008135905061255a816136f6565b92915050565b600082601f83011261257557612574613461565b5b8135612585848260208601612499565b91505092915050565b60008135905061259d8161370d565b92915050565b6000813590506125b281613724565b92915050565b6000813590506125c78161373b565b92915050565b6000815190506125dc8161373b565b92915050565b600082601f8301126125f7576125f6613461565b5b8135612607848260208601612509565b91505092915050565b60008083601f84011261262657612625613461565b5b8235905067ffffffffffffffff8111156126435761264261345c565b5b60208301915083600182028301111561265f5761265e613466565b5b9250929050565b60008135905061267581613752565b92915050565b60008135905061268a81613769565b92915050565b6000602082840312156126a6576126a5613475565b5b60006126b48482850161254b565b91505092915050565b600080604083850312156126d4576126d3613475565b5b60006126e28582860161254b565b92505060206126f38582860161254b565b9150509250929050565b60008060006060848603121561271657612715613475565b5b60006127248682870161254b565b93505060206127358682870161254b565b925050604061274686828701612666565b9150509250925092565b6000806000806080858703121561276a57612769613475565b5b60006127788782880161254b565b94505060206127898782880161254b565b935050604061279a87828801612666565b925050606085013567ffffffffffffffff8111156127bb576127ba613470565b5b6127c7878288016125e2565b91505092959194509250565b600080604083850312156127ea576127e9613475565b5b60006127f88582860161254b565b92505060206128098582860161258e565b9150509250929050565b6000806040838503121561282a57612829613475565b5b60006128388582860161254b565b925050602061284985828601612666565b9150509250929050565b60006020828403121561286957612868613475565b5b600082013567ffffffffffffffff81111561288757612886613470565b5b61289384828501612560565b91505092915050565b6000602082840312156128b2576128b1613475565b5b60006128c08482850161258e565b91505092915050565b6000602082840312156128df576128de613475565b5b60006128ed848285016125b8565b91505092915050565b60006020828403121561290c5761290b613475565b5b600061291a848285016125cd565b91505092915050565b6000806020838503121561293a57612939613475565b5b600083013567ffffffffffffffff81111561295857612957613470565b5b61296485828601612610565b92509250509250929050565b60006020828403121561298657612985613475565b5b600061299484828501612666565b91505092915050565b600080604083850312156129b4576129b3613475565b5b60006129c285828601612666565b92505060206129d38582860161254b565b9150509250929050565b600080600080608085870312156129f7576129f6613475565b5b6000612a0587828801612666565b9450506020612a168782880161267b565b9350506040612a27878288016125a3565b9250506060612a38878288016125a3565b91505092959194509250565b612a4d81613160565b82525050565b612a64612a5f82613160565b6132d9565b82525050565b612a7381613172565b82525050565b612a828161317e565b82525050565b612a99612a948261317e565b6132eb565b82525050565b6000612aaa82613057565b612ab4818561306d565b9350612ac48185602086016131fa565b612acd8161347a565b840191505092915050565b6000612ae382613062565b612aed8185613089565b9350612afd8185602086016131fa565b612b068161347a565b840191505092915050565b6000612b1c82613062565b612b26818561309a565b9350612b368185602086016131fa565b80840191505092915050565b6000612b4f601883613089565b9150612b5a82613498565b602082019050919050565b6000612b72600883613089565b9150612b7d826134c1565b602082019050919050565b6000612b95601f83613089565b9150612ba0826134ea565b602082019050919050565b6000612bb8601c8361309a565b9150612bc382613513565b601c82019050919050565b6000612bdb600e83613089565b9150612be68261353c565b602082019050919050565b6000612bfe602683613089565b9150612c0982613565565b604082019050919050565b6000612c21602283613089565b9150612c2c826135b4565b604082019050919050565b6000612c44602283613089565b9150612c4f82613603565b604082019050919050565b6000612c6760058361309a565b9150612c7282613652565b600582019050919050565b6000612c8a602083613089565b9150612c958261367b565b602082019050919050565b6000612cad602f83613089565b9150612cb8826136a4565b604082019050919050565b6000612cd060008361307e565b9150612cdb826136f3565b600082019050919050565b612cef816131d4565b82525050565b612d06612d01826131d4565b613307565b82525050565b612d15816131de565b82525050565b6000612d278285612a53565b601482019150612d378284612cf5565b6020820191508190509392505050565b6000612d538285612b11565b9150612d5f8284612b11565b9150612d6a82612c5a565b91508190509392505050565b6000612d8182612bab565b9150612d8d8284612a88565b60208201915081905092915050565b6000612da782612cc3565b9150819050919050565b6000602082019050612dc66000830184612a44565b92915050565b6000608082019050612de16000830187612a44565b612dee6020830186612a44565b612dfb6040830185612ce6565b8181036060830152612e0d8184612a9f565b905095945050505050565b6000602082019050612e2d6000830184612a6a565b92915050565b6000608082019050612e486000830187612a79565b612e556020830186612d0c565b612e626040830185612a79565b612e6f6060830184612a79565b95945050505050565b60006020820190508181036000830152612e928184612ad8565b905092915050565b60006020820190508181036000830152612eb381612b42565b9050919050565b60006020820190508181036000830152612ed381612b65565b9050919050565b60006020820190508181036000830152612ef381612b88565b9050919050565b60006020820190508181036000830152612f1381612bce565b9050919050565b60006020820190508181036000830152612f3381612bf1565b9050919050565b60006020820190508181036000830152612f5381612c14565b9050919050565b60006020820190508181036000830152612f7381612c37565b9050919050565b60006020820190508181036000830152612f9381612c7d565b9050919050565b60006020820190508181036000830152612fb381612ca0565b9050919050565b6000602082019050612fcf6000830184612ce6565b92915050565b6000612fdf612ff0565b9050612feb828261325f565b919050565b6000604051905090565b600067ffffffffffffffff8211156130155761301461342d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130415761304061342d565b5b61304a8261347a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130b0826131d4565b91506130bb836131d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130f0576130ef613342565b5b828201905092915050565b6000613106826131d4565b9150613111836131d4565b92508261312157613120613371565b5b828204905092915050565b6000613137826131d4565b9150613142836131d4565b92508282101561315557613154613342565b5b828203905092915050565b600061316b826131b4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156132185780820151818401526020810190506131fd565b83811115613227576000848401525b50505050565b6000600282049050600182168061324557607f821691505b60208210811415613259576132586133cf565b5b50919050565b6132688261347a565b810181811067ffffffffffffffff821117156132875761328661342d565b5b80604052505050565b600061329b826131d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132ce576132cd613342565b5b600182019050919050565b60006132e4826132f5565b9050919050565b6000819050919050565b60006133008261348b565b9050919050565b6000819050919050565b600061331c826131d4565b9150613327836131d4565b92508261333757613336613371565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b6136ff81613160565b811461370a57600080fd5b50565b61371681613172565b811461372157600080fd5b50565b61372d8161317e565b811461373857600080fd5b50565b61374481613188565b811461374f57600080fd5b50565b61375b816131d4565b811461376657600080fd5b50565b613772816131de565b811461377d57600080fd5b5056fea2646970667358221220ac081c179197249b33f9c344c94ca43e5fac1fd57ac1d8446fb760492e051e6164736f6c6343000807003368747470733a2f2f62616679626569626c6a696c7a62376267777a757a6976623473756c696665376b746967676d656f346e66686163777a7272346668796e793278792e697066732e6e667473746f726167652e6c696e6b2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e11610104578063a22cb465116100a2578063dc8e92ea11610071578063dc8e92ea14610507578063e985e9c514610523578063f2fde38b14610553578063fcc82dc21461056f576101da565b8063a22cb46514610481578063b88d4fde1461049d578063c87b56dd146104b9578063d5abeb01146104e9576101da565b8063715018a6116100de578063715018a61461040b5780638da5cb5b1461041557806395d89b41146104335780639813323514610451576101da565b80636352211e1461038f5780636f8b44b0146103bf57806370a08231146103db576101da565b806325d387b51161017c57806342842e0e1161014b57806342842e0e1461032f57806355f804b31461034b5780635b70ea9f146103675780635c975abb14610371576101da565b806325d387b5146102d15780632d1a12f6146102ed5780633031e7c7146103095780633ccfd60b14610325576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780632154dc391461029757806323b872dd146102b5576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f491906128c9565b61058b565b6040516102069190612e18565b60405180910390f35b61021761061d565b6040516102249190612e78565b60405180910390f35b61024760048036038101906102429190612970565b6106af565b6040516102549190612db1565b60405180910390f35b61027760048036038101906102729190612813565b61072e565b005b610281610872565b60405161028e9190612fba565b60405180910390f35b61029f610889565b6040516102ac9190612fba565b60405180910390f35b6102cf60048036038101906102ca91906126fd565b61088f565b005b6102eb60048036038101906102e69190612970565b610bb4565b005b6103076004803603810190610302919061299d565b610bc6565b005b610323600480360381019061031e919061289c565b610bdc565b005b61032d610c01565b005b610349600480360381019061034491906126fd565b610c89565b005b61036560048036038101906103609190612923565b610ca9565b005b61036f610cc7565b005b610379610e30565b6040516103869190612e18565b60405180910390f35b6103a960048036038101906103a49190612970565b610e43565b6040516103b69190612db1565b60405180910390f35b6103d960048036038101906103d49190612970565b610e55565b005b6103f560048036038101906103f09190612690565b610e67565b6040516104029190612fba565b60405180910390f35b610413610f20565b005b61041d610f34565b60405161042a9190612db1565b60405180910390f35b61043b610f5e565b6040516104489190612e78565b60405180910390f35b61046b60048036038101906104669190612690565b610ff0565b6040516104789190612fba565b60405180910390f35b61049b600480360381019061049691906127d3565b611039565b005b6104b760048036038101906104b29190612750565b6111b1565b005b6104d360048036038101906104ce9190612970565b611224565b6040516104e09190612e78565b60405180910390f35b6104f16112cb565b6040516104fe9190612fba565b60405180910390f35b610521600480360381019061051c9190612853565b6112d1565b005b61053d600480360381019061053891906126bd565b61132b565b60405161054a9190612e18565b60405180910390f35b61056d60048036038101906105689190612690565b6113bf565b005b610589600480360381019061058491906129dd565b611443565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106165750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062c9061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546106589061322d565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b60006106ba8261151f565b6106f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073982610e43565b90508073ffffffffffffffffffffffffffffffffffffffff1661075a61157e565b73ffffffffffffffffffffffffffffffffffffffff16146107bd576107868161078161157e565b61132b565b6107bc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061087c611586565b6001546000540303905090565b600b5481565b600061089a8261158f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610901576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061090d8461165d565b91509150610923818761091e61157e565b611684565b61096f576109388661093361157e565b61132b565b61096e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156109d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109e386868660016116c8565b80156109ee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610abc85610a988888876116ce565b7c0200000000000000000000000000000000000000000000000000000000176116f6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b44576000600185019050600060046000838152602001908152602001600020541415610b42576000548114610b41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bac8686866001611721565b505050505050565b610bbc611727565b80600b8190555050565b610bce611727565b610bd881836117a5565b5050565b610be4611727565b80600d60006101000a81548160ff02191690831515021790555050565b610c09611727565b6000610c13610f34565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c3690612d9c565b60006040518083038185875af1925050503d8060008114610c73576040519150601f19603f3d011682016040523d82523d6000602084013e610c78565b606091505b5050905080610c8657600080fd5b50565b610ca4838383604051806020016040528060008152506111b1565b505050565b610cb1611727565b8181600c9190610cc29291906123f6565b505050565b600d60009054906101000a900460ff1615610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612efa565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610d6357600080fd5b6000610d6d610872565b90506001600b54610d7e91906130a5565b600182610d8b91906130a5565b10610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612eba565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1b91906130a5565b92505081905550610e2d3360016117c3565b50565b600d60009054906101000a900460ff1681565b6000610e4e8261158f565b9050919050565b610e5d611727565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f28611727565b610f326000611980565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f6d9061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f999061322d565b8015610fe65780601f10610fbb57610100808354040283529160200191610fe6565b820191906000526020600020905b815481529060010190602001808311610fc957829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104161157e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110b361157e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661116061157e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a59190612e18565b60405180910390a35050565b6111bc84848461088f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461121e576111e784848484611a46565b61121d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061122f8261151f565b61126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590612f9a565b60405180910390fd5b6000611278611ba6565b9050600081511161129857604051806020016040528060008152506112c3565b806112a284611c38565b6040516020016112b3929190612d47565b6040516020818303038152906040525b915050919050565b600a5481565b6112d9611727565b60008151905060005b818110156113265760008382815181106112ff576112fe6133fe565b5b6020026020010151905061131281611d99565b50808061131e90613290565b9150506112e2565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c7611727565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90612f1a565b60405180910390fd5b61144081611980565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114c38484846114b3338a604051602001611498929190612d1b565b60405160208183030381529060405280519060200120611da7565b611dd7909392919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f8aa9c9ac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151984611d99565b50505050565b60008161152a611586565b11158015611539575060005482105b8015611577575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061159e611586565b11611626576000548110156116255760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611623575b60008114156116195760046000836001900393508381526020019081526020016000205490506115ee565b8092505050611658565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116e5868684611e02565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61172f611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661174d610f34565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90612f7a565b60405180910390fd5b565b6117bf828260405180602001604052806000815250611e13565b5050565b6000805490506000821415611804576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181160008483856116c8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506118888361187960008660006116ce565b61188285611eb0565b176116f6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461192957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506118ee565b506000821415611965576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061197b6000848385611721565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a6c61157e565b8786866040518563ffffffff1660e01b8152600401611a8e9493929190612dcc565b602060405180830381600087803b158015611aa857600080fd5b505af1925050508015611ad957506040513d601f19601f82011682018060405250810190611ad691906128f6565b60015b611b53573d8060008114611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b50600081511415611b4b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611bb59061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054611be19061322d565b8015611c2e5780601f10611c0357610100808354040283529160200191611c2e565b820191906000526020600020905b815481529060010190602001808311611c1157829003601f168201915b5050505050905090565b60606000821415611c80576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d94565b600082905060005b60008214611cb2578080611c9b90613290565b915050600a82611cab91906130fb565b9150611c88565b60008167ffffffffffffffff811115611cce57611ccd61342d565b5b6040519080825280601f01601f191660200182016040528015611d005781602001600182028036833780820191505090505b5090505b60008514611d8d57600182611d19919061312c565b9150600a85611d289190613311565b6030611d3491906130a5565b60f81b818381518110611d4a57611d496133fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d8691906130fb565b9450611d04565b8093505050505b919050565b611da4816000611ec0565b50565b600081604051602001611dba9190612d76565b604051602081830303815290604052805190602001209050919050565b6000806000611de887878787612114565b91509150611df581612221565b8192505050949350505050565b60009392505050565b600033905090565b611e1d83836117c3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eab57600080549050600083820390505b611e5d6000868380600101945086611a46565b611e93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e4a578160005414611ea857600080fd5b50505b505050565b60006001821460e11b9050919050565b6000611ecb8361158f565b90506000819050600080611ede8661165d565b915091508415611f4757611efa8184611ef561157e565b611684565b611f4657611f0f83611f0a61157e565b61132b565b611f45576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f558360008860016116c8565b8015611f6057600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061200883611fc5856000886116ce565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176116f6565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561209057600060018701905060006004600083815260200190815260200160002054141561208e57600054811461208d578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120fa836000886001611721565b600160008154809291906001019190505550505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561214f576000600391509150612218565b601b8560ff16141580156121675750601c8560ff1614155b15612179576000600491509150612218565b60006001878787876040516000815260200160405260405161219e9493929190612e33565b6020604051602081039080840390855afa1580156121c0573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561220f57600060019250925050612218565b80600092509250505b94509492505050565b60006004811115612235576122346133a0565b5b816004811115612248576122476133a0565b5b1415612253576123f3565b60016004811115612267576122666133a0565b5b81600481111561227a576122796133a0565b5b14156122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b290612e9a565b60405180910390fd5b600260048111156122cf576122ce6133a0565b5b8160048111156122e2576122e16133a0565b5b1415612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90612eda565b60405180910390fd5b60036004811115612337576123366133a0565b5b81600481111561234a576123496133a0565b5b141561238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290612f3a565b60405180910390fd5b60048081111561239e5761239d6133a0565b5b8160048111156123b1576123b06133a0565b5b14156123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990612f5a565b60405180910390fd5b5b50565b8280546124029061322d565b90600052602060002090601f016020900481019282612424576000855561246b565b82601f1061243d57803560ff191683800117855561246b565b8280016001018555821561246b579182015b8281111561246a57823582559160200191906001019061244f565b5b509050612478919061247c565b5090565b5b8082111561249557600081600090555060010161247d565b5090565b60006124ac6124a784612ffa565b612fd5565b905080838252602082019050828560208602820111156124cf576124ce613466565b5b60005b858110156124ff57816124e58882612666565b8452602084019350602083019250506001810190506124d2565b5050509392505050565b600061251c61251784613026565b612fd5565b9050828152602081018484840111156125385761253761346b565b5b6125438482856131eb565b509392505050565b60008135905061255a816136f6565b92915050565b600082601f83011261257557612574613461565b5b8135612585848260208601612499565b91505092915050565b60008135905061259d8161370d565b92915050565b6000813590506125b281613724565b92915050565b6000813590506125c78161373b565b92915050565b6000815190506125dc8161373b565b92915050565b600082601f8301126125f7576125f6613461565b5b8135612607848260208601612509565b91505092915050565b60008083601f84011261262657612625613461565b5b8235905067ffffffffffffffff8111156126435761264261345c565b5b60208301915083600182028301111561265f5761265e613466565b5b9250929050565b60008135905061267581613752565b92915050565b60008135905061268a81613769565b92915050565b6000602082840312156126a6576126a5613475565b5b60006126b48482850161254b565b91505092915050565b600080604083850312156126d4576126d3613475565b5b60006126e28582860161254b565b92505060206126f38582860161254b565b9150509250929050565b60008060006060848603121561271657612715613475565b5b60006127248682870161254b565b93505060206127358682870161254b565b925050604061274686828701612666565b9150509250925092565b6000806000806080858703121561276a57612769613475565b5b60006127788782880161254b565b94505060206127898782880161254b565b935050604061279a87828801612666565b925050606085013567ffffffffffffffff8111156127bb576127ba613470565b5b6127c7878288016125e2565b91505092959194509250565b600080604083850312156127ea576127e9613475565b5b60006127f88582860161254b565b92505060206128098582860161258e565b9150509250929050565b6000806040838503121561282a57612829613475565b5b60006128388582860161254b565b925050602061284985828601612666565b9150509250929050565b60006020828403121561286957612868613475565b5b600082013567ffffffffffffffff81111561288757612886613470565b5b61289384828501612560565b91505092915050565b6000602082840312156128b2576128b1613475565b5b60006128c08482850161258e565b91505092915050565b6000602082840312156128df576128de613475565b5b60006128ed848285016125b8565b91505092915050565b60006020828403121561290c5761290b613475565b5b600061291a848285016125cd565b91505092915050565b6000806020838503121561293a57612939613475565b5b600083013567ffffffffffffffff81111561295857612957613470565b5b61296485828601612610565b92509250509250929050565b60006020828403121561298657612985613475565b5b600061299484828501612666565b91505092915050565b600080604083850312156129b4576129b3613475565b5b60006129c285828601612666565b92505060206129d38582860161254b565b9150509250929050565b600080600080608085870312156129f7576129f6613475565b5b6000612a0587828801612666565b9450506020612a168782880161267b565b9350506040612a27878288016125a3565b9250506060612a38878288016125a3565b91505092959194509250565b612a4d81613160565b82525050565b612a64612a5f82613160565b6132d9565b82525050565b612a7381613172565b82525050565b612a828161317e565b82525050565b612a99612a948261317e565b6132eb565b82525050565b6000612aaa82613057565b612ab4818561306d565b9350612ac48185602086016131fa565b612acd8161347a565b840191505092915050565b6000612ae382613062565b612aed8185613089565b9350612afd8185602086016131fa565b612b068161347a565b840191505092915050565b6000612b1c82613062565b612b26818561309a565b9350612b368185602086016131fa565b80840191505092915050565b6000612b4f601883613089565b9150612b5a82613498565b602082019050919050565b6000612b72600883613089565b9150612b7d826134c1565b602082019050919050565b6000612b95601f83613089565b9150612ba0826134ea565b602082019050919050565b6000612bb8601c8361309a565b9150612bc382613513565b601c82019050919050565b6000612bdb600e83613089565b9150612be68261353c565b602082019050919050565b6000612bfe602683613089565b9150612c0982613565565b604082019050919050565b6000612c21602283613089565b9150612c2c826135b4565b604082019050919050565b6000612c44602283613089565b9150612c4f82613603565b604082019050919050565b6000612c6760058361309a565b9150612c7282613652565b600582019050919050565b6000612c8a602083613089565b9150612c958261367b565b602082019050919050565b6000612cad602f83613089565b9150612cb8826136a4565b604082019050919050565b6000612cd060008361307e565b9150612cdb826136f3565b600082019050919050565b612cef816131d4565b82525050565b612d06612d01826131d4565b613307565b82525050565b612d15816131de565b82525050565b6000612d278285612a53565b601482019150612d378284612cf5565b6020820191508190509392505050565b6000612d538285612b11565b9150612d5f8284612b11565b9150612d6a82612c5a565b91508190509392505050565b6000612d8182612bab565b9150612d8d8284612a88565b60208201915081905092915050565b6000612da782612cc3565b9150819050919050565b6000602082019050612dc66000830184612a44565b92915050565b6000608082019050612de16000830187612a44565b612dee6020830186612a44565b612dfb6040830185612ce6565b8181036060830152612e0d8184612a9f565b905095945050505050565b6000602082019050612e2d6000830184612a6a565b92915050565b6000608082019050612e486000830187612a79565b612e556020830186612d0c565b612e626040830185612a79565b612e6f6060830184612a79565b95945050505050565b60006020820190508181036000830152612e928184612ad8565b905092915050565b60006020820190508181036000830152612eb381612b42565b9050919050565b60006020820190508181036000830152612ed381612b65565b9050919050565b60006020820190508181036000830152612ef381612b88565b9050919050565b60006020820190508181036000830152612f1381612bce565b9050919050565b60006020820190508181036000830152612f3381612bf1565b9050919050565b60006020820190508181036000830152612f5381612c14565b9050919050565b60006020820190508181036000830152612f7381612c37565b9050919050565b60006020820190508181036000830152612f9381612c7d565b9050919050565b60006020820190508181036000830152612fb381612ca0565b9050919050565b6000602082019050612fcf6000830184612ce6565b92915050565b6000612fdf612ff0565b9050612feb828261325f565b919050565b6000604051905090565b600067ffffffffffffffff8211156130155761301461342d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130415761304061342d565b5b61304a8261347a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130b0826131d4565b91506130bb836131d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130f0576130ef613342565b5b828201905092915050565b6000613106826131d4565b9150613111836131d4565b92508261312157613120613371565b5b828204905092915050565b6000613137826131d4565b9150613142836131d4565b92508282101561315557613154613342565b5b828203905092915050565b600061316b826131b4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156132185780820151818401526020810190506131fd565b83811115613227576000848401525b50505050565b6000600282049050600182168061324557607f821691505b60208210811415613259576132586133cf565b5b50919050565b6132688261347a565b810181811067ffffffffffffffff821117156132875761328661342d565b5b80604052505050565b600061329b826131d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132ce576132cd613342565b5b600182019050919050565b60006132e4826132f5565b9050919050565b6000819050919050565b60006133008261348b565b9050919050565b6000819050919050565b600061331c826131d4565b9150613327836131d4565b92508261333757613336613371565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b6136ff81613160565b811461370a57600080fd5b50565b61371681613172565b811461372157600080fd5b50565b61372d8161317e565b811461373857600080fd5b50565b61374481613188565b811461374f57600080fd5b50565b61375b816131d4565b811461376657600080fd5b50565b613772816131de565b811461377d57600080fd5b5056fea2646970667358221220ac081c179197249b33f9c344c94ca43e5fac1fd57ac1d8446fb760492e051e6164736f6c63430008070033

Deployed Bytecode Sourcemap

67065:2806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34176:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35078:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41561:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41002:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30829:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67296:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45268:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68595:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67935:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68705:78;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69168:137;;;:::i;:::-;;48181:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68380:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67599:330;;;:::i;:::-;;67452:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36471:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68493:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32013:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14924:103;;;:::i;:::-;;14276:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35254:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68061:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42119:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48964:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68789:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67225:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69630:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42584:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15182:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69311:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34176:639;34261:4;34600:10;34585:25;;:11;:25;;;;:102;;;;34677:10;34662:25;;:11;:25;;;;34585:102;:179;;;;34754:10;34739:25;;:11;:25;;;;34585:179;34565:199;;34176:639;;;:::o;35078:100::-;35132:13;35165:5;35158:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35078:100;:::o;41561:218::-;41637:7;41662:16;41670:7;41662;:16::i;:::-;41657:64;;41687:34;;;;;;;;;;;;;;41657:64;41741:15;:24;41757:7;41741:24;;;;;;;;;;;:30;;;;;;;;;;;;41734:37;;41561:218;;;:::o;41002:400::-;41083:13;41099:16;41107:7;41099;:16::i;:::-;41083:32;;41155:5;41132:28;;:19;:17;:19::i;:::-;:28;;;41128:175;;41180:44;41197:5;41204:19;:17;:19::i;:::-;41180:16;:44::i;:::-;41175:128;;41252:35;;;;;;;;;;;;;;41175:128;41128:175;41348:2;41315:15;:24;41331:7;41315:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41386:7;41382:2;41366:28;;41375:5;41366:28;;;;;;;;;;;;41072:330;41002:400;;:::o;30829:323::-;30890:7;31118:15;:13;:15::i;:::-;31103:12;;31087:13;;:28;:46;31080:53;;30829:323;:::o;67296:29::-;;;;:::o;45268:2817::-;45402:27;45432;45451:7;45432:18;:27::i;:::-;45402:57;;45517:4;45476:45;;45492:19;45476:45;;;45472:86;;45530:28;;;;;;;;;;;;;;45472:86;45572:27;45601:23;45628:35;45655:7;45628:26;:35::i;:::-;45571:92;;;;45763:68;45788:15;45805:4;45811:19;:17;:19::i;:::-;45763:24;:68::i;:::-;45758:180;;45851:43;45868:4;45874:19;:17;:19::i;:::-;45851:16;:43::i;:::-;45846:92;;45903:35;;;;;;;;;;;;;;45846:92;45758:180;45969:1;45955:16;;:2;:16;;;45951:52;;;45980:23;;;;;;;;;;;;;;45951:52;46016:43;46038:4;46044:2;46048:7;46057:1;46016:21;:43::i;:::-;46152:15;46149:160;;;46292:1;46271:19;46264:30;46149:160;46689:18;:24;46708:4;46689:24;;;;;;;;;;;;;;;;46687:26;;;;;;;;;;;;46758:18;:22;46777:2;46758:22;;;;;;;;;;;;;;;;46756:24;;;;;;;;;;;47080:146;47117:2;47166:45;47181:4;47187:2;47191:19;47166:14;:45::i;:::-;27228:8;47138:73;47080:18;:146::i;:::-;47051:17;:26;47069:7;47051:26;;;;;;;;;;;:175;;;;47397:1;27228:8;47346:19;:47;:52;47342:627;;;47419:19;47451:1;47441:7;:11;47419:33;;47608:1;47574:17;:30;47592:11;47574:30;;;;;;;;;;;;:35;47570:384;;;47712:13;;47697:11;:28;47693:242;;47892:19;47859:17;:30;47877:11;47859:30;;;;;;;;;;;:52;;;;47693:242;47570:384;47400:569;47342:627;48016:7;48012:2;47997:27;;48006:4;47997:27;;;;;;;;;;;;48035:42;48056:4;48062:2;48066:7;48075:1;48035:20;:42::i;:::-;45391:2694;;;45268:2817;;;:::o;68595:104::-;14162:13;:11;:13::i;:::-;68681:12:::1;68667:11;:26;;;;68595:104:::0;:::o;67935:120::-;14162:13;:11;:13::i;:::-;68016:33:::1;68026:9;68037:11;68016:9;:33::i;:::-;67935:120:::0;;:::o;68705:78::-;14162:13;:11;:13::i;:::-;68771:6:::1;68762;;:15;;;;;;;;;;;;;;;;;;68705:78:::0;:::o;69168:137::-;14162:13;:11;:13::i;:::-;69213:7:::1;69234;:5;:7::i;:::-;69226:21;;69255;69226:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69212:69;;;69296:2;69288:11;;;::::0;::::1;;69205:100;69168:137::o:0;48181:185::-;48319:39;48336:4;48342:2;48346:7;48319:39;;;;;;;;;;;;:16;:39::i;:::-;48181:185;;;:::o;68380:107::-;14162:13;:11;:13::i;:::-;68470:11:::1;;68455:12;:26;;;;;;;:::i;:::-;;68380:107:::0;;:::o;67599:330::-;67652:6;;;;;;;;;;;67651:7;67643:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;67725:1;67694:16;:28;67711:10;67694:28;;;;;;;;;;;;;;;;:32;67686:41;;;;;;67738:20;67761:13;:11;:13::i;:::-;67738:36;;67826:1;67812:11;;:15;;;;:::i;:::-;67808:1;67793:12;:16;;;;:::i;:::-;:34;67785:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;67885:1;67853:16;:28;67870:10;67853:28;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;67897:20;67903:10;67915:1;67897:5;:20::i;:::-;67628:301;67599:330::o;67452:26::-;;;;;;;;;;;;;:::o;36471:152::-;36543:7;36586:27;36605:7;36586:18;:27::i;:::-;36563:52;;36471:152;;;:::o;68493:96::-;14162:13;:11;:13::i;:::-;68573:10:::1;68561:9;:22;;;;68493:96:::0;:::o;32013:233::-;32085:7;32126:1;32109:19;;:5;:19;;;32105:60;;;32137:28;;;;;;;;;;;;;;32105:60;26172:13;32183:18;:25;32202:5;32183:25;;;;;;;;;;;;;;;;:55;32176:62;;32013:233;;;:::o;14924:103::-;14162:13;:11;:13::i;:::-;14989:30:::1;15016:1;14989:18;:30::i;:::-;14924:103::o:0;14276:87::-;14322:7;14349:6;;;;;;;;;;;14342:13;;14276:87;:::o;35254:104::-;35310:13;35343:7;35336:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35254:104;:::o;68061:115::-;68124:7;68147:16;:23;68164:5;68147:23;;;;;;;;;;;;;;;;68140:30;;68061:115;;;:::o;42119:308::-;42230:19;:17;:19::i;:::-;42218:31;;:8;:31;;;42214:61;;;42258:17;;;;;;;;;;;;;;42214:61;42340:8;42288:18;:39;42307:19;:17;:19::i;:::-;42288:39;;;;;;;;;;;;;;;:49;42328:8;42288:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42400:8;42364:55;;42379:19;:17;:19::i;:::-;42364:55;;;42410:8;42364:55;;;;;;:::i;:::-;;;;;;;;42119:308;;:::o;48964:399::-;49131:31;49144:4;49150:2;49154:7;49131:12;:31::i;:::-;49195:1;49177:2;:14;;;:19;49173:183;;49216:56;49247:4;49253:2;49257:7;49266:5;49216:30;:56::i;:::-;49211:145;;49300:40;;;;;;;;;;;;;;49211:145;49173:183;48964:399;;;;:::o;68789:371::-;68863:13;68893:17;68901:8;68893:7;:17::i;:::-;68885:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;68971:28;69002:10;:8;:10::i;:::-;68971:41;;69057:1;69032:14;69026:28;:32;:128;;;;;;;;;;;;;;;;;69094:14;69110:19;:8;:17;:19::i;:::-;69077:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69026:128;69019:135;;;68789:371;;;:::o;67225:27::-;;;;:::o;69630:238::-;14162:13;:11;:13::i;:::-;69706:11:::1;69720:8;:15;69706:29;;69751:9;69746:115;69766:3;69762:1;:7;69746:115;;;69791:15;69809:8;69818:1;69809:11;;;;;;;;:::i;:::-;;;;;;;;69791:29;;69835:14;69841:7;69835:5;:14::i;:::-;69776:85;69771:3;;;;;:::i;:::-;;;;69746:115;;;;69695:173;69630:238:::0;:::o;42584:164::-;42681:4;42705:18;:25;42724:5;42705:25;;;;;;;;;;;;;;;:35;42731:8;42705:35;;;;;;;;;;;;;;;;;;;;;;;;;42698:42;;42584:164;;;;:::o;15182:201::-;14162:13;:11;:13::i;:::-;15291:1:::1;15271:22;;:8;:22;;;;15263:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15347:28;15366:8;15347:18;:28::i;:::-;15182:201:::0;:::o;69311:315::-;69534:6;;;;;;;;;;;69440:100;;:90;69522:1;69525;69528;69440:73;69467:10;69479:7;69450:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69440:48;;;;;;:71;:73::i;:::-;:81;;:90;;;;;;:::i;:::-;:100;;;69436:158;;69564:18;;;;;;;;;;;;;;69436:158;69604:14;69610:7;69604:5;:14::i;:::-;69311:315;;;;:::o;43006:282::-;43071:4;43127:7;43108:15;:13;:15::i;:::-;:26;;:66;;;;;43161:13;;43151:7;:23;43108:66;:153;;;;;43260:1;26948:8;43212:17;:26;43230:7;43212:26;;;;;;;;;;;;:44;:49;43108:153;43088:173;;43006:282;;;:::o;64772:105::-;64832:7;64859:10;64852:17;;64772:105;:::o;68182:87::-;68239:7;68262:1;68255:8;;68182:87;:::o;37626:1275::-;37693:7;37713:12;37728:7;37713:22;;37796:4;37777:15;:13;:15::i;:::-;:23;37773:1061;;37830:13;;37823:4;:20;37819:1015;;;37868:14;37885:17;:23;37903:4;37885:23;;;;;;;;;;;;37868:40;;38002:1;26948:8;37974:6;:24;:29;37970:845;;;38639:113;38656:1;38646:6;:11;38639:113;;;38699:17;:25;38717:6;;;;;;;38699:25;;;;;;;;;;;;38690:34;;38639:113;;;38785:6;38778:13;;;;;;37970:845;37845:989;37819:1015;37773:1061;38862:31;;;;;;;;;;;;;;37626:1275;;;;:::o;44169:479::-;44271:27;44300:23;44341:38;44382:15;:24;44398:7;44382:24;;;;;;;;;;;44341:65;;44553:18;44530:41;;44610:19;44604:26;44585:45;;44515:126;44169:479;;;:::o;43397:659::-;43546:11;43711:16;43704:5;43700:28;43691:37;;43871:16;43860:9;43856:32;43843:45;;44021:15;44010:9;44007:30;43999:5;43988:9;43985:20;43982:56;43972:66;;43397:659;;;;;:::o;50025:159::-;;;;;:::o;64081:311::-;64216:7;64236:16;27352:3;64262:19;:41;;64236:68;;27352:3;64330:31;64341:4;64347:2;64351:9;64330:10;:31::i;:::-;64322:40;;:62;;64315:69;;;64081:311;;;;;:::o;39449:450::-;39529:14;39697:16;39690:5;39686:28;39677:37;;39874:5;39860:11;39835:23;39831:41;39828:52;39821:5;39818:63;39808:73;;39449:450;;;;:::o;50849:158::-;;;;;:::o;14441:132::-;14516:12;:10;:12::i;:::-;14505:23;;:7;:5;:7::i;:::-;:23;;;14497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14441:132::o;58604:112::-;58681:27;58691:2;58695:8;58681:27;;;;;;;;;;;;:9;:27::i;:::-;58604:112;;:::o;52625:2454::-;52698:20;52721:13;;52698:36;;52761:1;52749:8;:13;52745:44;;;52771:18;;;;;;;;;;;;;;52745:44;52802:61;52832:1;52836:2;52840:12;52854:8;52802:21;:61::i;:::-;53346:1;26310:2;53316:1;:26;;53315:32;53303:8;:45;53277:18;:22;53296:2;53277:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53625:139;53662:2;53716:33;53739:1;53743:2;53747:1;53716:14;:33::i;:::-;53683:30;53704:8;53683:20;:30::i;:::-;:66;53625:18;:139::i;:::-;53591:17;:31;53609:12;53591:31;;;;;;;;;;;:173;;;;53781:16;53812:11;53841:8;53826:12;:23;53812:37;;54096:16;54092:2;54088:25;54076:37;;54468:12;54428:8;54387:1;54325:25;54266:1;54205;54178:335;54593:1;54579:12;54575:20;54533:346;54634:3;54625:7;54622:16;54533:346;;54852:7;54842:8;54839:1;54812:25;54809:1;54806;54801:59;54687:1;54678:7;54674:15;54663:26;;54533:346;;;54537:77;54924:1;54912:8;:13;54908:45;;;54934:19;;;;;;;;;;;;;;54908:45;54986:3;54970:13;:19;;;;53051:1950;;55011:60;55040:1;55044:2;55048:12;55062:8;55011:20;:60::i;:::-;52687:2392;52625:2454;;:::o;15543:191::-;15617:16;15636:6;;;;;;;;;;;15617:25;;15662:8;15653:6;;:17;;;;;;;;;;;;;;;;;;15717:8;15686:40;;15707:8;15686:40;;;;;;;;;;;;15606:128;15543:191;:::o;51447:716::-;51610:4;51656:2;51631:45;;;51677:19;:17;:19::i;:::-;51698:4;51704:7;51713:5;51631:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51627:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51931:1;51914:6;:13;:18;51910:235;;;51960:40;;;;;;;;;;;;;;51910:235;52103:6;52097:13;52088:6;52084:2;52080:15;52073:38;51627:529;51800:54;;;51790:64;;;:6;:64;;;;51783:71;;;51447:716;;;;;;:::o;68275:99::-;68327:13;68356:12;68349:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68275:99;:::o;451:723::-;507:13;737:1;728:5;:10;724:53;;;755:10;;;;;;;;;;;;;;;;;;;;;724:53;787:12;802:5;787:20;;818:14;843:78;858:1;850:4;:9;843:78;;876:8;;;;;:::i;:::-;;;;907:2;899:10;;;;;:::i;:::-;;;843:78;;;931:19;963:6;953:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931:39;;981:154;997:1;988:5;:10;981:154;;1025:1;1015:11;;;;;:::i;:::-;;;1092:2;1084:5;:10;;;;:::i;:::-;1071:2;:24;;;;:::i;:::-;1058:39;;1041:6;1048;1041:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1121:2;1112:11;;;;;:::i;:::-;;;981:154;;;1159:6;1145:21;;;;;451:723;;;;:::o;58983:89::-;59043:21;59049:7;59058:5;59043;:21::i;:::-;58983:89;:::o;10833:269::-;10902:7;11088:4;11035:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;11025:69;;;;;;11018:76;;10833:269;;;:::o;10254:279::-;10382:7;10403:17;10422:18;10444:25;10455:4;10461:1;10464;10467;10444:10;:25::i;:::-;10402:67;;;;10480:18;10492:5;10480:11;:18::i;:::-;10516:9;10509:16;;;;10254:279;;;;;;:::o;63782:147::-;63919:6;63782:147;;;;;:::o;12827:98::-;12880:7;12907:10;12900:17;;12827:98;:::o;57831:689::-;57962:19;57968:2;57972:8;57962:5;:19::i;:::-;58041:1;58023:2;:14;;;:19;58019:483;;58063:11;58077:13;;58063:27;;58109:13;58131:8;58125:3;:14;58109:30;;58158:233;58189:62;58228:1;58232:2;58236:7;;;;;;58245:5;58189:30;:62::i;:::-;58184:167;;58287:40;;;;;;;;;;;;;;58184:167;58386:3;58378:5;:11;58158:233;;58473:3;58456:13;;:20;58452:34;;58478:8;;;58452:34;58044:458;;58019:483;57831:689;;;:::o;40001:324::-;40071:14;40304:1;40294:8;40291:15;40265:24;40261:46;40251:56;;40001:324;;;:::o;59301:3081::-;59381:27;59411;59430:7;59411:18;:27::i;:::-;59381:57;;59451:12;59482:19;59451:52;;59517:27;59546:23;59573:35;59600:7;59573:26;:35::i;:::-;59516:92;;;;59625:13;59621:316;;;59746:68;59771:15;59788:4;59794:19;:17;:19::i;:::-;59746:24;:68::i;:::-;59741:184;;59838:43;59855:4;59861:19;:17;:19::i;:::-;59838:16;:43::i;:::-;59833:92;;59890:35;;;;;;;;;;;;;;59833:92;59741:184;59621:316;59949:51;59971:4;59985:1;59989:7;59998:1;59949:21;:51::i;:::-;60093:15;60090:160;;;60233:1;60212:19;60205:30;60090:160;60911:1;26437:3;60881:1;:26;;60880:32;60852:18;:24;60871:4;60852:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;61179:176;61216:4;61287:53;61302:4;61316:1;61320:19;61287:14;:53::i;:::-;27228:8;26948;61240:43;61239:101;61179:18;:176::i;:::-;61150:17;:26;61168:7;61150:26;;;;;;;;;;;:205;;;;61526:1;27228:8;61475:19;:47;:52;61471:627;;;61548:19;61580:1;61570:7;:11;61548:33;;61737:1;61703:17;:30;61721:11;61703:30;;;;;;;;;;;;:35;61699:384;;;61841:13;;61826:11;:28;61822:242;;62021:19;61988:17;:30;62006:11;61988:30;;;;;;;;;;;:52;;;;61822:242;61699:384;61529:569;61471:627;62153:7;62149:1;62126:35;;62135:4;62126:35;;;;;;;;;;;;62172:50;62193:4;62207:1;62211:7;62220:1;62172:20;:50::i;:::-;62349:12;;:14;;;;;;;;;;;;;59370:3012;;;;59301:3081;;:::o;8483:1632::-;8614:7;8623:12;9548:66;9543:1;9535:10;;:79;9531:163;;;9647:1;9651:30;9631:51;;;;;;9531:163;9713:2;9708:1;:7;;;;:18;;;;;9724:2;9719:1;:7;;;;9708:18;9704:102;;;9759:1;9763:30;9743:51;;;;;;9704:102;9903:14;9920:24;9930:4;9936:1;9939;9942;9920:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9903:41;;9977:1;9959:20;;:6;:20;;;9955:103;;;10012:1;10016:29;9996:50;;;;;;;9955:103;10078:6;10086:20;10070:37;;;;;8483:1632;;;;;;;;:::o;3096:643::-;3174:20;3165:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;3161:571;;;3211:7;;3161:571;3272:29;3263:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;3259:473;;;3318:34;;;;;;;;;;:::i;:::-;;;;;;;;3259:473;3383:35;3374:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;3370:362;;;3435:41;;;;;;;;;;:::i;:::-;;;;;;;;3370:362;3507:30;3498:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;3494:238;;;3554:44;;;;;;;;;;:::i;:::-;;;;;;;;3494:238;3629:30;3620:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;3616:116;;;3676:44;;;;;;;;;;:::i;:::-;;;;;;;;3616:116;3096:643;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:370::-;1401:5;1450:3;1443:4;1435:6;1431:17;1427:27;1417:122;;1458:79;;:::i;:::-;1417:122;1575:6;1562:20;1600:94;1690:3;1682:6;1675:4;1667:6;1663:17;1600:94;:::i;:::-;1591:103;;1407:293;1330:370;;;;:::o;1706:133::-;1749:5;1787:6;1774:20;1765:29;;1803:30;1827:5;1803:30;:::i;:::-;1706:133;;;;:::o;1845:139::-;1891:5;1929:6;1916:20;1907:29;;1945:33;1972:5;1945:33;:::i;:::-;1845:139;;;;:::o;1990:137::-;2035:5;2073:6;2060:20;2051:29;;2089:32;2115:5;2089:32;:::i;:::-;1990:137;;;;:::o;2133:141::-;2189:5;2220:6;2214:13;2205:22;;2236:32;2262:5;2236:32;:::i;:::-;2133:141;;;;:::o;2293:338::-;2348:5;2397:3;2390:4;2382:6;2378:17;2374:27;2364:122;;2405:79;;:::i;:::-;2364:122;2522:6;2509:20;2547:78;2621:3;2613:6;2606:4;2598:6;2594:17;2547:78;:::i;:::-;2538:87;;2354:277;2293:338;;;;:::o;2651:553::-;2709:8;2719:6;2769:3;2762:4;2754:6;2750:17;2746:27;2736:122;;2777:79;;:::i;:::-;2736:122;2890:6;2877:20;2867:30;;2920:18;2912:6;2909:30;2906:117;;;2942:79;;:::i;:::-;2906:117;3056:4;3048:6;3044:17;3032:29;;3110:3;3102:4;3094:6;3090:17;3080:8;3076:32;3073:41;3070:128;;;3117:79;;:::i;:::-;3070:128;2651:553;;;;;:::o;3210:139::-;3256:5;3294:6;3281:20;3272:29;;3310:33;3337:5;3310:33;:::i;:::-;3210:139;;;;:::o;3355:135::-;3399:5;3437:6;3424:20;3415:29;;3453:31;3478:5;3453:31;:::i;:::-;3355:135;;;;:::o;3496:329::-;3555:6;3604:2;3592:9;3583:7;3579:23;3575:32;3572:119;;;3610:79;;:::i;:::-;3572:119;3730:1;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3701:117;3496:329;;;;:::o;3831:474::-;3899:6;3907;3956:2;3944:9;3935:7;3931:23;3927:32;3924:119;;;3962:79;;:::i;:::-;3924:119;4082:1;4107:53;4152:7;4143:6;4132:9;4128:22;4107:53;:::i;:::-;4097:63;;4053:117;4209:2;4235:53;4280:7;4271:6;4260:9;4256:22;4235:53;:::i;:::-;4225:63;;4180:118;3831:474;;;;;:::o;4311:619::-;4388:6;4396;4404;4453:2;4441:9;4432:7;4428:23;4424:32;4421:119;;;4459:79;;:::i;:::-;4421:119;4579:1;4604:53;4649:7;4640:6;4629:9;4625:22;4604:53;:::i;:::-;4594:63;;4550:117;4706:2;4732:53;4777:7;4768:6;4757:9;4753:22;4732:53;:::i;:::-;4722:63;;4677:118;4834:2;4860:53;4905:7;4896:6;4885:9;4881:22;4860:53;:::i;:::-;4850:63;;4805:118;4311:619;;;;;:::o;4936:943::-;5031:6;5039;5047;5055;5104:3;5092:9;5083:7;5079:23;5075:33;5072:120;;;5111:79;;:::i;:::-;5072:120;5231:1;5256:53;5301:7;5292:6;5281:9;5277:22;5256:53;:::i;:::-;5246:63;;5202:117;5358:2;5384:53;5429:7;5420:6;5409:9;5405:22;5384:53;:::i;:::-;5374:63;;5329:118;5486:2;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5457:118;5642:2;5631:9;5627:18;5614:32;5673:18;5665:6;5662:30;5659:117;;;5695:79;;:::i;:::-;5659:117;5800:62;5854:7;5845:6;5834:9;5830:22;5800:62;:::i;:::-;5790:72;;5585:287;4936:943;;;;;;;:::o;5885:468::-;5950:6;5958;6007:2;5995:9;5986:7;5982:23;5978:32;5975:119;;;6013:79;;:::i;:::-;5975:119;6133:1;6158:53;6203:7;6194:6;6183:9;6179:22;6158:53;:::i;:::-;6148:63;;6104:117;6260:2;6286:50;6328:7;6319:6;6308:9;6304:22;6286:50;:::i;:::-;6276:60;;6231:115;5885:468;;;;;:::o;6359:474::-;6427:6;6435;6484:2;6472:9;6463:7;6459:23;6455:32;6452:119;;;6490:79;;:::i;:::-;6452:119;6610:1;6635:53;6680:7;6671:6;6660:9;6656:22;6635:53;:::i;:::-;6625:63;;6581:117;6737:2;6763:53;6808:7;6799:6;6788:9;6784:22;6763:53;:::i;:::-;6753:63;;6708:118;6359:474;;;;;:::o;6839:539::-;6923:6;6972:2;6960:9;6951:7;6947:23;6943:32;6940:119;;;6978:79;;:::i;:::-;6940:119;7126:1;7115:9;7111:17;7098:31;7156:18;7148:6;7145:30;7142:117;;;7178:79;;:::i;:::-;7142:117;7283:78;7353:7;7344:6;7333:9;7329:22;7283:78;:::i;:::-;7273:88;;7069:302;6839:539;;;;:::o;7384:323::-;7440:6;7489:2;7477:9;7468:7;7464:23;7460:32;7457:119;;;7495:79;;:::i;:::-;7457:119;7615:1;7640:50;7682:7;7673:6;7662:9;7658:22;7640:50;:::i;:::-;7630:60;;7586:114;7384:323;;;;:::o;7713:327::-;7771:6;7820:2;7808:9;7799:7;7795:23;7791:32;7788:119;;;7826:79;;:::i;:::-;7788:119;7946:1;7971:52;8015:7;8006:6;7995:9;7991:22;7971:52;:::i;:::-;7961:62;;7917:116;7713:327;;;;:::o;8046:349::-;8115:6;8164:2;8152:9;8143:7;8139:23;8135:32;8132:119;;;8170:79;;:::i;:::-;8132:119;8290:1;8315:63;8370:7;8361:6;8350:9;8346:22;8315:63;:::i;:::-;8305:73;;8261:127;8046:349;;;;:::o;8401:529::-;8472:6;8480;8529:2;8517:9;8508:7;8504:23;8500:32;8497:119;;;8535:79;;:::i;:::-;8497:119;8683:1;8672:9;8668:17;8655:31;8713:18;8705:6;8702:30;8699:117;;;8735:79;;:::i;:::-;8699:117;8848:65;8905:7;8896:6;8885:9;8881:22;8848:65;:::i;:::-;8830:83;;;;8626:297;8401:529;;;;;:::o;8936:329::-;8995:6;9044:2;9032:9;9023:7;9019:23;9015:32;9012:119;;;9050:79;;:::i;:::-;9012:119;9170:1;9195:53;9240:7;9231:6;9220:9;9216:22;9195:53;:::i;:::-;9185:63;;9141:117;8936:329;;;;:::o;9271:474::-;9339:6;9347;9396:2;9384:9;9375:7;9371:23;9367:32;9364:119;;;9402:79;;:::i;:::-;9364:119;9522:1;9547:53;9592:7;9583:6;9572:9;9568:22;9547:53;:::i;:::-;9537:63;;9493:117;9649:2;9675:53;9720:7;9711:6;9700:9;9696:22;9675:53;:::i;:::-;9665:63;;9620:118;9271:474;;;;;:::o;9751:761::-;9835:6;9843;9851;9859;9908:3;9896:9;9887:7;9883:23;9879:33;9876:120;;;9915:79;;:::i;:::-;9876:120;10035:1;10060:53;10105:7;10096:6;10085:9;10081:22;10060:53;:::i;:::-;10050:63;;10006:117;10162:2;10188:51;10231:7;10222:6;10211:9;10207:22;10188:51;:::i;:::-;10178:61;;10133:116;10288:2;10314:53;10359:7;10350:6;10339:9;10335:22;10314:53;:::i;:::-;10304:63;;10259:118;10416:2;10442:53;10487:7;10478:6;10467:9;10463:22;10442:53;:::i;:::-;10432:63;;10387:118;9751:761;;;;;;;:::o;10518:118::-;10605:24;10623:5;10605:24;:::i;:::-;10600:3;10593:37;10518:118;;:::o;10642:157::-;10747:45;10767:24;10785:5;10767:24;:::i;:::-;10747:45;:::i;:::-;10742:3;10735:58;10642:157;;:::o;10805:109::-;10886:21;10901:5;10886:21;:::i;:::-;10881:3;10874:34;10805:109;;:::o;10920:118::-;11007:24;11025:5;11007:24;:::i;:::-;11002:3;10995:37;10920:118;;:::o;11044:157::-;11149:45;11169:24;11187:5;11169:24;:::i;:::-;11149:45;:::i;:::-;11144:3;11137:58;11044:157;;:::o;11207:360::-;11293:3;11321:38;11353:5;11321:38;:::i;:::-;11375:70;11438:6;11433:3;11375:70;:::i;:::-;11368:77;;11454:52;11499:6;11494:3;11487:4;11480:5;11476:16;11454:52;:::i;:::-;11531:29;11553:6;11531:29;:::i;:::-;11526:3;11522:39;11515:46;;11297:270;11207:360;;;;:::o;11573:364::-;11661:3;11689:39;11722:5;11689:39;:::i;:::-;11744:71;11808:6;11803:3;11744:71;:::i;:::-;11737:78;;11824:52;11869:6;11864:3;11857:4;11850:5;11846:16;11824:52;:::i;:::-;11901:29;11923:6;11901:29;:::i;:::-;11896:3;11892:39;11885:46;;11665:272;11573:364;;;;:::o;11943:377::-;12049:3;12077:39;12110:5;12077:39;:::i;:::-;12132:89;12214:6;12209:3;12132:89;:::i;:::-;12125:96;;12230:52;12275:6;12270:3;12263:4;12256:5;12252:16;12230:52;:::i;:::-;12307:6;12302:3;12298:16;12291:23;;12053:267;11943:377;;;;:::o;12326:366::-;12468:3;12489:67;12553:2;12548:3;12489:67;:::i;:::-;12482:74;;12565:93;12654:3;12565:93;:::i;:::-;12683:2;12678:3;12674:12;12667:19;;12326:366;;;:::o;12698:365::-;12840:3;12861:66;12925:1;12920:3;12861:66;:::i;:::-;12854:73;;12936:93;13025:3;12936:93;:::i;:::-;13054:2;13049:3;13045:12;13038:19;;12698:365;;;:::o;13069:366::-;13211:3;13232:67;13296:2;13291:3;13232:67;:::i;:::-;13225:74;;13308:93;13397:3;13308:93;:::i;:::-;13426:2;13421:3;13417:12;13410:19;;13069:366;;;:::o;13441:402::-;13601:3;13622:85;13704:2;13699:3;13622:85;:::i;:::-;13615:92;;13716:93;13805:3;13716:93;:::i;:::-;13834:2;13829:3;13825:12;13818:19;;13441:402;;;:::o;13849:366::-;13991:3;14012:67;14076:2;14071:3;14012:67;:::i;:::-;14005:74;;14088:93;14177:3;14088:93;:::i;:::-;14206:2;14201:3;14197:12;14190:19;;13849:366;;;:::o;14221:::-;14363:3;14384:67;14448:2;14443:3;14384:67;:::i;:::-;14377:74;;14460:93;14549:3;14460:93;:::i;:::-;14578:2;14573:3;14569:12;14562:19;;14221:366;;;:::o;14593:::-;14735:3;14756:67;14820:2;14815:3;14756:67;:::i;:::-;14749:74;;14832:93;14921:3;14832:93;:::i;:::-;14950:2;14945:3;14941:12;14934:19;;14593:366;;;:::o;14965:::-;15107:3;15128:67;15192:2;15187:3;15128:67;:::i;:::-;15121:74;;15204:93;15293:3;15204:93;:::i;:::-;15322:2;15317:3;15313:12;15306:19;;14965:366;;;:::o;15337:400::-;15497:3;15518:84;15600:1;15595:3;15518:84;:::i;:::-;15511:91;;15611:93;15700:3;15611:93;:::i;:::-;15729:1;15724:3;15720:11;15713:18;;15337:400;;;:::o;15743:366::-;15885:3;15906:67;15970:2;15965:3;15906:67;:::i;:::-;15899:74;;15982:93;16071:3;15982:93;:::i;:::-;16100:2;16095:3;16091:12;16084:19;;15743:366;;;:::o;16115:::-;16257:3;16278:67;16342:2;16337:3;16278:67;:::i;:::-;16271:74;;16354:93;16443:3;16354:93;:::i;:::-;16472:2;16467:3;16463:12;16456:19;;16115:366;;;:::o;16487:398::-;16646:3;16667:83;16748:1;16743:3;16667:83;:::i;:::-;16660:90;;16759:93;16848:3;16759:93;:::i;:::-;16877:1;16872:3;16868:11;16861:18;;16487:398;;;:::o;16891:118::-;16978:24;16996:5;16978:24;:::i;:::-;16973:3;16966:37;16891:118;;:::o;17015:157::-;17120:45;17140:24;17158:5;17140:24;:::i;:::-;17120:45;:::i;:::-;17115:3;17108:58;17015:157;;:::o;17178:112::-;17261:22;17277:5;17261:22;:::i;:::-;17256:3;17249:35;17178:112;;:::o;17296:397::-;17436:3;17451:75;17522:3;17513:6;17451:75;:::i;:::-;17551:2;17546:3;17542:12;17535:19;;17564:75;17635:3;17626:6;17564:75;:::i;:::-;17664:2;17659:3;17655:12;17648:19;;17684:3;17677:10;;17296:397;;;;;:::o;17699:701::-;17980:3;18002:95;18093:3;18084:6;18002:95;:::i;:::-;17995:102;;18114:95;18205:3;18196:6;18114:95;:::i;:::-;18107:102;;18226:148;18370:3;18226:148;:::i;:::-;18219:155;;18391:3;18384:10;;17699:701;;;;;:::o;18406:522::-;18619:3;18641:148;18785:3;18641:148;:::i;:::-;18634:155;;18799:75;18870:3;18861:6;18799:75;:::i;:::-;18899:2;18894:3;18890:12;18883:19;;18919:3;18912:10;;18406:522;;;;:::o;18934:379::-;19118:3;19140:147;19283:3;19140:147;:::i;:::-;19133:154;;19304:3;19297:10;;18934:379;;;:::o;19319:222::-;19412:4;19450:2;19439:9;19435:18;19427:26;;19463:71;19531:1;19520:9;19516:17;19507:6;19463:71;:::i;:::-;19319:222;;;;:::o;19547:640::-;19742:4;19780:3;19769:9;19765:19;19757:27;;19794:71;19862:1;19851:9;19847:17;19838:6;19794:71;:::i;:::-;19875:72;19943:2;19932:9;19928:18;19919:6;19875:72;:::i;:::-;19957;20025:2;20014:9;20010:18;20001:6;19957:72;:::i;:::-;20076:9;20070:4;20066:20;20061:2;20050:9;20046:18;20039:48;20104:76;20175:4;20166:6;20104:76;:::i;:::-;20096:84;;19547:640;;;;;;;:::o;20193:210::-;20280:4;20318:2;20307:9;20303:18;20295:26;;20331:65;20393:1;20382:9;20378:17;20369:6;20331:65;:::i;:::-;20193:210;;;;:::o;20409:545::-;20582:4;20620:3;20609:9;20605:19;20597:27;;20634:71;20702:1;20691:9;20687:17;20678:6;20634:71;:::i;:::-;20715:68;20779:2;20768:9;20764:18;20755:6;20715:68;:::i;:::-;20793:72;20861:2;20850:9;20846:18;20837:6;20793:72;:::i;:::-;20875;20943:2;20932:9;20928:18;20919:6;20875:72;:::i;:::-;20409:545;;;;;;;:::o;20960:313::-;21073:4;21111:2;21100:9;21096:18;21088:26;;21160:9;21154:4;21150:20;21146:1;21135:9;21131:17;21124:47;21188:78;21261:4;21252:6;21188:78;:::i;:::-;21180:86;;20960:313;;;;:::o;21279:419::-;21445:4;21483:2;21472:9;21468:18;21460:26;;21532:9;21526:4;21522:20;21518:1;21507:9;21503:17;21496:47;21560:131;21686:4;21560:131;:::i;:::-;21552:139;;21279:419;;;:::o;21704:::-;21870:4;21908:2;21897:9;21893:18;21885:26;;21957:9;21951:4;21947:20;21943:1;21932:9;21928:17;21921:47;21985:131;22111:4;21985:131;:::i;:::-;21977:139;;21704:419;;;:::o;22129:::-;22295:4;22333:2;22322:9;22318:18;22310:26;;22382:9;22376:4;22372:20;22368:1;22357:9;22353:17;22346:47;22410:131;22536:4;22410:131;:::i;:::-;22402:139;;22129:419;;;:::o;22554:::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:::-;23145:4;23183:2;23172:9;23168:18;23160:26;;23232:9;23226:4;23222:20;23218:1;23207:9;23203:17;23196:47;23260:131;23386:4;23260:131;:::i;:::-;23252:139;;22979:419;;;:::o;23404:::-;23570:4;23608:2;23597:9;23593:18;23585:26;;23657:9;23651:4;23647:20;23643:1;23632:9;23628:17;23621:47;23685:131;23811:4;23685:131;:::i;:::-;23677:139;;23404:419;;;:::o;23829:::-;23995:4;24033:2;24022:9;24018:18;24010:26;;24082:9;24076:4;24072:20;24068:1;24057:9;24053:17;24046:47;24110:131;24236:4;24110:131;:::i;:::-;24102:139;;23829:419;;;:::o;24254:::-;24420:4;24458:2;24447:9;24443:18;24435:26;;24507:9;24501:4;24497:20;24493:1;24482:9;24478:17;24471:47;24535:131;24661:4;24535:131;:::i;:::-;24527:139;;24254:419;;;:::o;24679:::-;24845:4;24883:2;24872:9;24868:18;24860:26;;24932:9;24926:4;24922:20;24918:1;24907:9;24903:17;24896:47;24960:131;25086:4;24960:131;:::i;:::-;24952:139;;24679:419;;;:::o;25104:222::-;25197:4;25235:2;25224:9;25220:18;25212:26;;25248:71;25316:1;25305:9;25301:17;25292:6;25248:71;:::i;:::-;25104:222;;;;:::o;25332:129::-;25366:6;25393:20;;:::i;:::-;25383:30;;25422:33;25450:4;25442:6;25422:33;:::i;:::-;25332:129;;;:::o;25467:75::-;25500:6;25533:2;25527:9;25517:19;;25467:75;:::o;25548:311::-;25625:4;25715:18;25707:6;25704:30;25701:56;;;25737:18;;:::i;:::-;25701:56;25787:4;25779:6;25775:17;25767:25;;25847:4;25841;25837:15;25829:23;;25548:311;;;:::o;25865:307::-;25926:4;26016:18;26008:6;26005:30;26002:56;;;26038:18;;:::i;:::-;26002:56;26076:29;26098:6;26076:29;:::i;:::-;26068:37;;26160:4;26154;26150:15;26142:23;;25865:307;;;:::o;26178:98::-;26229:6;26263:5;26257:12;26247:22;;26178:98;;;:::o;26282:99::-;26334:6;26368:5;26362:12;26352:22;;26282:99;;;:::o;26387:168::-;26470:11;26504:6;26499:3;26492:19;26544:4;26539:3;26535:14;26520:29;;26387:168;;;;:::o;26561:147::-;26662:11;26699:3;26684:18;;26561:147;;;;:::o;26714:169::-;26798:11;26832:6;26827:3;26820:19;26872:4;26867:3;26863:14;26848:29;;26714:169;;;;:::o;26889:148::-;26991:11;27028:3;27013:18;;26889:148;;;;:::o;27043:305::-;27083:3;27102:20;27120:1;27102:20;:::i;:::-;27097:25;;27136:20;27154:1;27136:20;:::i;:::-;27131:25;;27290:1;27222:66;27218:74;27215:1;27212:81;27209:107;;;27296:18;;:::i;:::-;27209:107;27340:1;27337;27333:9;27326:16;;27043:305;;;;:::o;27354:185::-;27394:1;27411:20;27429:1;27411:20;:::i;:::-;27406:25;;27445:20;27463:1;27445:20;:::i;:::-;27440:25;;27484:1;27474:35;;27489:18;;:::i;:::-;27474:35;27531:1;27528;27524:9;27519:14;;27354:185;;;;:::o;27545:191::-;27585:4;27605:20;27623:1;27605:20;:::i;:::-;27600:25;;27639:20;27657:1;27639:20;:::i;:::-;27634:25;;27678:1;27675;27672:8;27669:34;;;27683:18;;:::i;:::-;27669:34;27728:1;27725;27721:9;27713:17;;27545:191;;;;:::o;27742:96::-;27779:7;27808:24;27826:5;27808:24;:::i;:::-;27797:35;;27742:96;;;:::o;27844:90::-;27878:7;27921:5;27914:13;27907:21;27896:32;;27844:90;;;:::o;27940:77::-;27977:7;28006:5;27995:16;;27940:77;;;:::o;28023:149::-;28059:7;28099:66;28092:5;28088:78;28077:89;;28023:149;;;:::o;28178:126::-;28215:7;28255:42;28248:5;28244:54;28233:65;;28178:126;;;:::o;28310:77::-;28347:7;28376:5;28365:16;;28310:77;;;:::o;28393:86::-;28428:7;28468:4;28461:5;28457:16;28446:27;;28393:86;;;:::o;28485:154::-;28569:6;28564:3;28559;28546:30;28631:1;28622:6;28617:3;28613:16;28606:27;28485:154;;;:::o;28645:307::-;28713:1;28723:113;28737:6;28734:1;28731:13;28723:113;;;28822:1;28817:3;28813:11;28807:18;28803:1;28798:3;28794:11;28787:39;28759:2;28756:1;28752:10;28747:15;;28723:113;;;28854:6;28851:1;28848:13;28845:101;;;28934:1;28925:6;28920:3;28916:16;28909:27;28845:101;28694:258;28645:307;;;:::o;28958:320::-;29002:6;29039:1;29033:4;29029:12;29019:22;;29086:1;29080:4;29076:12;29107:18;29097:81;;29163:4;29155:6;29151:17;29141:27;;29097:81;29225:2;29217:6;29214:14;29194:18;29191:38;29188:84;;;29244:18;;:::i;:::-;29188:84;29009:269;28958:320;;;:::o;29284:281::-;29367:27;29389:4;29367:27;:::i;:::-;29359:6;29355:40;29497:6;29485:10;29482:22;29461:18;29449:10;29446:34;29443:62;29440:88;;;29508:18;;:::i;:::-;29440:88;29548:10;29544:2;29537:22;29327:238;29284:281;;:::o;29571:233::-;29610:3;29633:24;29651:5;29633:24;:::i;:::-;29624:33;;29679:66;29672:5;29669:77;29666:103;;;29749:18;;:::i;:::-;29666:103;29796:1;29789:5;29785:13;29778:20;;29571:233;;;:::o;29810:100::-;29849:7;29878:26;29898:5;29878:26;:::i;:::-;29867:37;;29810:100;;;:::o;29916:79::-;29955:7;29984:5;29973:16;;29916:79;;;:::o;30001:94::-;30040:7;30069:20;30083:5;30069:20;:::i;:::-;30058:31;;30001:94;;;:::o;30101:79::-;30140:7;30169:5;30158:16;;30101:79;;;:::o;30186:176::-;30218:1;30235:20;30253:1;30235:20;:::i;:::-;30230:25;;30269:20;30287:1;30269:20;:::i;:::-;30264:25;;30308:1;30298:35;;30313:18;;:::i;:::-;30298:35;30354:1;30351;30347:9;30342:14;;30186:176;;;;:::o;30368:180::-;30416:77;30413:1;30406:88;30513:4;30510:1;30503:15;30537:4;30534:1;30527:15;30554:180;30602:77;30599:1;30592:88;30699:4;30696:1;30689:15;30723:4;30720:1;30713:15;30740:180;30788:77;30785:1;30778:88;30885:4;30882:1;30875:15;30909:4;30906:1;30899:15;30926:180;30974:77;30971:1;30964:88;31071:4;31068:1;31061:15;31095:4;31092:1;31085:15;31112:180;31160:77;31157:1;31150:88;31257:4;31254:1;31247:15;31281:4;31278:1;31271:15;31298:180;31346:77;31343:1;31336:88;31443:4;31440:1;31433:15;31467:4;31464:1;31457:15;31484:117;31593:1;31590;31583:12;31607:117;31716:1;31713;31706:12;31730:117;31839:1;31836;31829:12;31853:117;31962:1;31959;31952:12;31976:117;32085:1;32082;32075:12;32099:117;32208:1;32205;32198:12;32222:102;32263:6;32314:2;32310:7;32305:2;32298:5;32294:14;32290:28;32280:38;;32222:102;;;:::o;32330:94::-;32363:8;32411:5;32407:2;32403:14;32382:35;;32330:94;;;:::o;32430:174::-;32570:26;32566:1;32558:6;32554:14;32547:50;32430:174;:::o;32610:158::-;32750:10;32746:1;32738:6;32734:14;32727:34;32610:158;:::o;32774:181::-;32914:33;32910:1;32902:6;32898:14;32891:57;32774:181;:::o;32961:214::-;33101:66;33097:1;33089:6;33085:14;33078:90;32961:214;:::o;33181:164::-;33321:16;33317:1;33309:6;33305:14;33298:40;33181:164;:::o;33351:225::-;33491:34;33487:1;33479:6;33475:14;33468:58;33560:8;33555:2;33547:6;33543:15;33536:33;33351:225;:::o;33582:221::-;33722:34;33718:1;33710:6;33706:14;33699:58;33791:4;33786:2;33778:6;33774:15;33767:29;33582:221;:::o;33809:::-;33949:34;33945:1;33937:6;33933:14;33926:58;34018:4;34013:2;34005:6;34001:15;33994:29;33809:221;:::o;34036:155::-;34176:7;34172:1;34164:6;34160:14;34153:31;34036:155;:::o;34197:182::-;34337:34;34333:1;34325:6;34321:14;34314:58;34197:182;:::o;34385:234::-;34525:34;34521:1;34513:6;34509:14;34502:58;34594:17;34589:2;34581:6;34577:15;34570:42;34385:234;:::o;34625:114::-;;:::o;34745:122::-;34818:24;34836:5;34818:24;:::i;:::-;34811:5;34808:35;34798:63;;34857:1;34854;34847:12;34798:63;34745:122;:::o;34873:116::-;34943:21;34958:5;34943:21;:::i;:::-;34936:5;34933:32;34923:60;;34979:1;34976;34969:12;34923:60;34873:116;:::o;34995:122::-;35068:24;35086:5;35068:24;:::i;:::-;35061:5;35058:35;35048:63;;35107:1;35104;35097:12;35048:63;34995:122;:::o;35123:120::-;35195:23;35212:5;35195:23;:::i;:::-;35188:5;35185:34;35175:62;;35233:1;35230;35223:12;35175:62;35123:120;:::o;35249:122::-;35322:24;35340:5;35322:24;:::i;:::-;35315:5;35312:35;35302:63;;35361:1;35358;35351:12;35302:63;35249:122;:::o;35377:118::-;35448:22;35464:5;35448:22;:::i;:::-;35441:5;35438:33;35428:61;;35485:1;35482;35475:12;35428:61;35377:118;:::o

Swarm Source

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