ETH Price: $3,116.53 (-5.33%)
Gas: 4 Gwei

Token

HotDogTimeMachine (HDTM)
 

Overview

Max Total Supply

3,000 HDTM

Holders

1,975

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HDTM
0x6ffda6ecfd61be0c07c1997d652649bc55e94a1a
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:
HotDogTimeMachine

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
     _  _   __  ____    ____   __    ___    ____  __  _  _  ____    _  _   __    ___  _  _  __  __ _  ____ 
    / )( \ /  \(_  _)  (    \ /  \  / __)  (_  _)(  )( \/ )(  __)  ( \/ ) / _\  / __)/ )( \(  )(  ( \(  __)
    ) __ ((  O ) )(     ) D ((  O )( (_ \    )(   )( / \/ \ ) _)   / \/ \/    \( (__ ) __ ( )( /    / ) _) 
    \_)(_/ \__/ (__)   (____/ \__/  \___/   (__) (__)\_)(_/(____)  \_)(_/\_/\_/ \___)\_)(_/(__)\_)__)(____)

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract HotDogTimeMachine is ERC721A {
    address private grillMaster;
    bytes32 public provenanceHash;
    string private baseTokenURI;
    uint256 public maximumDoggage = 0;
    uint8 public partyPhase = 0; // 33 means public mint

    mapping(uint8 => bytes32) private merkleVIPs;
    mapping(uint8 => bytes32) private merklePlusOnes;
    mapping(address => bool) private ticketClaimed;

    constructor(uint256 _maximumDoggage) ERC721A("HotDogTimeMachine", "HDTM") {
        grillMaster = msg.sender;
        maximumDoggage = _maximumDoggage;
    }

    modifier onlyOwner() {
        require(msg.sender == grillMaster, "You are not the grill master...");
        _;
    }

    function isInvited(address _partyPerson, bytes32[] calldata _ticket, uint8 _phase) public view returns(bool) {
        bytes32 leaf = keccak256(abi.encodePacked(_partyPerson));
        return MerkleProof.verify(_ticket, merkleVIPs[_phase], leaf);
    }

    function hasPlusOne(address _partyPerson, bytes32[] calldata _extraTicket, uint8 _phase) public view returns(bool) {
        bytes32 leaf = keccak256(abi.encodePacked(_partyPerson));
        return MerkleProof.verify(_extraTicket, merklePlusOnes[_phase], leaf);
    }

    function claimableDogs(address _partyPerson, bytes32[] calldata _ticket, bytes32[] calldata _extraTicket) public view returns(uint256) {
        uint8 maxClaimable = 0;
        if (partyPhase == 33) {
            maxClaimable = 1;
        } else if (isInvited(_partyPerson, _ticket, partyPhase)) {
            maxClaimable = hasPlusOne(_partyPerson, _extraTicket, partyPhase) ? 2 : 1;
        }
        return maxClaimable - balanceOf(_partyPerson);
    }

    function sizzle(bytes32[] calldata _ticket, bytes32[] calldata _extraTicket) external {
        require(partyPhase > 0, "The party hasn't started yet");
        require(
            partyPhase == 33 || isInvited(msg.sender, _ticket, partyPhase),
            "Looks like we're not ready for you yet"
        );

        uint256 leCount = totalSupply();
        uint256 maxAllowed = claimableDogs(msg.sender, _ticket, _extraTicket);

        require(maxAllowed > 0 && !ticketClaimed[msg.sender], "Don't be greedy");
        require(leCount + maxAllowed <= maximumDoggage, "Looks like you missed the party");

        _safeMint(msg.sender, maxAllowed);
        ticketClaimed[msg.sender] = true;
    }

    function inviteToParty(bytes32[] memory _merkleVIPs, uint8 _partyPhase) external onlyOwner {
        merkleVIPs[_partyPhase] = _merkleVIPs[0];
    }

    function addPlusOnes(bytes32[] memory _merkleVIPs, uint8 _partyPhase) external onlyOwner {
        merklePlusOnes[_partyPhase] = _merkleVIPs[0];
    }

    function nextLevel(uint8 _phase) external onlyOwner {
        partyPhase = _phase;
    }

    function whoLetTheDogsOut(address _grillMaster) external onlyOwner {
        grillMaster = _grillMaster;
    }

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

    function stockTheFreezer(uint8 _count) external onlyOwner {
        _safeMint(msg.sender, _count);
    }

    function setProvenanceHash(bytes32 _provHash) external onlyOwner {
        provenanceHash = _provHash;
    }

    function setMaximumDoggage(uint256 _max) external onlyOwner {
        maximumDoggage = _max;
    }

    function setTokenURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

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

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maximumDoggage","type":"uint256"}],"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":"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":"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":"bytes32[]","name":"_merkleVIPs","type":"bytes32[]"},{"internalType":"uint8","name":"_partyPhase","type":"uint8"}],"name":"addPlusOnes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chaChing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partyPerson","type":"address"},{"internalType":"bytes32[]","name":"_ticket","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_extraTicket","type":"bytes32[]"}],"name":"claimableDogs","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":"_partyPerson","type":"address"},{"internalType":"bytes32[]","name":"_extraTicket","type":"bytes32[]"},{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"hasPlusOne","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleVIPs","type":"bytes32[]"},{"internalType":"uint8","name":"_partyPhase","type":"uint8"}],"name":"inviteToParty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_partyPerson","type":"address"},{"internalType":"bytes32[]","name":"_ticket","type":"bytes32[]"},{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"isInvited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumDoggage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"nextLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partyPhase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaximumDoggage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_provHash","type":"bytes32"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_ticket","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_extraTicket","type":"bytes32[]"}],"name":"sizzle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_count","type":"uint8"}],"name":"stockTheFreezer","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":"_grillMaster","type":"address"}],"name":"whoLetTheDogsOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600b556000600c60006101000a81548160ff021916908360ff1602179055503480156200003257600080fd5b50604051620038e4380380620038e4833981810160405281019062000058919062000229565b6040518060400160405280601181526020017f486f74446f6754696d654d616368696e650000000000000000000000000000008152506040518060400160405280600481526020017f4844544d000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000dc92919062000162565b508060039080519060200190620000f592919062000162565b50620001066200015d60201b60201c565b600081905550505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b8190555050620002e9565b600090565b828054620001709062000265565b90600052602060002090601f016020900481019282620001945760008555620001e0565b82601f10620001af57805160ff1916838001178555620001e0565b82800160010185558215620001e0579182015b82811115620001df578251825591602001919060010190620001c2565b5b509050620001ef9190620001f3565b5090565b5b808211156200020e576000816000905550600101620001f4565b5090565b6000815190506200022381620002cf565b92915050565b600060208284031215620002425762000241620002ca565b5b6000620002528482850162000212565b91505092915050565b6000819050919050565b600060028204905060018216806200027e57607f821691505b602082108114156200029557620002946200029b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620002da816200025b565b8114620002e657600080fd5b50565b6135eb80620002f96000396000f3fe6080604052600436106101d15760003560e01c80638b63d886116100f7578063bcb422a211610095578063e0df5b6f11610064578063e0df5b6f1461068d578063e985e9c5146106b6578063f4892d43146106f3578063f7586fcd14610730576101d8565b8063bcb422a2146105e5578063c6ab67a3146105fc578063c87b56dd14610627578063cbb916bb14610664576101d8565b8063a22cb465116100d1578063a22cb46514610541578063a96fcf481461056a578063b01b7d5b14610593578063b88d4fde146105bc576101d8565b80638b63d886146104c057806393187bd7146104eb57806395d89b4114610516576101d8565b80631f4395501161016f5780635d6412431161013e5780635d641243146103cc5780636352211e1461040957806370a082311461044657806384212f1e14610483576101d8565b80631f4395501461032857806323b872dd1461035157806342842e0e1461037a57806359e86126146103a3576101d8565b8063095ea7b3116101ab578063095ea7b314610282578063099b6bfa146102ab57806318160ddd146102d45780631d83126d146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612b58565b610759565b6040516102119190612ee7565b60405180910390f35b34801561022657600080fd5b5061022f6107eb565b60405161023c9190612f1d565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612bfb565b61087d565b6040516102799190612e80565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a0e565b6108fc565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612b2b565b610a40565b005b3480156102e057600080fd5b506102e9610ada565b6040516102f69190612fdf565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612a4e565b610af1565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612bfb565b610d2d565b005b34801561035d57600080fd5b50610378600480360381019061037391906127ef565b610dc7565b005b34801561038657600080fd5b506103a1600480360381019061039c91906127ef565b6110ec565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612acf565b61110c565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061295a565b6111d9565b6040516104009190612ee7565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612bfb565b611275565b60405161043d9190612e80565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612782565b611287565b60405161047a9190612fdf565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906128c5565b611340565b6040516104b79190612fdf565b60405180910390f35b3480156104cc57600080fd5b506104d56113db565b6040516104e29190612ffa565b60405180910390f35b3480156104f757600080fd5b506105006113ee565b60405161050d9190612fdf565b60405180910390f35b34801561052257600080fd5b5061052b6113f4565b6040516105389190612f1d565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906129ce565b611486565b005b34801561057657600080fd5b50610591600480360381019061058c9190612c28565b6115fe565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612c28565b6116ac565b005b3480156105c857600080fd5b506105e360048036038101906105de9190612842565b61174c565b005b3480156105f157600080fd5b506105fa6117bf565b005b34801561060857600080fd5b506106116118c8565b60405161061e9190612f02565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612bfb565b6118ce565b60405161065b9190612f1d565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190612acf565b61196d565b005b34801561069957600080fd5b506106b460048036038101906106af9190612bb2565b611a3a565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906127af565b611ae4565b6040516106ea9190612ee7565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061295a565b611b78565b6040516107279190612ee7565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612782565b611c14565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107fa9061326d565b80601f01602080910402602001604051908101604052809291908181526020018280546108269061326d565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611ce8565b6108be576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090782611275565b90508073ffffffffffffffffffffffffffffffffffffffff16610928611d47565b73ffffffffffffffffffffffffffffffffffffffff161461098b576109548161094f611d47565b611ae4565b61098a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790612f3f565b60405180910390fd5b8060098190555050565b6000610ae4611d4f565b6001546000540303905090565b6000600c60009054906101000a900460ff1660ff1611610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90612f7f565b60405180910390fd5b6021600c60009054906101000a900460ff1660ff161480610b7e5750610b7d338585600c60009054906101000a900460ff16611b78565b5b610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490612fbf565b60405180910390fd5b6000610bc7610ada565b90506000610bd83387878787611340565b9050600081118015610c345750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612f9f565b60405180910390fd5b600b548183610c829190613116565b1115610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90612f5f565b60405180910390fd5b610ccd3382611d54565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490612f3f565b60405180910390fd5b80600b8190555050565b6000610dd282611d72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e39576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e4584611e40565b91509150610e5b8187610e56611d47565b611e67565b610ea757610e7086610e6b611d47565b611ae4565b610ea6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f1b8686866001611eab565b8015610f2657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ff485610fd0888887611eb1565b7c020000000000000000000000000000000000000000000000000000000017611ed9565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561107c57600060018501905060006004600083815260200190815260200160002054141561107a576000548114611079578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110e48686866001611f04565b505050505050565b6111078383836040518060200160405280600081525061174c565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612f3f565b60405180910390fd5b816000815181106111b0576111af61339b565b5b6020026020010151600d60008360ff1660ff168152602001908152602001600020819055505050565b600080856040516020016111ed9190612e2c565b60405160208183030381529060405280519060200120905061126a858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e60008660ff1660ff1681526020019081526020016000205483611f0a565b915050949350505050565b600061128082611d72565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600080600090506021600c60009054906101000a900460ff1660ff16141561136b57600190506113b8565b611386878787600c60009054906101000a900460ff16611b78565b156113b7576113a6878585600c60009054906101000a900460ff166111d9565b6113b15760016113b4565b60025b90505b5b6113c187611287565b8160ff166113cf919061316c565b91505095945050505050565b600c60009054906101000a900460ff1681565b600b5481565b6060600380546114039061326d565b80601f016020809104026020016040519081016040528092919081815260200182805461142f9061326d565b801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b5050505050905090565b61148e611d47565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611500611d47565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ad611d47565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f29190612ee7565b60405180910390a35050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590612f3f565b60405180910390fd5b80600c60006101000a81548160ff021916908360ff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390612f3f565b60405180910390fd5b611749338260ff16611d54565b50565b611757848484610dc7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117b95761178284848484611f21565b6117b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690612f3f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161187590612e6b565b60006040518083038185875af1925050503d80600081146118b2576040519150601f19603f3d011682016040523d82523d6000602084013e6118b7565b606091505b50509050806118c557600080fd5b50565b60095481565b60606118d982611ce8565b61190f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611919612081565b905060008151141561193a5760405180602001604052806000815250611965565b8061194484612113565b604051602001611955929190612e47565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490612f3f565b60405180910390fd5b81600081518110611a1157611a1061339b565b5b6020026020010151600e60008360ff1660ff168152602001908152602001600020819055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190612f3f565b60405180910390fd5b80600a9080519060200190611ae0929190612478565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008085604051602001611b8c9190612e2c565b604051602081830303815290604052805190602001209050611c09858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d60008660ff1660ff1681526020019081526020016000205483611f0a565b915050949350505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90612f3f565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600081611cf3611d4f565b11158015611d02575060005482105b8015611d40575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611d6e82826040518060200160405280600081525061216d565b5050565b60008082905080611d81611d4f565b11611e0957600054811015611e085760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e06575b6000811415611dfc576004600083600190039350838152602001908152602001600020549050611dd1565b8092505050611e3b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ec886868461220a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082611f178584612213565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f47611d47565b8786866040518563ffffffff1660e01b8152600401611f699493929190612e9b565b602060405180830381600087803b158015611f8357600080fd5b505af1925050508015611fb457506040513d601f19601f82011682018060405250810190611fb19190612b85565b60015b61202e573d8060008114611fe4576040519150601f19603f3d011682016040523d82523d6000602084013e611fe9565b606091505b50600081511415612026576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120909061326d565b80601f01602080910402602001604051908101604052809291908181526020018280546120bc9061326d565b80156121095780601f106120de57610100808354040283529160200191612109565b820191906000526020600020905b8154815290600101906020018083116120ec57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561215957600183039250600a81066030018353600a81049050612139565b508181036020830392508083525050919050565b6121778383612269565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461220557600080549050600083820390505b6121b76000868380600101945086611f21565b6121ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121a457816000541461220257600080fd5b50505b505050565b60009392505050565b60008082905060005b845181101561225e576122498286838151811061223c5761223b61339b565b5b6020026020010151612426565b91508080612256906132d0565b91505061221c565b508091505092915050565b60008054905060008214156122aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b76000848385611eab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061232e8361231f6000866000611eb1565b61232885612451565b17611ed9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123cf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612394565b50600082141561240b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124216000848385611f04565b505050565b600081831061243e576124398284612461565b612449565b6124488383612461565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124849061326d565b90600052602060002090601f0160209004810192826124a657600085556124ed565b82601f106124bf57805160ff19168380011785556124ed565b828001600101855582156124ed579182015b828111156124ec5782518255916020019190600101906124d1565b5b5090506124fa91906124fe565b5090565b5b808211156125175760008160009055506001016124ff565b5090565b600061252e6125298461303a565b613015565b9050808382526020820190508285602086028201111561255157612550613403565b5b60005b85811015612581578161256788826126bd565b845260208401935060208301925050600181019050612554565b5050509392505050565b600061259e61259984613066565b613015565b9050828152602081018484840111156125ba576125b9613408565b5b6125c584828561322b565b509392505050565b60006125e06125db84613097565b613015565b9050828152602081018484840111156125fc576125fb613408565b5b61260784828561322b565b509392505050565b60008135905061261e8161352b565b92915050565b60008083601f84011261263a576126396133fe565b5b8235905067ffffffffffffffff811115612657576126566133f9565b5b60208301915083602082028301111561267357612672613403565b5b9250929050565b600082601f83011261268f5761268e6133fe565b5b813561269f84826020860161251b565b91505092915050565b6000813590506126b781613542565b92915050565b6000813590506126cc81613559565b92915050565b6000813590506126e181613570565b92915050565b6000815190506126f681613570565b92915050565b600082601f830112612711576127106133fe565b5b813561272184826020860161258b565b91505092915050565b600082601f83011261273f5761273e6133fe565b5b813561274f8482602086016125cd565b91505092915050565b60008135905061276781613587565b92915050565b60008135905061277c8161359e565b92915050565b60006020828403121561279857612797613412565b5b60006127a68482850161260f565b91505092915050565b600080604083850312156127c6576127c5613412565b5b60006127d48582860161260f565b92505060206127e58582860161260f565b9150509250929050565b60008060006060848603121561280857612807613412565b5b60006128168682870161260f565b93505060206128278682870161260f565b925050604061283886828701612758565b9150509250925092565b6000806000806080858703121561285c5761285b613412565b5b600061286a8782880161260f565b945050602061287b8782880161260f565b935050604061288c87828801612758565b925050606085013567ffffffffffffffff8111156128ad576128ac61340d565b5b6128b9878288016126fc565b91505092959194509250565b6000806000806000606086880312156128e1576128e0613412565b5b60006128ef8882890161260f565b955050602086013567ffffffffffffffff8111156129105761290f61340d565b5b61291c88828901612624565b9450945050604086013567ffffffffffffffff81111561293f5761293e61340d565b5b61294b88828901612624565b92509250509295509295909350565b6000806000806060858703121561297457612973613412565b5b60006129828782880161260f565b945050602085013567ffffffffffffffff8111156129a3576129a261340d565b5b6129af87828801612624565b935093505060406129c28782880161276d565b91505092959194509250565b600080604083850312156129e5576129e4613412565b5b60006129f38582860161260f565b9250506020612a04858286016126a8565b9150509250929050565b60008060408385031215612a2557612a24613412565b5b6000612a338582860161260f565b9250506020612a4485828601612758565b9150509250929050565b60008060008060408587031215612a6857612a67613412565b5b600085013567ffffffffffffffff811115612a8657612a8561340d565b5b612a9287828801612624565b9450945050602085013567ffffffffffffffff811115612ab557612ab461340d565b5b612ac187828801612624565b925092505092959194509250565b60008060408385031215612ae657612ae5613412565b5b600083013567ffffffffffffffff811115612b0457612b0361340d565b5b612b108582860161267a565b9250506020612b218582860161276d565b9150509250929050565b600060208284031215612b4157612b40613412565b5b6000612b4f848285016126bd565b91505092915050565b600060208284031215612b6e57612b6d613412565b5b6000612b7c848285016126d2565b91505092915050565b600060208284031215612b9b57612b9a613412565b5b6000612ba9848285016126e7565b91505092915050565b600060208284031215612bc857612bc7613412565b5b600082013567ffffffffffffffff811115612be657612be561340d565b5b612bf28482850161272a565b91505092915050565b600060208284031215612c1157612c10613412565b5b6000612c1f84828501612758565b91505092915050565b600060208284031215612c3e57612c3d613412565b5b6000612c4c8482850161276d565b91505092915050565b612c5e816131a0565b82525050565b612c75612c70826131a0565b613319565b82525050565b612c84816131b2565b82525050565b612c93816131be565b82525050565b6000612ca4826130c8565b612cae81856130de565b9350612cbe81856020860161323a565b612cc781613417565b840191505092915050565b6000612cdd826130d3565b612ce781856130fa565b9350612cf781856020860161323a565b612d0081613417565b840191505092915050565b6000612d16826130d3565b612d20818561310b565b9350612d3081856020860161323a565b80840191505092915050565b6000612d49601f836130fa565b9150612d5482613435565b602082019050919050565b6000612d6c601f836130fa565b9150612d778261345e565b602082019050919050565b6000612d8f601c836130fa565b9150612d9a82613487565b602082019050919050565b6000612db2600f836130fa565b9150612dbd826134b0565b602082019050919050565b6000612dd56026836130fa565b9150612de0826134d9565b604082019050919050565b6000612df86000836130ef565b9150612e0382613528565b600082019050919050565b612e1781613214565b82525050565b612e268161321e565b82525050565b6000612e388284612c64565b60148201915081905092915050565b6000612e538285612d0b565b9150612e5f8284612d0b565b91508190509392505050565b6000612e7682612deb565b9150819050919050565b6000602082019050612e956000830184612c55565b92915050565b6000608082019050612eb06000830187612c55565b612ebd6020830186612c55565b612eca6040830185612e0e565b8181036060830152612edc8184612c99565b905095945050505050565b6000602082019050612efc6000830184612c7b565b92915050565b6000602082019050612f176000830184612c8a565b92915050565b60006020820190508181036000830152612f378184612cd2565b905092915050565b60006020820190508181036000830152612f5881612d3c565b9050919050565b60006020820190508181036000830152612f7881612d5f565b9050919050565b60006020820190508181036000830152612f9881612d82565b9050919050565b60006020820190508181036000830152612fb881612da5565b9050919050565b60006020820190508181036000830152612fd881612dc8565b9050919050565b6000602082019050612ff46000830184612e0e565b92915050565b600060208201905061300f6000830184612e1d565b92915050565b600061301f613030565b905061302b828261329f565b919050565b6000604051905090565b600067ffffffffffffffff821115613055576130546133ca565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613081576130806133ca565b5b61308a82613417565b9050602081019050919050565b600067ffffffffffffffff8211156130b2576130b16133ca565b5b6130bb82613417565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061312182613214565b915061312c83613214565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131615761316061333d565b5b828201905092915050565b600061317782613214565b915061318283613214565b9250828210156131955761319461333d565b5b828203905092915050565b60006131ab826131f4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561325857808201518184015260208101905061323d565b83811115613267576000848401525b50505050565b6000600282049050600182168061328557607f821691505b602082108114156132995761329861336c565b5b50919050565b6132a882613417565b810181811067ffffffffffffffff821117156132c7576132c66133ca565b5b80604052505050565b60006132db82613214565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561330e5761330d61333d565b5b600182019050919050565b60006133248261332b565b9050919050565b600061333682613428565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f7520617265206e6f7420746865206772696c6c206d61737465722e2e2e00600082015250565b7f4c6f6f6b73206c696b6520796f75206d69737365642074686520706172747900600082015250565b7f546865207061727479206861736e277420737461727465642079657400000000600082015250565b7f446f6e2774206265206772656564790000000000000000000000000000000000600082015250565b7f4c6f6f6b73206c696b65207765277265206e6f7420726561647920666f72207960008201527f6f75207965740000000000000000000000000000000000000000000000000000602082015250565b50565b613534816131a0565b811461353f57600080fd5b50565b61354b816131b2565b811461355657600080fd5b50565b613562816131be565b811461356d57600080fd5b50565b613579816131c8565b811461358457600080fd5b50565b61359081613214565b811461359b57600080fd5b50565b6135a78161321e565b81146135b257600080fd5b5056fea26469706673582212209d1275e6d03a1bb6869d5aa731ceb30abb2c025bf518ff7540f66e3a0f510a5964736f6c634300080700330000000000000000000000000000000000000000000000000000000000000bb8

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80638b63d886116100f7578063bcb422a211610095578063e0df5b6f11610064578063e0df5b6f1461068d578063e985e9c5146106b6578063f4892d43146106f3578063f7586fcd14610730576101d8565b8063bcb422a2146105e5578063c6ab67a3146105fc578063c87b56dd14610627578063cbb916bb14610664576101d8565b8063a22cb465116100d1578063a22cb46514610541578063a96fcf481461056a578063b01b7d5b14610593578063b88d4fde146105bc576101d8565b80638b63d886146104c057806393187bd7146104eb57806395d89b4114610516576101d8565b80631f4395501161016f5780635d6412431161013e5780635d641243146103cc5780636352211e1461040957806370a082311461044657806384212f1e14610483576101d8565b80631f4395501461032857806323b872dd1461035157806342842e0e1461037a57806359e86126146103a3576101d8565b8063095ea7b3116101ab578063095ea7b314610282578063099b6bfa146102ab57806318160ddd146102d45780631d83126d146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612b58565b610759565b6040516102119190612ee7565b60405180910390f35b34801561022657600080fd5b5061022f6107eb565b60405161023c9190612f1d565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612bfb565b61087d565b6040516102799190612e80565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a0e565b6108fc565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612b2b565b610a40565b005b3480156102e057600080fd5b506102e9610ada565b6040516102f69190612fdf565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612a4e565b610af1565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612bfb565b610d2d565b005b34801561035d57600080fd5b50610378600480360381019061037391906127ef565b610dc7565b005b34801561038657600080fd5b506103a1600480360381019061039c91906127ef565b6110ec565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612acf565b61110c565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061295a565b6111d9565b6040516104009190612ee7565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612bfb565b611275565b60405161043d9190612e80565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612782565b611287565b60405161047a9190612fdf565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906128c5565b611340565b6040516104b79190612fdf565b60405180910390f35b3480156104cc57600080fd5b506104d56113db565b6040516104e29190612ffa565b60405180910390f35b3480156104f757600080fd5b506105006113ee565b60405161050d9190612fdf565b60405180910390f35b34801561052257600080fd5b5061052b6113f4565b6040516105389190612f1d565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906129ce565b611486565b005b34801561057657600080fd5b50610591600480360381019061058c9190612c28565b6115fe565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612c28565b6116ac565b005b3480156105c857600080fd5b506105e360048036038101906105de9190612842565b61174c565b005b3480156105f157600080fd5b506105fa6117bf565b005b34801561060857600080fd5b506106116118c8565b60405161061e9190612f02565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612bfb565b6118ce565b60405161065b9190612f1d565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190612acf565b61196d565b005b34801561069957600080fd5b506106b460048036038101906106af9190612bb2565b611a3a565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906127af565b611ae4565b6040516106ea9190612ee7565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061295a565b611b78565b6040516107279190612ee7565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612782565b611c14565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107fa9061326d565b80601f01602080910402602001604051908101604052809291908181526020018280546108269061326d565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611ce8565b6108be576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090782611275565b90508073ffffffffffffffffffffffffffffffffffffffff16610928611d47565b73ffffffffffffffffffffffffffffffffffffffff161461098b576109548161094f611d47565b611ae4565b61098a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790612f3f565b60405180910390fd5b8060098190555050565b6000610ae4611d4f565b6001546000540303905090565b6000600c60009054906101000a900460ff1660ff1611610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90612f7f565b60405180910390fd5b6021600c60009054906101000a900460ff1660ff161480610b7e5750610b7d338585600c60009054906101000a900460ff16611b78565b5b610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490612fbf565b60405180910390fd5b6000610bc7610ada565b90506000610bd83387878787611340565b9050600081118015610c345750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612f9f565b60405180910390fd5b600b548183610c829190613116565b1115610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90612f5f565b60405180910390fd5b610ccd3382611d54565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490612f3f565b60405180910390fd5b80600b8190555050565b6000610dd282611d72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e39576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e4584611e40565b91509150610e5b8187610e56611d47565b611e67565b610ea757610e7086610e6b611d47565b611ae4565b610ea6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f1b8686866001611eab565b8015610f2657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ff485610fd0888887611eb1565b7c020000000000000000000000000000000000000000000000000000000017611ed9565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561107c57600060018501905060006004600083815260200190815260200160002054141561107a576000548114611079578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110e48686866001611f04565b505050505050565b6111078383836040518060200160405280600081525061174c565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612f3f565b60405180910390fd5b816000815181106111b0576111af61339b565b5b6020026020010151600d60008360ff1660ff168152602001908152602001600020819055505050565b600080856040516020016111ed9190612e2c565b60405160208183030381529060405280519060200120905061126a858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e60008660ff1660ff1681526020019081526020016000205483611f0a565b915050949350505050565b600061128082611d72565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600080600090506021600c60009054906101000a900460ff1660ff16141561136b57600190506113b8565b611386878787600c60009054906101000a900460ff16611b78565b156113b7576113a6878585600c60009054906101000a900460ff166111d9565b6113b15760016113b4565b60025b90505b5b6113c187611287565b8160ff166113cf919061316c565b91505095945050505050565b600c60009054906101000a900460ff1681565b600b5481565b6060600380546114039061326d565b80601f016020809104026020016040519081016040528092919081815260200182805461142f9061326d565b801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b5050505050905090565b61148e611d47565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611500611d47565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ad611d47565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f29190612ee7565b60405180910390a35050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590612f3f565b60405180910390fd5b80600c60006101000a81548160ff021916908360ff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390612f3f565b60405180910390fd5b611749338260ff16611d54565b50565b611757848484610dc7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117b95761178284848484611f21565b6117b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690612f3f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161187590612e6b565b60006040518083038185875af1925050503d80600081146118b2576040519150601f19603f3d011682016040523d82523d6000602084013e6118b7565b606091505b50509050806118c557600080fd5b50565b60095481565b60606118d982611ce8565b61190f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611919612081565b905060008151141561193a5760405180602001604052806000815250611965565b8061194484612113565b604051602001611955929190612e47565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490612f3f565b60405180910390fd5b81600081518110611a1157611a1061339b565b5b6020026020010151600e60008360ff1660ff168152602001908152602001600020819055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190612f3f565b60405180910390fd5b80600a9080519060200190611ae0929190612478565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008085604051602001611b8c9190612e2c565b604051602081830303815290604052805190602001209050611c09858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d60008660ff1660ff1681526020019081526020016000205483611f0a565b915050949350505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90612f3f565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600081611cf3611d4f565b11158015611d02575060005482105b8015611d40575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611d6e82826040518060200160405280600081525061216d565b5050565b60008082905080611d81611d4f565b11611e0957600054811015611e085760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e06575b6000811415611dfc576004600083600190039350838152602001908152602001600020549050611dd1565b8092505050611e3b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ec886868461220a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082611f178584612213565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f47611d47565b8786866040518563ffffffff1660e01b8152600401611f699493929190612e9b565b602060405180830381600087803b158015611f8357600080fd5b505af1925050508015611fb457506040513d601f19601f82011682018060405250810190611fb19190612b85565b60015b61202e573d8060008114611fe4576040519150601f19603f3d011682016040523d82523d6000602084013e611fe9565b606091505b50600081511415612026576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120909061326d565b80601f01602080910402602001604051908101604052809291908181526020018280546120bc9061326d565b80156121095780601f106120de57610100808354040283529160200191612109565b820191906000526020600020905b8154815290600101906020018083116120ec57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561215957600183039250600a81066030018353600a81049050612139565b508181036020830392508083525050919050565b6121778383612269565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461220557600080549050600083820390505b6121b76000868380600101945086611f21565b6121ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121a457816000541461220257600080fd5b50505b505050565b60009392505050565b60008082905060005b845181101561225e576122498286838151811061223c5761223b61339b565b5b6020026020010151612426565b91508080612256906132d0565b91505061221c565b508091505092915050565b60008054905060008214156122aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b76000848385611eab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061232e8361231f6000866000611eb1565b61232885612451565b17611ed9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123cf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612394565b50600082141561240b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124216000848385611f04565b505050565b600081831061243e576124398284612461565b612449565b6124488383612461565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124849061326d565b90600052602060002090601f0160209004810192826124a657600085556124ed565b82601f106124bf57805160ff19168380011785556124ed565b828001600101855582156124ed579182015b828111156124ec5782518255916020019190600101906124d1565b5b5090506124fa91906124fe565b5090565b5b808211156125175760008160009055506001016124ff565b5090565b600061252e6125298461303a565b613015565b9050808382526020820190508285602086028201111561255157612550613403565b5b60005b85811015612581578161256788826126bd565b845260208401935060208301925050600181019050612554565b5050509392505050565b600061259e61259984613066565b613015565b9050828152602081018484840111156125ba576125b9613408565b5b6125c584828561322b565b509392505050565b60006125e06125db84613097565b613015565b9050828152602081018484840111156125fc576125fb613408565b5b61260784828561322b565b509392505050565b60008135905061261e8161352b565b92915050565b60008083601f84011261263a576126396133fe565b5b8235905067ffffffffffffffff811115612657576126566133f9565b5b60208301915083602082028301111561267357612672613403565b5b9250929050565b600082601f83011261268f5761268e6133fe565b5b813561269f84826020860161251b565b91505092915050565b6000813590506126b781613542565b92915050565b6000813590506126cc81613559565b92915050565b6000813590506126e181613570565b92915050565b6000815190506126f681613570565b92915050565b600082601f830112612711576127106133fe565b5b813561272184826020860161258b565b91505092915050565b600082601f83011261273f5761273e6133fe565b5b813561274f8482602086016125cd565b91505092915050565b60008135905061276781613587565b92915050565b60008135905061277c8161359e565b92915050565b60006020828403121561279857612797613412565b5b60006127a68482850161260f565b91505092915050565b600080604083850312156127c6576127c5613412565b5b60006127d48582860161260f565b92505060206127e58582860161260f565b9150509250929050565b60008060006060848603121561280857612807613412565b5b60006128168682870161260f565b93505060206128278682870161260f565b925050604061283886828701612758565b9150509250925092565b6000806000806080858703121561285c5761285b613412565b5b600061286a8782880161260f565b945050602061287b8782880161260f565b935050604061288c87828801612758565b925050606085013567ffffffffffffffff8111156128ad576128ac61340d565b5b6128b9878288016126fc565b91505092959194509250565b6000806000806000606086880312156128e1576128e0613412565b5b60006128ef8882890161260f565b955050602086013567ffffffffffffffff8111156129105761290f61340d565b5b61291c88828901612624565b9450945050604086013567ffffffffffffffff81111561293f5761293e61340d565b5b61294b88828901612624565b92509250509295509295909350565b6000806000806060858703121561297457612973613412565b5b60006129828782880161260f565b945050602085013567ffffffffffffffff8111156129a3576129a261340d565b5b6129af87828801612624565b935093505060406129c28782880161276d565b91505092959194509250565b600080604083850312156129e5576129e4613412565b5b60006129f38582860161260f565b9250506020612a04858286016126a8565b9150509250929050565b60008060408385031215612a2557612a24613412565b5b6000612a338582860161260f565b9250506020612a4485828601612758565b9150509250929050565b60008060008060408587031215612a6857612a67613412565b5b600085013567ffffffffffffffff811115612a8657612a8561340d565b5b612a9287828801612624565b9450945050602085013567ffffffffffffffff811115612ab557612ab461340d565b5b612ac187828801612624565b925092505092959194509250565b60008060408385031215612ae657612ae5613412565b5b600083013567ffffffffffffffff811115612b0457612b0361340d565b5b612b108582860161267a565b9250506020612b218582860161276d565b9150509250929050565b600060208284031215612b4157612b40613412565b5b6000612b4f848285016126bd565b91505092915050565b600060208284031215612b6e57612b6d613412565b5b6000612b7c848285016126d2565b91505092915050565b600060208284031215612b9b57612b9a613412565b5b6000612ba9848285016126e7565b91505092915050565b600060208284031215612bc857612bc7613412565b5b600082013567ffffffffffffffff811115612be657612be561340d565b5b612bf28482850161272a565b91505092915050565b600060208284031215612c1157612c10613412565b5b6000612c1f84828501612758565b91505092915050565b600060208284031215612c3e57612c3d613412565b5b6000612c4c8482850161276d565b91505092915050565b612c5e816131a0565b82525050565b612c75612c70826131a0565b613319565b82525050565b612c84816131b2565b82525050565b612c93816131be565b82525050565b6000612ca4826130c8565b612cae81856130de565b9350612cbe81856020860161323a565b612cc781613417565b840191505092915050565b6000612cdd826130d3565b612ce781856130fa565b9350612cf781856020860161323a565b612d0081613417565b840191505092915050565b6000612d16826130d3565b612d20818561310b565b9350612d3081856020860161323a565b80840191505092915050565b6000612d49601f836130fa565b9150612d5482613435565b602082019050919050565b6000612d6c601f836130fa565b9150612d778261345e565b602082019050919050565b6000612d8f601c836130fa565b9150612d9a82613487565b602082019050919050565b6000612db2600f836130fa565b9150612dbd826134b0565b602082019050919050565b6000612dd56026836130fa565b9150612de0826134d9565b604082019050919050565b6000612df86000836130ef565b9150612e0382613528565b600082019050919050565b612e1781613214565b82525050565b612e268161321e565b82525050565b6000612e388284612c64565b60148201915081905092915050565b6000612e538285612d0b565b9150612e5f8284612d0b565b91508190509392505050565b6000612e7682612deb565b9150819050919050565b6000602082019050612e956000830184612c55565b92915050565b6000608082019050612eb06000830187612c55565b612ebd6020830186612c55565b612eca6040830185612e0e565b8181036060830152612edc8184612c99565b905095945050505050565b6000602082019050612efc6000830184612c7b565b92915050565b6000602082019050612f176000830184612c8a565b92915050565b60006020820190508181036000830152612f378184612cd2565b905092915050565b60006020820190508181036000830152612f5881612d3c565b9050919050565b60006020820190508181036000830152612f7881612d5f565b9050919050565b60006020820190508181036000830152612f9881612d82565b9050919050565b60006020820190508181036000830152612fb881612da5565b9050919050565b60006020820190508181036000830152612fd881612dc8565b9050919050565b6000602082019050612ff46000830184612e0e565b92915050565b600060208201905061300f6000830184612e1d565b92915050565b600061301f613030565b905061302b828261329f565b919050565b6000604051905090565b600067ffffffffffffffff821115613055576130546133ca565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613081576130806133ca565b5b61308a82613417565b9050602081019050919050565b600067ffffffffffffffff8211156130b2576130b16133ca565b5b6130bb82613417565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061312182613214565b915061312c83613214565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131615761316061333d565b5b828201905092915050565b600061317782613214565b915061318283613214565b9250828210156131955761319461333d565b5b828203905092915050565b60006131ab826131f4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561325857808201518184015260208101905061323d565b83811115613267576000848401525b50505050565b6000600282049050600182168061328557607f821691505b602082108114156132995761329861336c565b5b50919050565b6132a882613417565b810181811067ffffffffffffffff821117156132c7576132c66133ca565b5b80604052505050565b60006132db82613214565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561330e5761330d61333d565b5b600182019050919050565b60006133248261332b565b9050919050565b600061333682613428565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f7520617265206e6f7420746865206772696c6c206d61737465722e2e2e00600082015250565b7f4c6f6f6b73206c696b6520796f75206d69737365642074686520706172747900600082015250565b7f546865207061727479206861736e277420737461727465642079657400000000600082015250565b7f446f6e2774206265206772656564790000000000000000000000000000000000600082015250565b7f4c6f6f6b73206c696b65207765277265206e6f7420726561647920666f72207960008201527f6f75207965740000000000000000000000000000000000000000000000000000602082015250565b50565b613534816131a0565b811461353f57600080fd5b50565b61354b816131b2565b811461355657600080fd5b50565b613562816131be565b811461356d57600080fd5b50565b613579816131c8565b811461358457600080fd5b50565b61359081613214565b811461359b57600080fd5b50565b6135a78161321e565b81146135b257600080fd5b5056fea26469706673582212209d1275e6d03a1bb6869d5aa731ceb30abb2c025bf518ff7540f66e3a0f510a5964736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000bb8

-----Decoded View---------------
Arg [0] : _maximumDoggage (uint256): 3000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000bb8


Deployed Bytecode Sourcemap

60066:3786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27254:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34639:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34080:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63349:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23907:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61785:712;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63467:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38346:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41259:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62505:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61036:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29549:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25091:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61314:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60255:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60215:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28332:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35197:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62823:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63235:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42042:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63041:186;;;;;;;;;;;;;:::i;:::-;;60145:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28542:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62663:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63575:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35662:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60773:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62921:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27254:639;27339:4;27678:10;27663:25;;:11;:25;;;;:102;;;;27755:10;27740:25;;:11;:25;;;;27663:102;:179;;;;27832:10;27817:25;;:11;:25;;;;27663:179;27643:199;;27254:639;;;:::o;28156:100::-;28210:13;28243:5;28236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28156:100;:::o;34639:218::-;34715:7;34740:16;34748:7;34740;:16::i;:::-;34735:64;;34765:34;;;;;;;;;;;;;;34735:64;34819:15;:24;34835:7;34819:24;;;;;;;;;;;:30;;;;;;;;;;;;34812:37;;34639:218;;;:::o;34080:400::-;34161:13;34177:16;34185:7;34177;:16::i;:::-;34161:32;;34233:5;34210:28;;:19;:17;:19::i;:::-;:28;;;34206:175;;34258:44;34275:5;34282:19;:17;:19::i;:::-;34258:16;:44::i;:::-;34253:128;;34330:35;;;;;;;;;;;;;;34253:128;34206:175;34426:2;34393:15;:24;34409:7;34393:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34464:7;34460:2;34444:28;;34453:5;34444:28;;;;;;;;;;;;34150:330;34080:400;;:::o;63349:110::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63442:9:::1;63425:14;:26;;;;63349:110:::0;:::o;23907:323::-;23968:7;24196:15;:13;:15::i;:::-;24181:12;;24165:13;;:28;:46;24158:53;;23907:323;:::o;61785:712::-;61903:1;61890:10;;;;;;;;;;;:14;;;61882:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;61984:2;61970:10;;;;;;;;;;;:16;;;:62;;;;61990:42;62000:10;62012:7;;62021:10;;;;;;;;;;;61990:9;:42::i;:::-;61970:62;61948:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;62111:15;62129:13;:11;:13::i;:::-;62111:31;;62153:18;62174:48;62188:10;62200:7;;62209:12;;62174:13;:48::i;:::-;62153:69;;62256:1;62243:10;:14;:44;;;;;62262:13;:25;62276:10;62262:25;;;;;;;;;;;;;;;;;;;;;;;;;62261:26;62243:44;62235:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;62350:14;;62336:10;62326:7;:20;;;;:::i;:::-;:38;;62318:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;62413:33;62423:10;62435;62413:9;:33::i;:::-;62485:4;62457:13;:25;62471:10;62457:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;61871:626;;61785:712;;;;:::o;63467:100::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63555:4:::1;63538:14;:21;;;;63467:100:::0;:::o;38346:2817::-;38480:27;38510;38529:7;38510:18;:27::i;:::-;38480:57;;38595:4;38554:45;;38570:19;38554:45;;;38550:86;;38608:28;;;;;;;;;;;;;;38550:86;38650:27;38679:23;38706:35;38733:7;38706:26;:35::i;:::-;38649:92;;;;38841:68;38866:15;38883:4;38889:19;:17;:19::i;:::-;38841:24;:68::i;:::-;38836:180;;38929:43;38946:4;38952:19;:17;:19::i;:::-;38929:16;:43::i;:::-;38924:92;;38981:35;;;;;;;;;;;;;;38924:92;38836:180;39047:1;39033:16;;:2;:16;;;39029:52;;;39058:23;;;;;;;;;;;;;;39029:52;39094:43;39116:4;39122:2;39126:7;39135:1;39094:21;:43::i;:::-;39230:15;39227:160;;;39370:1;39349:19;39342:30;39227:160;39767:18;:24;39786:4;39767:24;;;;;;;;;;;;;;;;39765:26;;;;;;;;;;;;39836:18;:22;39855:2;39836:22;;;;;;;;;;;;;;;;39834:24;;;;;;;;;;;40158:146;40195:2;40244:45;40259:4;40265:2;40269:19;40244:14;:45::i;:::-;20306:8;40216:73;40158:18;:146::i;:::-;40129:17;:26;40147:7;40129:26;;;;;;;;;;;:175;;;;40475:1;20306:8;40424:19;:47;:52;40420:627;;;40497:19;40529:1;40519:7;:11;40497:33;;40686:1;40652:17;:30;40670:11;40652:30;;;;;;;;;;;;:35;40648:384;;;40790:13;;40775:11;:28;40771:242;;40970:19;40937:17;:30;40955:11;40937:30;;;;;;;;;;;:52;;;;40771:242;40648:384;40478:569;40420:627;41094:7;41090:2;41075:27;;41084:4;41075:27;;;;;;;;;;;;41113:42;41134:4;41140:2;41144:7;41153:1;41113:20;:42::i;:::-;38469:2694;;;38346:2817;;;:::o;41259:185::-;41397:39;41414:4;41420:2;41424:7;41397:39;;;;;;;;;;;;:16;:39::i;:::-;41259:185;;;:::o;62505:150::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;62633:11:::1;62645:1;62633:14;;;;;;;;:::i;:::-;;;;;;;;62607:10;:23;62618:11;62607:23;;;;;;;;;;;;;;;:40;;;;62505:150:::0;;:::o;61036:270::-;61145:4;61162:12;61204;61187:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;61177:41;;;;;;61162:56;;61236:62;61255:12;;61236:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61269:14;:22;61284:6;61269:22;;;;;;;;;;;;;;;;61293:4;61236:18;:62::i;:::-;61229:69;;;61036:270;;;;;;:::o;29549:152::-;29621:7;29664:27;29683:7;29664:18;:27::i;:::-;29641:52;;29549:152;;;:::o;25091:233::-;25163:7;25204:1;25187:19;;:5;:19;;;25183:60;;;25215:28;;;;;;;;;;;;;;25183:60;19250:13;25261:18;:25;25280:5;25261:25;;;;;;;;;;;;;;;;:55;25254:62;;25091:233;;;:::o;61314:463::-;61440:7;61460:18;61481:1;61460:22;;61511:2;61497:10;;;;;;;;;;;:16;;;61493:221;;;61545:1;61530:16;;61493:221;;;61568:44;61578:12;61592:7;;61601:10;;;;;;;;;;;61568:9;:44::i;:::-;61564:150;;;61644:50;61655:12;61669;;61683:10;;;;;;;;;;;61644;:50::i;:::-;:58;;61701:1;61644:58;;;61697:1;61644:58;61629:73;;61564:150;61493:221;61746:23;61756:12;61746:9;:23::i;:::-;61731:12;:38;;;;;;:::i;:::-;61724:45;;;61314:463;;;;;;;:::o;60255:27::-;;;;;;;;;;;;;:::o;60215:33::-;;;;:::o;28332:104::-;28388:13;28421:7;28414:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28332:104;:::o;35197:308::-;35308:19;:17;:19::i;:::-;35296:31;;:8;:31;;;35292:61;;;35336:17;;;;;;;;;;;;;;35292:61;35418:8;35366:18;:39;35385:19;:17;:19::i;:::-;35366:39;;;;;;;;;;;;;;;:49;35406:8;35366:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35478:8;35442:55;;35457:19;:17;:19::i;:::-;35442:55;;;35488:8;35442:55;;;;;;:::i;:::-;;;;;;;;35197:308;;:::o;62823:90::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;62899:6:::1;62886:10;;:19;;;;;;;;;;;;;;;;;;62823:90:::0;:::o;63235:106::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63304:29:::1;63314:10;63326:6;63304:29;;:9;:29::i;:::-;63235:106:::0;:::o;42042:399::-;42209:31;42222:4;42228:2;42232:7;42209:12;:31::i;:::-;42273:1;42255:2;:14;;;:19;42251:183;;42294:56;42325:4;42331:2;42335:7;42344:5;42294:30;:56::i;:::-;42289:145;;42378:40;;;;;;;;;;;;;;42289:145;42251:183;42042:399;;;;:::o;63041:186::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63092:12:::1;63118:10;63110:24;;63156:21;63110:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63091:101;;;63211:7;63203:16;;;::::0;::::1;;63080:147;63041:186::o:0;60145:29::-;;;;:::o;28542:318::-;28615:13;28646:16;28654:7;28646;:16::i;:::-;28641:59;;28671:29;;;;;;;;;;;;;;28641:59;28713:21;28737:10;:8;:10::i;:::-;28713:34;;28790:1;28771:7;28765:21;:26;;:87;;;;;;;;;;;;;;;;;28818:7;28827:18;28837:7;28827:9;:18::i;:::-;28801:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28765:87;28758:94;;;28542:318;;;:::o;62663:152::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;62793:11:::1;62805:1;62793:14;;;;;;;;:::i;:::-;;;;;;;;62763;:27;62778:11;62763:27;;;;;;;;;;;;;;;:44;;;;62663:152:::0;;:::o;63575:116::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63670:13:::1;63655:12;:28;;;;;;;;;;;;:::i;:::-;;63575:116:::0;:::o;35662:164::-;35759:4;35783:18;:25;35802:5;35783:25;;;;;;;;;;;;;;;:35;35809:8;35783:35;;;;;;;;;;;;;;;;;;;;;;;;;35776:42;;35662:164;;;;:::o;60773:255::-;60876:4;60893:12;60935;60918:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;60908:41;;;;;;60893:56;;60967:53;60986:7;;60967:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60995:10;:18;61006:6;60995:18;;;;;;;;;;;;;;;;61015:4;60967:18;:53::i;:::-;60960:60;;;60773:255;;;;;;:::o;62921:112::-;60698:11;;;;;;;;;;;60684:25;;:10;:25;;;60676:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63013:12:::1;62999:11;;:26;;;;;;;;;;;;;;;;;;62921:112:::0;:::o;36084:282::-;36149:4;36205:7;36186:15;:13;:15::i;:::-;:26;;:66;;;;;36239:13;;36229:7;:23;36186:66;:153;;;;;36338:1;20026:8;36290:17;:26;36308:7;36290:26;;;;;;;;;;;;:44;:49;36186:153;36166:173;;36084:282;;;:::o;57850:105::-;57910:7;57937:10;57930:17;;57850:105;:::o;23423:92::-;23479:7;23423:92;:::o;51682:112::-;51759:27;51769:2;51773:8;51759:27;;;;;;;;;;;;:9;:27::i;:::-;51682:112;;:::o;30704:1275::-;30771:7;30791:12;30806:7;30791:22;;30874:4;30855:15;:13;:15::i;:::-;:23;30851:1061;;30908:13;;30901:4;:20;30897:1015;;;30946:14;30963:17;:23;30981:4;30963:23;;;;;;;;;;;;30946:40;;31080:1;20026:8;31052:6;:24;:29;31048:845;;;31717:113;31734:1;31724:6;:11;31717:113;;;31777:17;:25;31795:6;;;;;;;31777:25;;;;;;;;;;;;31768:34;;31717:113;;;31863:6;31856:13;;;;;;31048:845;30923:989;30897:1015;30851:1061;31940:31;;;;;;;;;;;;;;30704:1275;;;;:::o;37247:479::-;37349:27;37378:23;37419:38;37460:15;:24;37476:7;37460:24;;;;;;;;;;;37419:65;;37631:18;37608:41;;37688:19;37682:26;37663:45;;37593:126;37247:479;;;:::o;36475:659::-;36624:11;36789:16;36782:5;36778:28;36769:37;;36949:16;36938:9;36934:32;36921:45;;37099:15;37088:9;37085:30;37077:5;37066:9;37063:20;37060:56;37050:66;;36475:659;;;;;:::o;43103:159::-;;;;;:::o;57159:311::-;57294:7;57314:16;20430:3;57340:19;:41;;57314:68;;20430:3;57408:31;57419:4;57425:2;57429:9;57408:10;:31::i;:::-;57400:40;;:62;;57393:69;;;57159:311;;;;;:::o;32527:450::-;32607:14;32775:16;32768:5;32764:28;32755:37;;32952:5;32938:11;32913:23;32909:41;32906:52;32899:5;32896:63;32886:73;;32527:450;;;;:::o;43927:158::-;;;;;:::o;1568:190::-;1693:4;1746;1717:25;1730:5;1737:4;1717:12;:25::i;:::-;:33;1710:40;;1568:190;;;;;:::o;44525:716::-;44688:4;44734:2;44709:45;;;44755:19;:17;:19::i;:::-;44776:4;44782:7;44791:5;44709:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44705:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45009:1;44992:6;:13;:18;44988:235;;;45038:40;;;;;;;;;;;;;;44988:235;45181:6;45175:13;45166:6;45162:2;45158:15;45151:38;44705:529;44878:54;;;44868:64;;;:6;:64;;;;44861:71;;;44525:716;;;;;;:::o;63699:113::-;63759:13;63792:12;63785:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63699:113;:::o;58057:2002::-;58122:17;58541:3;58534:4;58528:11;58524:21;58517:28;;58632:3;58626:4;58619:17;58738:3;59194:5;59324:1;59319:3;59315:11;59308:18;;59495:2;59489:4;59485:13;59481:2;59477:22;59472:3;59464:36;59536:2;59530:4;59526:13;59518:21;;59086:731;59555:4;59086:731;;;59746:1;59741:3;59737:11;59730:18;;59797:2;59791:4;59787:13;59783:2;59779:22;59774:3;59766:36;59650:2;59644:4;59640:13;59632:21;;59086:731;;;59090:464;59856:3;59851;59847:13;59971:2;59966:3;59962:12;59955:19;;60034:6;60029:3;60022:19;58161:1891;;58057:2002;;;:::o;50909:689::-;51040:19;51046:2;51050:8;51040:5;:19::i;:::-;51119:1;51101:2;:14;;;:19;51097:483;;51141:11;51155:13;;51141:27;;51187:13;51209:8;51203:3;:14;51187:30;;51236:233;51267:62;51306:1;51310:2;51314:7;;;;;;51323:5;51267:30;:62::i;:::-;51262:167;;51365:40;;;;;;;;;;;;;;51262:167;51464:3;51456:5;:11;51236:233;;51551:3;51534:13;;:20;51530:34;;51556:8;;;51530:34;51122:458;;51097:483;50909:689;;;:::o;56860:147::-;56997:6;56860:147;;;;;:::o;2435:296::-;2518:7;2538:20;2561:4;2538:27;;2581:9;2576:118;2600:5;:12;2596:1;:16;2576:118;;;2649:33;2659:12;2673:5;2679:1;2673:8;;;;;;;;:::i;:::-;;;;;;;;2649:9;:33::i;:::-;2634:48;;2614:3;;;;;:::i;:::-;;;;2576:118;;;;2711:12;2704:19;;;2435:296;;;;:::o;45703:2454::-;45776:20;45799:13;;45776:36;;45839:1;45827:8;:13;45823:44;;;45849:18;;;;;;;;;;;;;;45823:44;45880:61;45910:1;45914:2;45918:12;45932:8;45880:21;:61::i;:::-;46424:1;19388:2;46394:1;:26;;46393:32;46381:8;:45;46355:18;:22;46374:2;46355:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46703:139;46740:2;46794:33;46817:1;46821:2;46825:1;46794:14;:33::i;:::-;46761:30;46782:8;46761:20;:30::i;:::-;:66;46703:18;:139::i;:::-;46669:17;:31;46687:12;46669:31;;;;;;;;;;;:173;;;;46859:16;46890:11;46919:8;46904:12;:23;46890:37;;47174:16;47170:2;47166:25;47154:37;;47546:12;47506:8;47465:1;47403:25;47344:1;47283;47256:335;47671:1;47657:12;47653:20;47611:346;47712:3;47703:7;47700:16;47611:346;;47930:7;47920:8;47917:1;47890:25;47887:1;47884;47879:59;47765:1;47756:7;47752:15;47741:26;;47611:346;;;47615:77;48002:1;47990:8;:13;47986:45;;;48012:19;;;;;;;;;;;;;;47986:45;48064:3;48048:13;:19;;;;46129:1950;;48089:60;48118:1;48122:2;48126:12;48140:8;48089:20;:60::i;:::-;45765:2392;45703:2454;;:::o;8642:149::-;8705:7;8736:1;8732;:5;:51;;8763:20;8778:1;8781;8763:14;:20::i;:::-;8732:51;;;8740:20;8755:1;8758;8740:14;:20::i;:::-;8732:51;8725:58;;8642:149;;;;:::o;33079:324::-;33149:14;33382:1;33372:8;33369:15;33343:24;33339:46;33329:56;;33079:324;;;:::o;8799:268::-;8867:13;8974:1;8968:4;8961:15;9003:1;8997:4;8990:15;9044:4;9038;9028:21;9019:30;;8799:268;;;;:::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:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:568::-;1821:8;1831:6;1881:3;1874:4;1866:6;1862:17;1858:27;1848:122;;1889:79;;:::i;:::-;1848:122;2002:6;1989:20;1979:30;;2032:18;2024:6;2021:30;2018:117;;;2054:79;;:::i;:::-;2018:117;2168:4;2160:6;2156:17;2144:29;;2222:3;2214:4;2206:6;2202:17;2192:8;2188:32;2185:41;2182:128;;;2229:79;;:::i;:::-;2182:128;1748:568;;;;;:::o;2339:370::-;2410:5;2459:3;2452:4;2444:6;2440:17;2436:27;2426:122;;2467:79;;:::i;:::-;2426:122;2584:6;2571:20;2609:94;2699:3;2691:6;2684:4;2676:6;2672:17;2609:94;:::i;:::-;2600:103;;2416:293;2339:370;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:135::-;4195:5;4233:6;4220:20;4211:29;;4249:31;4274:5;4249:31;:::i;:::-;4151:135;;;;:::o;4292:329::-;4351:6;4400:2;4388:9;4379:7;4375:23;4371:32;4368:119;;;4406:79;;:::i;:::-;4368:119;4526:1;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4497:117;4292:329;;;;:::o;4627:474::-;4695:6;4703;4752:2;4740:9;4731:7;4727:23;4723:32;4720:119;;;4758:79;;:::i;:::-;4720:119;4878:1;4903:53;4948:7;4939:6;4928:9;4924:22;4903:53;:::i;:::-;4893:63;;4849:117;5005:2;5031:53;5076:7;5067:6;5056:9;5052:22;5031:53;:::i;:::-;5021:63;;4976:118;4627:474;;;;;:::o;5107:619::-;5184:6;5192;5200;5249:2;5237:9;5228:7;5224:23;5220:32;5217:119;;;5255:79;;:::i;:::-;5217:119;5375:1;5400:53;5445:7;5436:6;5425:9;5421:22;5400:53;:::i;:::-;5390:63;;5346:117;5502:2;5528:53;5573:7;5564:6;5553:9;5549:22;5528:53;:::i;:::-;5518:63;;5473:118;5630:2;5656:53;5701:7;5692:6;5681:9;5677:22;5656:53;:::i;:::-;5646:63;;5601:118;5107:619;;;;;:::o;5732:943::-;5827:6;5835;5843;5851;5900:3;5888:9;5879:7;5875:23;5871:33;5868:120;;;5907:79;;:::i;:::-;5868:120;6027:1;6052:53;6097:7;6088:6;6077:9;6073:22;6052:53;:::i;:::-;6042:63;;5998:117;6154:2;6180:53;6225:7;6216:6;6205:9;6201:22;6180:53;:::i;:::-;6170:63;;6125:118;6282:2;6308:53;6353:7;6344:6;6333:9;6329:22;6308:53;:::i;:::-;6298:63;;6253:118;6438:2;6427:9;6423:18;6410:32;6469:18;6461:6;6458:30;6455:117;;;6491:79;;:::i;:::-;6455:117;6596:62;6650:7;6641:6;6630:9;6626:22;6596:62;:::i;:::-;6586:72;;6381:287;5732:943;;;;;;;:::o;6681:1079::-;6812:6;6820;6828;6836;6844;6893:2;6881:9;6872:7;6868:23;6864:32;6861:119;;;6899:79;;:::i;:::-;6861:119;7019:1;7044:53;7089:7;7080:6;7069:9;7065:22;7044:53;:::i;:::-;7034:63;;6990:117;7174:2;7163:9;7159:18;7146:32;7205:18;7197:6;7194:30;7191:117;;;7227:79;;:::i;:::-;7191:117;7340:80;7412:7;7403:6;7392:9;7388:22;7340:80;:::i;:::-;7322:98;;;;7117:313;7497:2;7486:9;7482:18;7469:32;7528:18;7520:6;7517:30;7514:117;;;7550:79;;:::i;:::-;7514:117;7663:80;7735:7;7726:6;7715:9;7711:22;7663:80;:::i;:::-;7645:98;;;;7440:313;6681:1079;;;;;;;;:::o;7766:845::-;7868:6;7876;7884;7892;7941:2;7929:9;7920:7;7916:23;7912:32;7909:119;;;7947:79;;:::i;:::-;7909:119;8067:1;8092:53;8137:7;8128:6;8117:9;8113:22;8092:53;:::i;:::-;8082:63;;8038:117;8222:2;8211:9;8207:18;8194:32;8253:18;8245:6;8242:30;8239:117;;;8275:79;;:::i;:::-;8239:117;8388:80;8460:7;8451:6;8440:9;8436:22;8388:80;:::i;:::-;8370:98;;;;8165:313;8517:2;8543:51;8586:7;8577:6;8566:9;8562:22;8543:51;:::i;:::-;8533:61;;8488:116;7766:845;;;;;;;:::o;8617:468::-;8682:6;8690;8739:2;8727:9;8718:7;8714:23;8710:32;8707:119;;;8745:79;;:::i;:::-;8707:119;8865:1;8890:53;8935:7;8926:6;8915:9;8911:22;8890:53;:::i;:::-;8880:63;;8836:117;8992:2;9018:50;9060:7;9051:6;9040:9;9036:22;9018:50;:::i;:::-;9008:60;;8963:115;8617:468;;;;;:::o;9091:474::-;9159:6;9167;9216:2;9204:9;9195:7;9191:23;9187:32;9184:119;;;9222:79;;:::i;:::-;9184:119;9342:1;9367:53;9412:7;9403:6;9392:9;9388:22;9367:53;:::i;:::-;9357:63;;9313:117;9469:2;9495:53;9540:7;9531:6;9520:9;9516:22;9495:53;:::i;:::-;9485:63;;9440:118;9091:474;;;;;:::o;9571:934::-;9693:6;9701;9709;9717;9766:2;9754:9;9745:7;9741:23;9737:32;9734:119;;;9772:79;;:::i;:::-;9734:119;9920:1;9909:9;9905:17;9892:31;9950:18;9942:6;9939:30;9936:117;;;9972:79;;:::i;:::-;9936:117;10085:80;10157:7;10148:6;10137:9;10133:22;10085:80;:::i;:::-;10067:98;;;;9863:312;10242:2;10231:9;10227:18;10214:32;10273:18;10265:6;10262:30;10259:117;;;10295:79;;:::i;:::-;10259:117;10408:80;10480:7;10471:6;10460:9;10456:22;10408:80;:::i;:::-;10390:98;;;;10185:313;9571:934;;;;;;;:::o;10511:680::-;10602:6;10610;10659:2;10647:9;10638:7;10634:23;10630:32;10627:119;;;10665:79;;:::i;:::-;10627:119;10813:1;10802:9;10798:17;10785:31;10843:18;10835:6;10832:30;10829:117;;;10865:79;;:::i;:::-;10829:117;10970:78;11040:7;11031:6;11020:9;11016:22;10970:78;:::i;:::-;10960:88;;10756:302;11097:2;11123:51;11166:7;11157:6;11146:9;11142:22;11123:51;:::i;:::-;11113:61;;11068:116;10511:680;;;;;:::o;11197:329::-;11256:6;11305:2;11293:9;11284:7;11280:23;11276:32;11273:119;;;11311:79;;:::i;:::-;11273:119;11431:1;11456:53;11501:7;11492:6;11481:9;11477:22;11456:53;:::i;:::-;11446:63;;11402:117;11197:329;;;;:::o;11532:327::-;11590:6;11639:2;11627:9;11618:7;11614:23;11610:32;11607:119;;;11645:79;;:::i;:::-;11607:119;11765:1;11790:52;11834:7;11825:6;11814:9;11810:22;11790:52;:::i;:::-;11780:62;;11736:116;11532:327;;;;:::o;11865:349::-;11934:6;11983:2;11971:9;11962:7;11958:23;11954:32;11951:119;;;11989:79;;:::i;:::-;11951:119;12109:1;12134:63;12189:7;12180:6;12169:9;12165:22;12134:63;:::i;:::-;12124:73;;12080:127;11865:349;;;;:::o;12220:509::-;12289:6;12338:2;12326:9;12317:7;12313:23;12309:32;12306:119;;;12344:79;;:::i;:::-;12306:119;12492:1;12481:9;12477:17;12464:31;12522:18;12514:6;12511:30;12508:117;;;12544:79;;:::i;:::-;12508:117;12649:63;12704:7;12695:6;12684:9;12680:22;12649:63;:::i;:::-;12639:73;;12435:287;12220:509;;;;:::o;12735:329::-;12794:6;12843:2;12831:9;12822:7;12818:23;12814:32;12811:119;;;12849:79;;:::i;:::-;12811:119;12969:1;12994:53;13039:7;13030:6;13019:9;13015:22;12994:53;:::i;:::-;12984:63;;12940:117;12735:329;;;;:::o;13070:325::-;13127:6;13176:2;13164:9;13155:7;13151:23;13147:32;13144:119;;;13182:79;;:::i;:::-;13144:119;13302:1;13327:51;13370:7;13361:6;13350:9;13346:22;13327:51;:::i;:::-;13317:61;;13273:115;13070:325;;;;:::o;13401:118::-;13488:24;13506:5;13488:24;:::i;:::-;13483:3;13476:37;13401:118;;:::o;13525:157::-;13630:45;13650:24;13668:5;13650:24;:::i;:::-;13630:45;:::i;:::-;13625:3;13618:58;13525:157;;:::o;13688:109::-;13769:21;13784:5;13769:21;:::i;:::-;13764:3;13757:34;13688:109;;:::o;13803:118::-;13890:24;13908:5;13890:24;:::i;:::-;13885:3;13878:37;13803:118;;:::o;13927:360::-;14013:3;14041:38;14073:5;14041:38;:::i;:::-;14095:70;14158:6;14153:3;14095:70;:::i;:::-;14088:77;;14174:52;14219:6;14214:3;14207:4;14200:5;14196:16;14174:52;:::i;:::-;14251:29;14273:6;14251:29;:::i;:::-;14246:3;14242:39;14235:46;;14017:270;13927:360;;;;:::o;14293:364::-;14381:3;14409:39;14442:5;14409:39;:::i;:::-;14464:71;14528:6;14523:3;14464:71;:::i;:::-;14457:78;;14544:52;14589:6;14584:3;14577:4;14570:5;14566:16;14544:52;:::i;:::-;14621:29;14643:6;14621:29;:::i;:::-;14616:3;14612:39;14605:46;;14385:272;14293:364;;;;:::o;14663:377::-;14769:3;14797:39;14830:5;14797:39;:::i;:::-;14852:89;14934:6;14929:3;14852:89;:::i;:::-;14845:96;;14950:52;14995:6;14990:3;14983:4;14976:5;14972:16;14950:52;:::i;:::-;15027:6;15022:3;15018:16;15011:23;;14773:267;14663:377;;;;:::o;15046:366::-;15188:3;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15285:93;15374:3;15285:93;:::i;:::-;15403:2;15398:3;15394:12;15387:19;;15046:366;;;:::o;15418:::-;15560:3;15581:67;15645:2;15640:3;15581:67;:::i;:::-;15574:74;;15657:93;15746:3;15657:93;:::i;:::-;15775:2;15770:3;15766:12;15759:19;;15418:366;;;:::o;15790:::-;15932:3;15953:67;16017:2;16012:3;15953:67;:::i;:::-;15946:74;;16029:93;16118:3;16029:93;:::i;:::-;16147:2;16142:3;16138:12;16131:19;;15790:366;;;:::o;16162:::-;16304:3;16325:67;16389:2;16384:3;16325:67;:::i;:::-;16318:74;;16401:93;16490:3;16401:93;:::i;:::-;16519:2;16514:3;16510:12;16503:19;;16162:366;;;:::o;16534:::-;16676:3;16697:67;16761:2;16756:3;16697:67;:::i;:::-;16690:74;;16773:93;16862:3;16773:93;:::i;:::-;16891:2;16886:3;16882:12;16875:19;;16534:366;;;:::o;16906:398::-;17065:3;17086:83;17167:1;17162:3;17086:83;:::i;:::-;17079:90;;17178:93;17267:3;17178:93;:::i;:::-;17296:1;17291:3;17287:11;17280:18;;16906:398;;;:::o;17310:118::-;17397:24;17415:5;17397:24;:::i;:::-;17392:3;17385:37;17310:118;;:::o;17434:112::-;17517:22;17533:5;17517:22;:::i;:::-;17512:3;17505:35;17434:112;;:::o;17552:256::-;17664:3;17679:75;17750:3;17741:6;17679:75;:::i;:::-;17779:2;17774:3;17770:12;17763:19;;17799:3;17792:10;;17552:256;;;;:::o;17814:435::-;17994:3;18016:95;18107:3;18098:6;18016:95;:::i;:::-;18009:102;;18128:95;18219:3;18210:6;18128:95;:::i;:::-;18121:102;;18240:3;18233:10;;17814:435;;;;;:::o;18255:379::-;18439:3;18461:147;18604:3;18461:147;:::i;:::-;18454:154;;18625:3;18618:10;;18255:379;;;:::o;18640:222::-;18733:4;18771:2;18760:9;18756:18;18748:26;;18784:71;18852:1;18841:9;18837:17;18828:6;18784:71;:::i;:::-;18640:222;;;;:::o;18868:640::-;19063:4;19101:3;19090:9;19086:19;19078:27;;19115:71;19183:1;19172:9;19168:17;19159:6;19115:71;:::i;:::-;19196:72;19264:2;19253:9;19249:18;19240:6;19196:72;:::i;:::-;19278;19346:2;19335:9;19331:18;19322:6;19278:72;:::i;:::-;19397:9;19391:4;19387:20;19382:2;19371:9;19367:18;19360:48;19425:76;19496:4;19487:6;19425:76;:::i;:::-;19417:84;;18868:640;;;;;;;:::o;19514:210::-;19601:4;19639:2;19628:9;19624:18;19616:26;;19652:65;19714:1;19703:9;19699:17;19690:6;19652:65;:::i;:::-;19514:210;;;;:::o;19730:222::-;19823:4;19861:2;19850:9;19846:18;19838:26;;19874:71;19942:1;19931:9;19927:17;19918:6;19874:71;:::i;:::-;19730:222;;;;:::o;19958:313::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:78;20259:4;20250:6;20186:78;:::i;:::-;20178:86;;19958:313;;;;:::o;20277:419::-;20443:4;20481:2;20470:9;20466:18;20458:26;;20530:9;20524:4;20520:20;20516:1;20505:9;20501:17;20494:47;20558:131;20684:4;20558:131;:::i;:::-;20550:139;;20277:419;;;:::o;20702:::-;20868:4;20906:2;20895:9;20891:18;20883:26;;20955:9;20949:4;20945:20;20941:1;20930:9;20926:17;20919:47;20983:131;21109:4;20983:131;:::i;:::-;20975:139;;20702:419;;;:::o;21127:::-;21293:4;21331:2;21320:9;21316:18;21308:26;;21380:9;21374:4;21370:20;21366:1;21355:9;21351:17;21344:47;21408:131;21534:4;21408:131;:::i;:::-;21400:139;;21127:419;;;:::o;21552:::-;21718:4;21756:2;21745:9;21741:18;21733:26;;21805:9;21799:4;21795:20;21791:1;21780:9;21776:17;21769:47;21833:131;21959:4;21833:131;:::i;:::-;21825:139;;21552:419;;;:::o;21977:::-;22143:4;22181:2;22170:9;22166:18;22158:26;;22230:9;22224:4;22220:20;22216:1;22205:9;22201:17;22194:47;22258:131;22384:4;22258:131;:::i;:::-;22250:139;;21977:419;;;:::o;22402:222::-;22495:4;22533:2;22522:9;22518:18;22510:26;;22546:71;22614:1;22603:9;22599:17;22590:6;22546:71;:::i;:::-;22402:222;;;;:::o;22630:214::-;22719:4;22757:2;22746:9;22742:18;22734:26;;22770:67;22834:1;22823:9;22819:17;22810:6;22770:67;:::i;:::-;22630:214;;;;:::o;22850:129::-;22884:6;22911:20;;:::i;:::-;22901:30;;22940:33;22968:4;22960:6;22940:33;:::i;:::-;22850:129;;;:::o;22985:75::-;23018:6;23051:2;23045:9;23035:19;;22985:75;:::o;23066:311::-;23143:4;23233:18;23225:6;23222:30;23219:56;;;23255:18;;:::i;:::-;23219:56;23305:4;23297:6;23293:17;23285:25;;23365:4;23359;23355:15;23347:23;;23066:311;;;:::o;23383:307::-;23444:4;23534:18;23526:6;23523:30;23520:56;;;23556:18;;:::i;:::-;23520:56;23594:29;23616:6;23594:29;:::i;:::-;23586:37;;23678:4;23672;23668:15;23660:23;;23383:307;;;:::o;23696:308::-;23758:4;23848:18;23840:6;23837:30;23834:56;;;23870:18;;:::i;:::-;23834:56;23908:29;23930:6;23908:29;:::i;:::-;23900:37;;23992:4;23986;23982:15;23974:23;;23696:308;;;:::o;24010:98::-;24061:6;24095:5;24089:12;24079:22;;24010:98;;;:::o;24114:99::-;24166:6;24200:5;24194:12;24184:22;;24114:99;;;:::o;24219:168::-;24302:11;24336:6;24331:3;24324:19;24376:4;24371:3;24367:14;24352:29;;24219:168;;;;:::o;24393:147::-;24494:11;24531:3;24516:18;;24393:147;;;;:::o;24546:169::-;24630:11;24664:6;24659:3;24652:19;24704:4;24699:3;24695:14;24680:29;;24546:169;;;;:::o;24721:148::-;24823:11;24860:3;24845:18;;24721:148;;;;:::o;24875:305::-;24915:3;24934:20;24952:1;24934:20;:::i;:::-;24929:25;;24968:20;24986:1;24968:20;:::i;:::-;24963:25;;25122:1;25054:66;25050:74;25047:1;25044:81;25041:107;;;25128:18;;:::i;:::-;25041:107;25172:1;25169;25165:9;25158:16;;24875:305;;;;:::o;25186:191::-;25226:4;25246:20;25264:1;25246:20;:::i;:::-;25241:25;;25280:20;25298:1;25280:20;:::i;:::-;25275:25;;25319:1;25316;25313:8;25310:34;;;25324:18;;:::i;:::-;25310:34;25369:1;25366;25362:9;25354:17;;25186:191;;;;:::o;25383:96::-;25420:7;25449:24;25467:5;25449:24;:::i;:::-;25438:35;;25383:96;;;:::o;25485:90::-;25519:7;25562:5;25555:13;25548:21;25537:32;;25485:90;;;:::o;25581:77::-;25618:7;25647:5;25636:16;;25581:77;;;:::o;25664:149::-;25700:7;25740:66;25733:5;25729:78;25718:89;;25664:149;;;:::o;25819:126::-;25856:7;25896:42;25889:5;25885:54;25874:65;;25819:126;;;:::o;25951:77::-;25988:7;26017:5;26006:16;;25951:77;;;:::o;26034:86::-;26069:7;26109:4;26102:5;26098:16;26087:27;;26034:86;;;:::o;26126:154::-;26210:6;26205:3;26200;26187:30;26272:1;26263:6;26258:3;26254:16;26247:27;26126:154;;;:::o;26286:307::-;26354:1;26364:113;26378:6;26375:1;26372:13;26364:113;;;26463:1;26458:3;26454:11;26448:18;26444:1;26439:3;26435:11;26428:39;26400:2;26397:1;26393:10;26388:15;;26364:113;;;26495:6;26492:1;26489:13;26486:101;;;26575:1;26566:6;26561:3;26557:16;26550:27;26486:101;26335:258;26286:307;;;:::o;26599:320::-;26643:6;26680:1;26674:4;26670:12;26660:22;;26727:1;26721:4;26717:12;26748:18;26738:81;;26804:4;26796:6;26792:17;26782:27;;26738:81;26866:2;26858:6;26855:14;26835:18;26832:38;26829:84;;;26885:18;;:::i;:::-;26829:84;26650:269;26599:320;;;:::o;26925:281::-;27008:27;27030:4;27008:27;:::i;:::-;27000:6;26996:40;27138:6;27126:10;27123:22;27102:18;27090:10;27087:34;27084:62;27081:88;;;27149:18;;:::i;:::-;27081:88;27189:10;27185:2;27178:22;26968:238;26925:281;;:::o;27212:233::-;27251:3;27274:24;27292:5;27274:24;:::i;:::-;27265:33;;27320:66;27313:5;27310:77;27307:103;;;27390:18;;:::i;:::-;27307:103;27437:1;27430:5;27426:13;27419:20;;27212:233;;;:::o;27451:100::-;27490:7;27519:26;27539:5;27519:26;:::i;:::-;27508:37;;27451:100;;;:::o;27557:94::-;27596:7;27625:20;27639:5;27625:20;:::i;:::-;27614:31;;27557:94;;;:::o;27657:180::-;27705:77;27702:1;27695:88;27802:4;27799:1;27792:15;27826:4;27823:1;27816:15;27843:180;27891:77;27888:1;27881:88;27988:4;27985:1;27978:15;28012:4;28009:1;28002:15;28029:180;28077:77;28074:1;28067:88;28174:4;28171:1;28164:15;28198:4;28195:1;28188:15;28215:180;28263:77;28260:1;28253:88;28360:4;28357:1;28350:15;28384:4;28381:1;28374:15;28401:117;28510:1;28507;28500:12;28524:117;28633:1;28630;28623:12;28647:117;28756:1;28753;28746:12;28770:117;28879:1;28876;28869:12;28893:117;29002:1;28999;28992:12;29016:117;29125:1;29122;29115:12;29139:102;29180:6;29231:2;29227:7;29222:2;29215:5;29211:14;29207:28;29197:38;;29139:102;;;:::o;29247:94::-;29280:8;29328:5;29324:2;29320:14;29299:35;;29247:94;;;:::o;29347:181::-;29487:33;29483:1;29475:6;29471:14;29464:57;29347:181;:::o;29534:::-;29674:33;29670:1;29662:6;29658:14;29651:57;29534:181;:::o;29721:178::-;29861:30;29857:1;29849:6;29845:14;29838:54;29721:178;:::o;29905:165::-;30045:17;30041:1;30033:6;30029:14;30022:41;29905:165;:::o;30076:225::-;30216:34;30212:1;30204:6;30200:14;30193:58;30285:8;30280:2;30272:6;30268:15;30261:33;30076:225;:::o;30307:114::-;;:::o;30427:122::-;30500:24;30518:5;30500:24;:::i;:::-;30493:5;30490:35;30480:63;;30539:1;30536;30529:12;30480:63;30427:122;:::o;30555:116::-;30625:21;30640:5;30625:21;:::i;:::-;30618:5;30615:32;30605:60;;30661:1;30658;30651:12;30605:60;30555:116;:::o;30677:122::-;30750:24;30768:5;30750:24;:::i;:::-;30743:5;30740:35;30730:63;;30789:1;30786;30779:12;30730:63;30677:122;:::o;30805:120::-;30877:23;30894:5;30877:23;:::i;:::-;30870:5;30867:34;30857:62;;30915:1;30912;30905:12;30857:62;30805:120;:::o;30931:122::-;31004:24;31022:5;31004:24;:::i;:::-;30997:5;30994:35;30984:63;;31043:1;31040;31033:12;30984:63;30931:122;:::o;31059:118::-;31130:22;31146:5;31130:22;:::i;:::-;31123:5;31120:33;31110:61;;31167:1;31164;31157:12;31110:61;31059:118;:::o

Swarm Source

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