ETH Price: $3,308.22 (-3.80%)

Token

IRL Springfield Punks (ISPUNKS)
 

Overview

Max Total Supply

132 ISPUNKS

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ISPUNKS
0xef0b56692f78a44cf4034b07f80204757c31bcc9
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:
IRLSpringfieldPunks

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-10
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/common/ERC2981.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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



pragma solidity ^0.8.9;






enum ContractStatus {
        disable,
        open
    }

contract IRLSpringfieldPunks is Ownable, ERC721A, ERC2981, ReentrancyGuard {

    ContractStatus public CONTRACT_STATUS = ContractStatus.disable;

    uint96 public immutable ROYALTY_FEE_NUMERATOR = 750;

    uint256 public MAX_FREE_PER_WALLET = 1;
    uint256 public immutable MAX_TX_PER_WALLET = 10;
    uint256 public immutable PRICE = 0.0055 ether;
    uint256 public immutable TOTAL_SUPPLY = 5555;
    string public uriSuffix = '.json';

    string internal baseURI = "";

    modifier isEthAvailable(uint256 quantity) {
        require(msg.value >= getSalePrice(msg.sender, quantity), "Insufficient funds");
        _;
    }

    modifier isMaxTxReached(uint256 quantity) {
        require(_numberMinted(msg.sender) + quantity <= MAX_TX_PER_WALLET, "Exceeded tx limit");
        _;
    }

    modifier isSupplyUnavailable(uint256 quantity) {
        require(totalSupply() + quantity <= TOTAL_SUPPLY, "Max supply reached");
        _;
    }

    modifier isUser() {
        require(tx.origin == msg.sender, "Invalid User");
        _;
    }

    constructor() ERC721A("IRL Springfield Punks", "ISPUNKS") {
        _setDefaultRoyalty(owner(), ROYALTY_FEE_NUMERATOR);
    }

    function getTotalSupplyLeft() public view returns (uint256) {
        return TOTAL_SUPPLY - totalSupply();
    }

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

    function internalMint(address buyerAddress, uint256 quantity)
        external
        onlyOwner
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
    {
        _mint(buyerAddress, quantity);
    }

    function publicMint(uint256 quantity)
        public
        payable
        virtual
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(
            CONTRACT_STATUS == ContractStatus.open,
            "Not in whitelist mint stage"
        );

        payable(owner()).transfer(msg.value);
        _mint(msg.sender, quantity);
    }

    function getTotalMinted(address addr)
        public
        view
        returns (uint256)
    {
        return _numberMinted(addr);
    }

    function setBaseURI(string memory newURI) external virtual onlyOwner {
        baseURI = newURI;
    }

    function setFreePerWallet(uint256 newFreePerWallet) external virtual onlyOwner {
        MAX_FREE_PER_WALLET = newFreePerWallet;
    }

    function setStatus(ContractStatus status) external onlyOwner {
        CONTRACT_STATUS = status;
    }

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

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

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

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

    function getSalePrice(address sender, uint256 quantity)
        private
        view
        returns (uint256)
    {
        bool isAlreadyMinted = _numberMinted(sender) > 0;

        return
            isAlreadyMinted
                ? PRICE * (quantity)
                : PRICE * (quantity - MAX_FREE_PER_WALLET);
    }

    function withdraw(uint256 balance)external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: balance}("");

        require(success, "Transfer failed.");
    }

    function reserveBulk(address[] memory to) external onlyOwner {
        for (uint i = 0; i < to.length;i++) {
            _safeMint(to[i], 1);
        }
    }

    function withdrawAll() external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");

        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_STATUS","outputs":[{"internalType":"enum ContractStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE_NUMERATOR","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupplyLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyerAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"internalMint","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserveBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreePerWallet","type":"uint256"}],"name":"setFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ContractStatus","name":"status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040525f600c5f6101000a81548160ff021916908360018111156200002c576200002b62000485565b5b02179055506102ee6bffffffffffffffffffffffff166080906bffffffffffffffffffffffff168152506001600d55600a60a09081525066138a388a43c00060c0908152506115b360e0908152506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9081620000c0919062000716565b5060405180602001604052805f815250600f9081620000e0919062000716565b50348015620000ed575f80fd5b506040518060400160405280601581526020017f49524c20537072696e676669656c642050756e6b7300000000000000000000008152506040518060400160405280600781526020017f495350554e4b53000000000000000000000000000000000000000000000000008152506200017a6200016e620001e760201b60201c565b620001ee60201b60201c565b81600390816200018b919062000716565b5080600490816200019d919062000716565b50620001ae620002af60201b60201c565b60018190555050506001600b81905550620001e1620001d2620002b760201b60201c565b608051620002de60201b60201c565b6200090c565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6001905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620002ee6200047c60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200034f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000346906200087e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b790620008ec565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060095f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f612710905090565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200052e57607f821691505b602082108103620005445762000543620004e9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056b565b620005b486836200056b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005fe620005f8620005f284620005cc565b620005d5565b620005cc565b9050919050565b5f819050919050565b6200061983620005de565b62000631620006288262000605565b84845462000577565b825550505050565b5f90565b6200064762000639565b620006548184846200060e565b505050565b5b818110156200067b576200066f5f826200063d565b6001810190506200065a565b5050565b601f821115620006ca5762000694816200054a565b6200069f846200055c565b81016020851015620006af578190505b620006c7620006be856200055c565b83018262000659565b50505b505050565b5f82821c905092915050565b5f620006ec5f1984600802620006cf565b1980831691505092915050565b5f620007068383620006db565b9150826002028217905092915050565b6200072182620004b2565b67ffffffffffffffff8111156200073d576200073c620004bc565b5b62000749825462000516565b620007568282856200067f565b5f60209050601f8311600181146200078c575f841562000777578287015190505b620007838582620006f9565b865550620007f2565b601f1984166200079c866200054a565b5f5b82811015620007c5578489015182556001820191506020850194506020810190506200079e565b86831015620007e55784890151620007e1601f891682620006db565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f62000866602a83620007fa565b915062000873826200080a565b604082019050919050565b5f6020820190508181035f830152620008978162000858565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f620008d4601983620007fa565b9150620008e1826200089e565b602082019050919050565b5f6020820190508181035f8301526200090581620008c6565b9050919050565b60805160a05160c05160e051613d5e6200096a5f395f8181611041015281816114c00152818161192b0152611cc001525f81816118e00152818161217a01526121ab01525f81816110b701526119df01525f6116090152613d5e5ff3fe608060405260043610610203575f3560e01c806370a082311161011757806398710d1e1161009f578063bf7b779c1161006e578063bf7b779c14610714578063c87b56dd1461073e578063defcbacb1461077a578063e985e9c5146107a4578063f2fde38b146107e057610203565b806398710d1e1461065e5780639a9c1bb114610688578063a22cb465146106c4578063b88d4fde146106ec57610203565b80638d859f3e116100e65780638d859f3e1461058c5780638da5cb5b146105b6578063902d55a5146105e057806395d89b411461060a578063975e840e1461063457610203565b806370a08231146104fc578063715018a6146105385780637ba5b5fb1461054e578063853828b61461057657610203565b80632e1a7d4d1161019a5780635363074511610169578063536307451461041c5780635503a0e81461044457806355850fe61461046e57806355f804b3146104985780636352211e146104c057610203565b80632e1a7d4d1461037c5780632e49d78b146103a457806335001a1a146103cc57806342842e0e146103f457610203565b806318160ddd116101d657806318160ddd146102d157806323b872dd146102fb5780632a55205a146103235780632db115441461036057610203565b806301ffc9a71461020757806306fdde0314610243578063081812fc1461026d578063095ea7b3146102a9575b5f80fd5b348015610212575f80fd5b5061022d6004803603810190610228919061299f565b610808565b60405161023a91906129e4565b60405180910390f35b34801561024e575f80fd5b50610257610839565b6040516102649190612a87565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e9190612ada565b6108c9565b6040516102a09190612b44565b60405180910390f35b3480156102b4575f80fd5b506102cf60048036038101906102ca9190612b87565b610943565b005b3480156102dc575f80fd5b506102e5610a82565b6040516102f29190612bd4565b60405180910390f35b348015610306575f80fd5b50610321600480360381019061031c9190612bed565b610a98565b005b34801561032e575f80fd5b5061034960048036038101906103449190612c3d565b610da7565b604051610357929190612c7b565b60405180910390f35b61037a60048036038101906103759190612ada565b610f83565b005b348015610387575f80fd5b506103a2600480360381019061039d9190612ada565b61124f565b005b3480156103af575f80fd5b506103ca60048036038101906103c59190612cc5565b6113c6565b005b3480156103d7575f80fd5b506103f260048036038101906103ed9190612b87565b6113fa565b005b3480156103ff575f80fd5b5061041a60048036038101906104159190612bed565b61154a565b005b348015610427575f80fd5b50610442600480360381019061043d9190612ada565b611569565b005b34801561044f575f80fd5b5061045861157b565b6040516104659190612a87565b60405180910390f35b348015610479575f80fd5b50610482611607565b60405161048f9190612d16565b60405180910390f35b3480156104a3575f80fd5b506104be60048036038101906104b99190612e5b565b61162b565b005b3480156104cb575f80fd5b506104e660048036038101906104e19190612ada565b611646565b6040516104f39190612b44565b60405180910390f35b348015610507575f80fd5b50610522600480360381019061051d9190612ea2565b611657565b60405161052f9190612bd4565b60405180910390f35b348015610543575f80fd5b5061054c61170c565b005b348015610559575f80fd5b50610574600480360381019061056f9190612f91565b61171f565b005b348015610581575f80fd5b5061058a611768565b005b348015610597575f80fd5b506105a06118de565b6040516105ad9190612bd4565b60405180910390f35b3480156105c1575f80fd5b506105ca611902565b6040516105d79190612b44565b60405180910390f35b3480156105eb575f80fd5b506105f4611929565b6040516106019190612bd4565b60405180910390f35b348015610615575f80fd5b5061061e61194d565b60405161062b9190612a87565b60405180910390f35b34801561063f575f80fd5b506106486119dd565b6040516106559190612bd4565b60405180910390f35b348015610669575f80fd5b50610672611a01565b60405161067f9190612bd4565b60405180910390f35b348015610693575f80fd5b506106ae60048036038101906106a99190612ea2565b611a07565b6040516106bb9190612bd4565b60405180910390f35b3480156106cf575f80fd5b506106ea60048036038101906106e59190613002565b611a18565b005b3480156106f7575f80fd5b50610712600480360381019061070d91906130de565b611b8a565b005b34801561071f575f80fd5b50610728611bfc565b60405161073591906131d1565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612ada565b611c0e565b6040516107719190612a87565b60405180910390f35b348015610785575f80fd5b5061078e611cb5565b60405161079b9190612bd4565b60405180910390f35b3480156107af575f80fd5b506107ca60048036038101906107c591906131ea565b611cee565b6040516107d791906129e4565b60405180910390f35b3480156107eb575f80fd5b5061080660048036038101906108019190612ea2565b611d7c565b005b5f61081282611dfe565b80610822575061082182611e8f565b5b80610832575061083182611e8f565b5b9050919050565b60606003805461084890613255565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613255565b80156108bf5780601f10610896576101008083540402835291602001916108bf565b820191905f5260205f20905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b5f6108d382611f08565b610909576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61094d82611646565b90508073ffffffffffffffffffffffffffffffffffffffff1661096e611f63565b73ffffffffffffffffffffffffffffffffffffffff16146109d15761099a81610995611f63565b611cee565b6109d0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a8b611f6a565b6002546001540303905090565b5f610aa282611f72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b09576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610b1484612036565b91509150610b2a8187610b25611f63565b612059565b610b7657610b3f86610b3a611f63565b611cee565b610b75576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be8868686600161209c565b8015610bf2575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610cba85610c968888876120a2565b7c0200000000000000000000000000000000000000000000000000000000176120c9565b60055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610d37575f6001850190505f60055f8381526020019081526020015f205403610d35576001548114610d34578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d9f86868660016120f3565b505050505050565b5f805f600a5f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610f305760096040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610f396120f9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f6591906132b2565b610f6f9190613320565b9050815f0151819350935050509250929050565b6002600b5403610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf9061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613402565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000081611069610a82565b6110739190613420565b11156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab9061349d565b60405180910390fd5b817f0000000000000000000000000000000000000000000000000000000000000000816110e033612102565b6110ea9190613420565b111561112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613505565b60405180910390fd5b826111363382612156565b341015611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061356d565b60405180910390fd5b60018081111561118b5761118a61315e565b5b600c5f9054906101000a900460ff1660018111156111ac576111ab61315e565b5b146111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e3906135d5565b60405180910390fd5b6111f4611902565b73ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015611236573d5f803e3d5ffd5b5061124133856121de565b5050506001600b8190555050565b611257612389565b6002600b540361129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613402565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff168260405161133790613620565b5f6040518083038185875af1925050503d805f8114611371576040519150601f19603f3d011682016040523d82523d5f602084013e611376565b606091505b50509050806113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19061367e565b60405180910390fd5b506001600b8190555050565b6113ce612389565b80600c5f6101000a81548160ff021916908360018111156113f2576113f161315e565b5b021790555050565b611402612389565b6002600b5403611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613402565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000816114e8610a82565b6114f29190613420565b1115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a9061349d565b60405180910390fd5b61153d83836121de565b506001600b819055505050565b61156483838360405180602001604052805f815250611b8a565b505050565b611571612389565b80600d8190555050565b600e805461158890613255565b80601f01602080910402602001604051908101604052809291908181526020018280546115b490613255565b80156115ff5780601f106115d6576101008083540402835291602001916115ff565b820191905f5260205f20905b8154815290600101906020018083116115e257829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b611633612389565b80600f90816116429190613839565b5050565b5f61165082611f72565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611714612389565b61171d5f612407565b565b611727612389565b5f5b81518110156117645761175782828151811061174857611747613908565b5b602002602001015160016124c8565b8080600101915050611729565b5050565b611770612389565b6002600b54036117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac9061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613402565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161185090613620565b5f6040518083038185875af1925050503d805f811461188a576040519150601f19603f3d011682016040523d82523d5f602084013e61188f565b606091505b50509050806118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca9061367e565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606004805461195c90613255565b80601f016020809104026020016040519081016040528092919081815260200182805461198890613255565b80156119d35780601f106119aa576101008083540402835291602001916119d3565b820191905f5260205f20905b8154815290600101906020018083116119b657829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b5f611a1182612102565b9050919050565b611a20611f63565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a84576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f611a90611f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b39611f63565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7e91906129e4565b60405180910390a35050565b611b95848484610a98565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611bf657611bbf848484846124e5565b611bf5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5f9054906101000a900460ff1681565b6060611c1982611f08565b611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906139a5565b60405180910390fd5b5f611c61612630565b90505f815111611c7f5760405180602001604052805f815250611cad565b80611c89846126c0565b600e604051602001611c9d93929190613a7d565b6040516020818303038152906040525b915050919050565b5f611cbe610a82565b7f0000000000000000000000000000000000000000000000000000000000000000611ce99190613aad565b905090565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611d84612389565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613b50565b60405180910390fd5b611dfb81612407565b50565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e5857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e885750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f015750611f0082612819565b5b9050919050565b5f81611f12611f6a565b11158015611f21575060015482105b8015611f5c57505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611f80611f6a565b11611fff57600154811015611ffe575f60055f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611ffc575b5f8103611ff25760055f836001900393508381526020019081526020015f20549050611fcb565b8092505050612031565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60075f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86120b8868684612882565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f612710905090565b5f67ffffffffffffffff604060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805f61216285612102565b119050806121a857600d54836121789190613aad565b7f00000000000000000000000000000000000000000000000000000000000000006121a391906132b2565b6121d5565b827f00000000000000000000000000000000000000000000000000000000000000006121d491906132b2565b5b91505092915050565b5f60015490505f820361221d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122295f84838561209c565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061229b8361228c5f865f6120a2565b6122958561288a565b176120c9565b60055f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123355780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506122fc565b505f820361236f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506123845f8483856120f3565b505050565b612391612899565b73ffffffffffffffffffffffffffffffffffffffff166123af611902565b73ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90613bb8565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124e1828260405180602001604052805f8152506128a0565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a611f63565b8786866040518563ffffffff1660e01b815260040161252c9493929190613c28565b6020604051808303815f875af192505050801561256757506040513d601f19601f820116820180604052508101906125649190613c86565b60015b6125dd573d805f8114612595576040519150601f19603f3d011682016040523d82523d5f602084013e61259a565b606091505b505f8151036125d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461263f90613255565b80601f016020809104026020016040519081016040528092919081815260200182805461266b90613255565b80156126b65780601f1061268d576101008083540402835291602001916126b6565b820191905f5260205f20905b81548152906001019060200180831161269957829003601f168201915b5050505050905090565b60605f8203612706576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612814565b5f8290505f5b5f821461273557808061271e90613cb1565b915050600a8261272e9190613320565b915061270c565b5f8167ffffffffffffffff8111156127505761274f612d37565b5b6040519080825280601f01601f1916602001820160405280156127825781602001600182028036833780820191505090505b5090505b5f851461280d5760018261279a9190613aad565b9150600a856127a99190613cf8565b60306127b59190613420565b60f81b8183815181106127cb576127ca613908565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856128069190613320565b9450612786565b8093505050505b919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b6128aa83836121de565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612934575f60015490505f83820390505b6128e75f8683806001019450866124e5565b61291d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128d5578160015414612931575f80fd5b50505b505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61297e8161294a565b8114612988575f80fd5b50565b5f8135905061299981612975565b92915050565b5f602082840312156129b4576129b3612942565b5b5f6129c18482850161298b565b91505092915050565b5f8115159050919050565b6129de816129ca565b82525050565b5f6020820190506129f75f8301846129d5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a34578082015181840152602081019050612a19565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a59826129fd565b612a638185612a07565b9350612a73818560208601612a17565b612a7c81612a3f565b840191505092915050565b5f6020820190508181035f830152612a9f8184612a4f565b905092915050565b5f819050919050565b612ab981612aa7565b8114612ac3575f80fd5b50565b5f81359050612ad481612ab0565b92915050565b5f60208284031215612aef57612aee612942565b5b5f612afc84828501612ac6565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b2e82612b05565b9050919050565b612b3e81612b24565b82525050565b5f602082019050612b575f830184612b35565b92915050565b612b6681612b24565b8114612b70575f80fd5b50565b5f81359050612b8181612b5d565b92915050565b5f8060408385031215612b9d57612b9c612942565b5b5f612baa85828601612b73565b9250506020612bbb85828601612ac6565b9150509250929050565b612bce81612aa7565b82525050565b5f602082019050612be75f830184612bc5565b92915050565b5f805f60608486031215612c0457612c03612942565b5b5f612c1186828701612b73565b9350506020612c2286828701612b73565b9250506040612c3386828701612ac6565b9150509250925092565b5f8060408385031215612c5357612c52612942565b5b5f612c6085828601612ac6565b9250506020612c7185828601612ac6565b9150509250929050565b5f604082019050612c8e5f830185612b35565b612c9b6020830184612bc5565b9392505050565b60028110612cae575f80fd5b50565b5f81359050612cbf81612ca2565b92915050565b5f60208284031215612cda57612cd9612942565b5b5f612ce784828501612cb1565b91505092915050565b5f6bffffffffffffffffffffffff82169050919050565b612d1081612cf0565b82525050565b5f602082019050612d295f830184612d07565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612d6d82612a3f565b810181811067ffffffffffffffff82111715612d8c57612d8b612d37565b5b80604052505050565b5f612d9e612939565b9050612daa8282612d64565b919050565b5f67ffffffffffffffff821115612dc957612dc8612d37565b5b612dd282612a3f565b9050602081019050919050565b828183375f83830152505050565b5f612dff612dfa84612daf565b612d95565b905082815260208101848484011115612e1b57612e1a612d33565b5b612e26848285612ddf565b509392505050565b5f82601f830112612e4257612e41612d2f565b5b8135612e52848260208601612ded565b91505092915050565b5f60208284031215612e7057612e6f612942565b5b5f82013567ffffffffffffffff811115612e8d57612e8c612946565b5b612e9984828501612e2e565b91505092915050565b5f60208284031215612eb757612eb6612942565b5b5f612ec484828501612b73565b91505092915050565b5f67ffffffffffffffff821115612ee757612ee6612d37565b5b602082029050602081019050919050565b5f80fd5b5f612f0e612f0984612ecd565b612d95565b90508083825260208201905060208402830185811115612f3157612f30612ef8565b5b835b81811015612f5a5780612f468882612b73565b845260208401935050602081019050612f33565b5050509392505050565b5f82601f830112612f7857612f77612d2f565b5b8135612f88848260208601612efc565b91505092915050565b5f60208284031215612fa657612fa5612942565b5b5f82013567ffffffffffffffff811115612fc357612fc2612946565b5b612fcf84828501612f64565b91505092915050565b612fe1816129ca565b8114612feb575f80fd5b50565b5f81359050612ffc81612fd8565b92915050565b5f806040838503121561301857613017612942565b5b5f61302585828601612b73565b925050602061303685828601612fee565b9150509250929050565b5f67ffffffffffffffff82111561305a57613059612d37565b5b61306382612a3f565b9050602081019050919050565b5f61308261307d84613040565b612d95565b90508281526020810184848401111561309e5761309d612d33565b5b6130a9848285612ddf565b509392505050565b5f82601f8301126130c5576130c4612d2f565b5b81356130d5848260208601613070565b91505092915050565b5f805f80608085870312156130f6576130f5612942565b5b5f61310387828801612b73565b945050602061311487828801612b73565b935050604061312587828801612ac6565b925050606085013567ffffffffffffffff81111561314657613145612946565b5b613152878288016130b1565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b6002811061319c5761319b61315e565b5b50565b5f8190506131ac8261318b565b919050565b5f6131bb8261319f565b9050919050565b6131cb816131b1565b82525050565b5f6020820190506131e45f8301846131c2565b92915050565b5f8060408385031215613200576131ff612942565b5b5f61320d85828601612b73565b925050602061321e85828601612b73565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061326c57607f821691505b60208210810361327f5761327e613228565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6132bc82612aa7565b91506132c783612aa7565b92508282026132d581612aa7565b915082820484148315176132ec576132eb613285565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61332a82612aa7565b915061333583612aa7565b925082613345576133446132f3565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613384601f83612a07565b915061338f82613350565b602082019050919050565b5f6020820190508181035f8301526133b181613378565b9050919050565b7f496e76616c6964205573657200000000000000000000000000000000000000005f82015250565b5f6133ec600c83612a07565b91506133f7826133b8565b602082019050919050565b5f6020820190508181035f830152613419816133e0565b9050919050565b5f61342a82612aa7565b915061343583612aa7565b925082820190508082111561344d5761344c613285565b5b92915050565b7f4d617820737570706c79207265616368656400000000000000000000000000005f82015250565b5f613487601283612a07565b915061349282613453565b602082019050919050565b5f6020820190508181035f8301526134b48161347b565b9050919050565b7f4578636565646564207478206c696d69740000000000000000000000000000005f82015250565b5f6134ef601183612a07565b91506134fa826134bb565b602082019050919050565b5f6020820190508181035f83015261351c816134e3565b9050919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613557601283612a07565b915061356282613523565b602082019050919050565b5f6020820190508181035f8301526135848161354b565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e7420737461676500000000005f82015250565b5f6135bf601b83612a07565b91506135ca8261358b565b602082019050919050565b5f6020820190508181035f8301526135ec816135b3565b9050919050565b5f81905092915050565b50565b5f61360b5f836135f3565b9150613616826135fd565b5f82019050919050565b5f61362a82613600565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f613668601083612a07565b915061367382613634565b602082019050919050565b5f6020820190508181035f8301526136958161365c565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026136f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136bd565b61370286836136bd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61373d61373861373384612aa7565b61371a565b612aa7565b9050919050565b5f819050919050565b61375683613723565b61376a61376282613744565b8484546136c9565b825550505050565b5f90565b61377e613772565b61378981848461374d565b505050565b5b818110156137ac576137a15f82613776565b60018101905061378f565b5050565b601f8211156137f1576137c28161369c565b6137cb846136ae565b810160208510156137da578190505b6137ee6137e6856136ae565b83018261378e565b50505b505050565b5f82821c905092915050565b5f6138115f19846008026137f6565b1980831691505092915050565b5f6138298383613802565b9150826002028217905092915050565b613842826129fd565b67ffffffffffffffff81111561385b5761385a612d37565b5b6138658254613255565b6138708282856137b0565b5f60209050601f8311600181146138a1575f841561388f578287015190505b613899858261381e565b865550613900565b601f1984166138af8661369c565b5f5b828110156138d6578489015182556001820191506020850194506020810190506138b1565b868310156138f357848901516138ef601f891682613802565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f61398f602f83612a07565b915061399a82613935565b604082019050919050565b5f6020820190508181035f8301526139bc81613983565b9050919050565b5f81905092915050565b5f6139d7826129fd565b6139e181856139c3565b93506139f1818560208601612a17565b80840191505092915050565b5f8154613a0981613255565b613a1381866139c3565b9450600182165f8114613a2d5760018114613a4257613a74565b60ff1983168652811515820286019350613a74565b613a4b8561369c565b5f5b83811015613a6c57815481890152600182019150602081019050613a4d565b838801955050505b50505092915050565b5f613a8882866139cd565b9150613a9482856139cd565b9150613aa082846139fd565b9150819050949350505050565b5f613ab782612aa7565b9150613ac283612aa7565b9250828203905081811115613ada57613ad9613285565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b3a602683612a07565b9150613b4582613ae0565b604082019050919050565b5f6020820190508181035f830152613b6781613b2e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613ba2602083612a07565b9150613bad82613b6e565b602082019050919050565b5f6020820190508181035f830152613bcf81613b96565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613bfa82613bd6565b613c048185613be0565b9350613c14818560208601612a17565b613c1d81612a3f565b840191505092915050565b5f608082019050613c3b5f830187612b35565b613c486020830186612b35565b613c556040830185612bc5565b8181036060830152613c678184613bf0565b905095945050505050565b5f81519050613c8081612975565b92915050565b5f60208284031215613c9b57613c9a612942565b5b5f613ca884828501613c72565b91505092915050565b5f613cbb82612aa7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ced57613cec613285565b5b600182019050919050565b5f613d0282612aa7565b9150613d0d83612aa7565b925082613d1d57613d1c6132f3565b5b82820690509291505056fea2646970667358221220e08b99dea741a4a392ae2893d5be112f2253e279f85c0f2d1f7024fcb6f3e40164736f6c63430008160033

Deployed Bytecode

0x608060405260043610610203575f3560e01c806370a082311161011757806398710d1e1161009f578063bf7b779c1161006e578063bf7b779c14610714578063c87b56dd1461073e578063defcbacb1461077a578063e985e9c5146107a4578063f2fde38b146107e057610203565b806398710d1e1461065e5780639a9c1bb114610688578063a22cb465146106c4578063b88d4fde146106ec57610203565b80638d859f3e116100e65780638d859f3e1461058c5780638da5cb5b146105b6578063902d55a5146105e057806395d89b411461060a578063975e840e1461063457610203565b806370a08231146104fc578063715018a6146105385780637ba5b5fb1461054e578063853828b61461057657610203565b80632e1a7d4d1161019a5780635363074511610169578063536307451461041c5780635503a0e81461044457806355850fe61461046e57806355f804b3146104985780636352211e146104c057610203565b80632e1a7d4d1461037c5780632e49d78b146103a457806335001a1a146103cc57806342842e0e146103f457610203565b806318160ddd116101d657806318160ddd146102d157806323b872dd146102fb5780632a55205a146103235780632db115441461036057610203565b806301ffc9a71461020757806306fdde0314610243578063081812fc1461026d578063095ea7b3146102a9575b5f80fd5b348015610212575f80fd5b5061022d6004803603810190610228919061299f565b610808565b60405161023a91906129e4565b60405180910390f35b34801561024e575f80fd5b50610257610839565b6040516102649190612a87565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e9190612ada565b6108c9565b6040516102a09190612b44565b60405180910390f35b3480156102b4575f80fd5b506102cf60048036038101906102ca9190612b87565b610943565b005b3480156102dc575f80fd5b506102e5610a82565b6040516102f29190612bd4565b60405180910390f35b348015610306575f80fd5b50610321600480360381019061031c9190612bed565b610a98565b005b34801561032e575f80fd5b5061034960048036038101906103449190612c3d565b610da7565b604051610357929190612c7b565b60405180910390f35b61037a60048036038101906103759190612ada565b610f83565b005b348015610387575f80fd5b506103a2600480360381019061039d9190612ada565b61124f565b005b3480156103af575f80fd5b506103ca60048036038101906103c59190612cc5565b6113c6565b005b3480156103d7575f80fd5b506103f260048036038101906103ed9190612b87565b6113fa565b005b3480156103ff575f80fd5b5061041a60048036038101906104159190612bed565b61154a565b005b348015610427575f80fd5b50610442600480360381019061043d9190612ada565b611569565b005b34801561044f575f80fd5b5061045861157b565b6040516104659190612a87565b60405180910390f35b348015610479575f80fd5b50610482611607565b60405161048f9190612d16565b60405180910390f35b3480156104a3575f80fd5b506104be60048036038101906104b99190612e5b565b61162b565b005b3480156104cb575f80fd5b506104e660048036038101906104e19190612ada565b611646565b6040516104f39190612b44565b60405180910390f35b348015610507575f80fd5b50610522600480360381019061051d9190612ea2565b611657565b60405161052f9190612bd4565b60405180910390f35b348015610543575f80fd5b5061054c61170c565b005b348015610559575f80fd5b50610574600480360381019061056f9190612f91565b61171f565b005b348015610581575f80fd5b5061058a611768565b005b348015610597575f80fd5b506105a06118de565b6040516105ad9190612bd4565b60405180910390f35b3480156105c1575f80fd5b506105ca611902565b6040516105d79190612b44565b60405180910390f35b3480156105eb575f80fd5b506105f4611929565b6040516106019190612bd4565b60405180910390f35b348015610615575f80fd5b5061061e61194d565b60405161062b9190612a87565b60405180910390f35b34801561063f575f80fd5b506106486119dd565b6040516106559190612bd4565b60405180910390f35b348015610669575f80fd5b50610672611a01565b60405161067f9190612bd4565b60405180910390f35b348015610693575f80fd5b506106ae60048036038101906106a99190612ea2565b611a07565b6040516106bb9190612bd4565b60405180910390f35b3480156106cf575f80fd5b506106ea60048036038101906106e59190613002565b611a18565b005b3480156106f7575f80fd5b50610712600480360381019061070d91906130de565b611b8a565b005b34801561071f575f80fd5b50610728611bfc565b60405161073591906131d1565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612ada565b611c0e565b6040516107719190612a87565b60405180910390f35b348015610785575f80fd5b5061078e611cb5565b60405161079b9190612bd4565b60405180910390f35b3480156107af575f80fd5b506107ca60048036038101906107c591906131ea565b611cee565b6040516107d791906129e4565b60405180910390f35b3480156107eb575f80fd5b5061080660048036038101906108019190612ea2565b611d7c565b005b5f61081282611dfe565b80610822575061082182611e8f565b5b80610832575061083182611e8f565b5b9050919050565b60606003805461084890613255565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613255565b80156108bf5780601f10610896576101008083540402835291602001916108bf565b820191905f5260205f20905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b5f6108d382611f08565b610909576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61094d82611646565b90508073ffffffffffffffffffffffffffffffffffffffff1661096e611f63565b73ffffffffffffffffffffffffffffffffffffffff16146109d15761099a81610995611f63565b611cee565b6109d0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a8b611f6a565b6002546001540303905090565b5f610aa282611f72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b09576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610b1484612036565b91509150610b2a8187610b25611f63565b612059565b610b7657610b3f86610b3a611f63565b611cee565b610b75576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be8868686600161209c565b8015610bf2575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610cba85610c968888876120a2565b7c0200000000000000000000000000000000000000000000000000000000176120c9565b60055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610d37575f6001850190505f60055f8381526020019081526020015f205403610d35576001548114610d34578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d9f86868660016120f3565b505050505050565b5f805f600a5f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610f305760096040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610f396120f9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f6591906132b2565b610f6f9190613320565b9050815f0151819350935050509250929050565b6002600b5403610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf9061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613402565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000000000000015b381611069610a82565b6110739190613420565b11156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab9061349d565b60405180910390fd5b817f000000000000000000000000000000000000000000000000000000000000000a816110e033612102565b6110ea9190613420565b111561112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613505565b60405180910390fd5b826111363382612156565b341015611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061356d565b60405180910390fd5b60018081111561118b5761118a61315e565b5b600c5f9054906101000a900460ff1660018111156111ac576111ab61315e565b5b146111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e3906135d5565b60405180910390fd5b6111f4611902565b73ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015611236573d5f803e3d5ffd5b5061124133856121de565b5050506001600b8190555050565b611257612389565b6002600b540361129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613402565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff168260405161133790613620565b5f6040518083038185875af1925050503d805f8114611371576040519150601f19603f3d011682016040523d82523d5f602084013e611376565b606091505b50509050806113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19061367e565b60405180910390fd5b506001600b8190555050565b6113ce612389565b80600c5f6101000a81548160ff021916908360018111156113f2576113f161315e565b5b021790555050565b611402612389565b6002600b5403611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613402565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000000000000015b3816114e8610a82565b6114f29190613420565b1115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a9061349d565b60405180910390fd5b61153d83836121de565b506001600b819055505050565b61156483838360405180602001604052805f815250611b8a565b505050565b611571612389565b80600d8190555050565b600e805461158890613255565b80601f01602080910402602001604051908101604052809291908181526020018280546115b490613255565b80156115ff5780601f106115d6576101008083540402835291602001916115ff565b820191905f5260205f20905b8154815290600101906020018083116115e257829003601f168201915b505050505081565b7f00000000000000000000000000000000000000000000000000000000000002ee81565b611633612389565b80600f90816116429190613839565b5050565b5f61165082611f72565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611714612389565b61171d5f612407565b565b611727612389565b5f5b81518110156117645761175782828151811061174857611747613908565b5b602002602001015160016124c8565b8080600101915050611729565b5050565b611770612389565b6002600b54036117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac9061339a565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613402565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161185090613620565b5f6040518083038185875af1925050503d805f811461188a576040519150601f19603f3d011682016040523d82523d5f602084013e61188f565b606091505b50509050806118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca9061367e565b60405180910390fd5b506001600b81905550565b7f00000000000000000000000000000000000000000000000000138a388a43c00081565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f00000000000000000000000000000000000000000000000000000000000015b381565b60606004805461195c90613255565b80601f016020809104026020016040519081016040528092919081815260200182805461198890613255565b80156119d35780601f106119aa576101008083540402835291602001916119d3565b820191905f5260205f20905b8154815290600101906020018083116119b657829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000a81565b600d5481565b5f611a1182612102565b9050919050565b611a20611f63565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a84576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f611a90611f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b39611f63565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7e91906129e4565b60405180910390a35050565b611b95848484610a98565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611bf657611bbf848484846124e5565b611bf5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5f9054906101000a900460ff1681565b6060611c1982611f08565b611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906139a5565b60405180910390fd5b5f611c61612630565b90505f815111611c7f5760405180602001604052805f815250611cad565b80611c89846126c0565b600e604051602001611c9d93929190613a7d565b6040516020818303038152906040525b915050919050565b5f611cbe610a82565b7f00000000000000000000000000000000000000000000000000000000000015b3611ce99190613aad565b905090565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611d84612389565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613b50565b60405180910390fd5b611dfb81612407565b50565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e5857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e885750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f015750611f0082612819565b5b9050919050565b5f81611f12611f6a565b11158015611f21575060015482105b8015611f5c57505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611f80611f6a565b11611fff57600154811015611ffe575f60055f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611ffc575b5f8103611ff25760055f836001900393508381526020019081526020015f20549050611fcb565b8092505050612031565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60075f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86120b8868684612882565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f612710905090565b5f67ffffffffffffffff604060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805f61216285612102565b119050806121a857600d54836121789190613aad565b7f00000000000000000000000000000000000000000000000000138a388a43c0006121a391906132b2565b6121d5565b827f00000000000000000000000000000000000000000000000000138a388a43c0006121d491906132b2565b5b91505092915050565b5f60015490505f820361221d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122295f84838561209c565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061229b8361228c5f865f6120a2565b6122958561288a565b176120c9565b60055f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123355780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506122fc565b505f820361236f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506123845f8483856120f3565b505050565b612391612899565b73ffffffffffffffffffffffffffffffffffffffff166123af611902565b73ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90613bb8565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124e1828260405180602001604052805f8152506128a0565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a611f63565b8786866040518563ffffffff1660e01b815260040161252c9493929190613c28565b6020604051808303815f875af192505050801561256757506040513d601f19601f820116820180604052508101906125649190613c86565b60015b6125dd573d805f8114612595576040519150601f19603f3d011682016040523d82523d5f602084013e61259a565b606091505b505f8151036125d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461263f90613255565b80601f016020809104026020016040519081016040528092919081815260200182805461266b90613255565b80156126b65780601f1061268d576101008083540402835291602001916126b6565b820191905f5260205f20905b81548152906001019060200180831161269957829003601f168201915b5050505050905090565b60605f8203612706576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612814565b5f8290505f5b5f821461273557808061271e90613cb1565b915050600a8261272e9190613320565b915061270c565b5f8167ffffffffffffffff8111156127505761274f612d37565b5b6040519080825280601f01601f1916602001820160405280156127825781602001600182028036833780820191505090505b5090505b5f851461280d5760018261279a9190613aad565b9150600a856127a99190613cf8565b60306127b59190613420565b60f81b8183815181106127cb576127ca613908565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856128069190613320565b9450612786565b8093505050505b919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b6128aa83836121de565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612934575f60015490505f83820390505b6128e75f8683806001019450866124e5565b61291d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128d5578160015414612931575f80fd5b50505b505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61297e8161294a565b8114612988575f80fd5b50565b5f8135905061299981612975565b92915050565b5f602082840312156129b4576129b3612942565b5b5f6129c18482850161298b565b91505092915050565b5f8115159050919050565b6129de816129ca565b82525050565b5f6020820190506129f75f8301846129d5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a34578082015181840152602081019050612a19565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a59826129fd565b612a638185612a07565b9350612a73818560208601612a17565b612a7c81612a3f565b840191505092915050565b5f6020820190508181035f830152612a9f8184612a4f565b905092915050565b5f819050919050565b612ab981612aa7565b8114612ac3575f80fd5b50565b5f81359050612ad481612ab0565b92915050565b5f60208284031215612aef57612aee612942565b5b5f612afc84828501612ac6565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b2e82612b05565b9050919050565b612b3e81612b24565b82525050565b5f602082019050612b575f830184612b35565b92915050565b612b6681612b24565b8114612b70575f80fd5b50565b5f81359050612b8181612b5d565b92915050565b5f8060408385031215612b9d57612b9c612942565b5b5f612baa85828601612b73565b9250506020612bbb85828601612ac6565b9150509250929050565b612bce81612aa7565b82525050565b5f602082019050612be75f830184612bc5565b92915050565b5f805f60608486031215612c0457612c03612942565b5b5f612c1186828701612b73565b9350506020612c2286828701612b73565b9250506040612c3386828701612ac6565b9150509250925092565b5f8060408385031215612c5357612c52612942565b5b5f612c6085828601612ac6565b9250506020612c7185828601612ac6565b9150509250929050565b5f604082019050612c8e5f830185612b35565b612c9b6020830184612bc5565b9392505050565b60028110612cae575f80fd5b50565b5f81359050612cbf81612ca2565b92915050565b5f60208284031215612cda57612cd9612942565b5b5f612ce784828501612cb1565b91505092915050565b5f6bffffffffffffffffffffffff82169050919050565b612d1081612cf0565b82525050565b5f602082019050612d295f830184612d07565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612d6d82612a3f565b810181811067ffffffffffffffff82111715612d8c57612d8b612d37565b5b80604052505050565b5f612d9e612939565b9050612daa8282612d64565b919050565b5f67ffffffffffffffff821115612dc957612dc8612d37565b5b612dd282612a3f565b9050602081019050919050565b828183375f83830152505050565b5f612dff612dfa84612daf565b612d95565b905082815260208101848484011115612e1b57612e1a612d33565b5b612e26848285612ddf565b509392505050565b5f82601f830112612e4257612e41612d2f565b5b8135612e52848260208601612ded565b91505092915050565b5f60208284031215612e7057612e6f612942565b5b5f82013567ffffffffffffffff811115612e8d57612e8c612946565b5b612e9984828501612e2e565b91505092915050565b5f60208284031215612eb757612eb6612942565b5b5f612ec484828501612b73565b91505092915050565b5f67ffffffffffffffff821115612ee757612ee6612d37565b5b602082029050602081019050919050565b5f80fd5b5f612f0e612f0984612ecd565b612d95565b90508083825260208201905060208402830185811115612f3157612f30612ef8565b5b835b81811015612f5a5780612f468882612b73565b845260208401935050602081019050612f33565b5050509392505050565b5f82601f830112612f7857612f77612d2f565b5b8135612f88848260208601612efc565b91505092915050565b5f60208284031215612fa657612fa5612942565b5b5f82013567ffffffffffffffff811115612fc357612fc2612946565b5b612fcf84828501612f64565b91505092915050565b612fe1816129ca565b8114612feb575f80fd5b50565b5f81359050612ffc81612fd8565b92915050565b5f806040838503121561301857613017612942565b5b5f61302585828601612b73565b925050602061303685828601612fee565b9150509250929050565b5f67ffffffffffffffff82111561305a57613059612d37565b5b61306382612a3f565b9050602081019050919050565b5f61308261307d84613040565b612d95565b90508281526020810184848401111561309e5761309d612d33565b5b6130a9848285612ddf565b509392505050565b5f82601f8301126130c5576130c4612d2f565b5b81356130d5848260208601613070565b91505092915050565b5f805f80608085870312156130f6576130f5612942565b5b5f61310387828801612b73565b945050602061311487828801612b73565b935050604061312587828801612ac6565b925050606085013567ffffffffffffffff81111561314657613145612946565b5b613152878288016130b1565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b6002811061319c5761319b61315e565b5b50565b5f8190506131ac8261318b565b919050565b5f6131bb8261319f565b9050919050565b6131cb816131b1565b82525050565b5f6020820190506131e45f8301846131c2565b92915050565b5f8060408385031215613200576131ff612942565b5b5f61320d85828601612b73565b925050602061321e85828601612b73565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061326c57607f821691505b60208210810361327f5761327e613228565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6132bc82612aa7565b91506132c783612aa7565b92508282026132d581612aa7565b915082820484148315176132ec576132eb613285565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61332a82612aa7565b915061333583612aa7565b925082613345576133446132f3565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613384601f83612a07565b915061338f82613350565b602082019050919050565b5f6020820190508181035f8301526133b181613378565b9050919050565b7f496e76616c6964205573657200000000000000000000000000000000000000005f82015250565b5f6133ec600c83612a07565b91506133f7826133b8565b602082019050919050565b5f6020820190508181035f830152613419816133e0565b9050919050565b5f61342a82612aa7565b915061343583612aa7565b925082820190508082111561344d5761344c613285565b5b92915050565b7f4d617820737570706c79207265616368656400000000000000000000000000005f82015250565b5f613487601283612a07565b915061349282613453565b602082019050919050565b5f6020820190508181035f8301526134b48161347b565b9050919050565b7f4578636565646564207478206c696d69740000000000000000000000000000005f82015250565b5f6134ef601183612a07565b91506134fa826134bb565b602082019050919050565b5f6020820190508181035f83015261351c816134e3565b9050919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613557601283612a07565b915061356282613523565b602082019050919050565b5f6020820190508181035f8301526135848161354b565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e7420737461676500000000005f82015250565b5f6135bf601b83612a07565b91506135ca8261358b565b602082019050919050565b5f6020820190508181035f8301526135ec816135b3565b9050919050565b5f81905092915050565b50565b5f61360b5f836135f3565b9150613616826135fd565b5f82019050919050565b5f61362a82613600565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f613668601083612a07565b915061367382613634565b602082019050919050565b5f6020820190508181035f8301526136958161365c565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026136f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136bd565b61370286836136bd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61373d61373861373384612aa7565b61371a565b612aa7565b9050919050565b5f819050919050565b61375683613723565b61376a61376282613744565b8484546136c9565b825550505050565b5f90565b61377e613772565b61378981848461374d565b505050565b5b818110156137ac576137a15f82613776565b60018101905061378f565b5050565b601f8211156137f1576137c28161369c565b6137cb846136ae565b810160208510156137da578190505b6137ee6137e6856136ae565b83018261378e565b50505b505050565b5f82821c905092915050565b5f6138115f19846008026137f6565b1980831691505092915050565b5f6138298383613802565b9150826002028217905092915050565b613842826129fd565b67ffffffffffffffff81111561385b5761385a612d37565b5b6138658254613255565b6138708282856137b0565b5f60209050601f8311600181146138a1575f841561388f578287015190505b613899858261381e565b865550613900565b601f1984166138af8661369c565b5f5b828110156138d6578489015182556001820191506020850194506020810190506138b1565b868310156138f357848901516138ef601f891682613802565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f61398f602f83612a07565b915061399a82613935565b604082019050919050565b5f6020820190508181035f8301526139bc81613983565b9050919050565b5f81905092915050565b5f6139d7826129fd565b6139e181856139c3565b93506139f1818560208601612a17565b80840191505092915050565b5f8154613a0981613255565b613a1381866139c3565b9450600182165f8114613a2d5760018114613a4257613a74565b60ff1983168652811515820286019350613a74565b613a4b8561369c565b5f5b83811015613a6c57815481890152600182019150602081019050613a4d565b838801955050505b50505092915050565b5f613a8882866139cd565b9150613a9482856139cd565b9150613aa082846139fd565b9150819050949350505050565b5f613ab782612aa7565b9150613ac283612aa7565b9250828203905081811115613ada57613ad9613285565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b3a602683612a07565b9150613b4582613ae0565b604082019050919050565b5f6020820190508181035f830152613b6781613b2e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613ba2602083612a07565b9150613bad82613b6e565b602082019050919050565b5f6020820190508181035f830152613bcf81613b96565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613bfa82613bd6565b613c048185613be0565b9350613c14818560208601612a17565b613c1d81612a3f565b840191505092915050565b5f608082019050613c3b5f830187612b35565b613c486020830186612b35565b613c556040830185612bc5565b8181036060830152613c678184613bf0565b905095945050505050565b5f81519050613c8081612975565b92915050565b5f60208284031215613c9b57613c9a612942565b5b5f613ca884828501613c72565b91505092915050565b5f613cbb82612aa7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ced57613cec613285565b5b600182019050919050565b5f613d0282612aa7565b9150613d0d83612aa7565b925082613d1d57613d1c6132f3565b5b82820690509291505056fea2646970667358221220e08b99dea741a4a392ae2893d5be112f2253e279f85c0f2d1f7024fcb6f3e40164736f6c63430008160033

Deployed Bytecode Sourcemap

66329:4467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69531:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21384:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27867:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17135:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31574:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60134:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;68024:459;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70223:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68900:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67787:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34487:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68756:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66746:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66484:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68644:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22777:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18319:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65407:103;;;;;;;;;;;;;:::i;:::-;;70426:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70595:198;;;;;;;;;;;;;:::i;:::-;;66643:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64759:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66695:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21560:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66589:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66544:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68491:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28425:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35270:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66413:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69121:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67549:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28890:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65665:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69531:344;69679:4;69721:38;69747:11;69721:25;:38::i;:::-;:93;;;;69776:38;69802:11;69776:25;:38::i;:::-;69721:93;:146;;;;69831:36;69855:11;69831:23;:36::i;:::-;69721:146;69701:166;;69531:344;;;:::o;21384:100::-;21438:13;21471:5;21464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21384:100;:::o;27867:218::-;27943:7;27968:16;27976:7;27968;:16::i;:::-;27963:64;;27993:34;;;;;;;;;;;;;;27963:64;28047:15;:24;28063:7;28047:24;;;;;;;;;;;:30;;;;;;;;;;;;28040:37;;27867:218;;;:::o;27308:400::-;27389:13;27405:16;27413:7;27405;:16::i;:::-;27389:32;;27461:5;27438:28;;:19;:17;:19::i;:::-;:28;;;27434:175;;27486:44;27503:5;27510:19;:17;:19::i;:::-;27486:16;:44::i;:::-;27481:128;;27558:35;;;;;;;;;;;;;;27481:128;27434:175;27654:2;27621:15;:24;27637:7;27621:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27692:7;27688:2;27672:28;;27681:5;27672:28;;;;;;;;;;;;27378:330;27308:400;;:::o;17135:323::-;17196:7;17424:15;:13;:15::i;:::-;17409:12;;17393:13;;:28;:46;17386:53;;17135:323;:::o;31574:2817::-;31708:27;31738;31757:7;31738:18;:27::i;:::-;31708:57;;31823:4;31782:45;;31798:19;31782:45;;;31778:86;;31836:28;;;;;;;;;;;;;;31778:86;31878:27;31907:23;31934:35;31961:7;31934:26;:35::i;:::-;31877:92;;;;32069:68;32094:15;32111:4;32117:19;:17;:19::i;:::-;32069:24;:68::i;:::-;32064:180;;32157:43;32174:4;32180:19;:17;:19::i;:::-;32157:16;:43::i;:::-;32152:92;;32209:35;;;;;;;;;;;;;;32152:92;32064:180;32275:1;32261:16;;:2;:16;;;32257:52;;32286:23;;;;;;;;;;;;;;32257:52;32322:43;32344:4;32350:2;32354:7;32363:1;32322:21;:43::i;:::-;32458:15;32455:160;;;32598:1;32577:19;32570:30;32455:160;32995:18;:24;33014:4;32995:24;;;;;;;;;;;;;;;;32993:26;;;;;;;;;;;;33064:18;:22;33083:2;33064:22;;;;;;;;;;;;;;;;33062:24;;;;;;;;;;;33386:146;33423:2;33472:45;33487:4;33493:2;33497:19;33472:14;:45::i;:::-;13534:8;33444:73;33386:18;:146::i;:::-;33357:17;:26;33375:7;33357:26;;;;;;;;;;;:175;;;;33703:1;13534:8;33652:19;:47;:52;33648:627;;33725:19;33757:1;33747:7;:11;33725:33;;33914:1;33880:17;:30;33898:11;33880:30;;;;;;;;;;;;:35;33876:384;;34018:13;;34003:11;:28;33999:242;;34198:19;34165:17;:30;34183:11;34165:30;;;;;;;;;;;:52;;;;33999:242;33876:384;33706:569;33648:627;34322:7;34318:2;34303:27;;34312:4;34303:27;;;;;;;;;;;;34341:42;34362:4;34368:2;34372:7;34381:1;34341:20;:42::i;:::-;31697:2694;;;31574:2817;;;:::o;60134:442::-;60231:7;60240;60260:26;60289:17;:27;60307:8;60289:27;;;;;;;;;;;60260:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60361:1;60333:30;;:7;:16;;;:30;;;60329:92;;60390:19;60380:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60329:92;60433:21;60498:17;:15;:17::i;:::-;60457:58;;60471:7;:23;;;60458:36;;:10;:36;;;;:::i;:::-;60457:58;;;;:::i;:::-;60433:82;;60536:7;:16;;;60554:13;60528:40;;;;;;60134:442;;;;;:::o;68024:459::-;54687:1;55285:7;;:19;55277:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54687:1;55418:7;:18;;;;67359:10:::1;67346:23;;:9;:23;;;67338:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;68179:8:::2;67246:12;67234:8;67218:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;67210:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;68213:8:::3;67085:17;67073:8;67045:25;67059:10;67045:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;67037:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;68247:8:::4;66899:34;66912:10;66924:8;66899:12;:34::i;:::-;66886:9;:47;;66878:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;68314:19:::5;68295:38:::0;::::5;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:38;;;;;;;;:::i;:::-;;;68273:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;68409:7;:5;:7::i;:::-;68401:25;;:36;68427:9;68401:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::5;;;;;;68448:27;68454:10;68466:8;68448:5;:27::i;:::-;67135:1:::4;67292::::3;67397::::2;54643::::0;55597:7;:22;;;;68024:459;:::o;70223:195::-;64645:13;:11;:13::i;:::-;54687:1:::1;55285:7;;:19:::0;55277:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54687:1;55418:7;:18;;;;67359:10:::2;67346:23;;:9;:23;;;67338:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;70308:12:::3;70326:10;:15;;70349:7;70326:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70307:54;;;70382:7;70374:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;70296:122;54643:1:::1;55597:7;:22;;;;70223:195:::0;:::o;68900:104::-;64645:13;:11;:13::i;:::-;68990:6:::1;68972:15;;:24;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;68900:104:::0;:::o;67787:229::-;64645:13;:11;:13::i;:::-;54687:1:::1;55285:7;;:19:::0;55277:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54687:1;55418:7;:18;;;;67359:10:::2;67346:23;;:9;:23;;;67338:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;67953:8:::3;67246:12;67234:8;67218:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;67210:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;67979:29:::4;67985:12;67999:8;67979:5;:29::i;:::-;67397:1:::3;54643::::1;55597:7;:22;;;;67787:229:::0;;:::o;34487:185::-;34625:39;34642:4;34648:2;34652:7;34625:39;;;;;;;;;;;;:16;:39::i;:::-;34487:185;;;:::o;68756:136::-;64645:13;:11;:13::i;:::-;68868:16:::1;68846:19;:38;;;;68756:136:::0;:::o;66746:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66484:51::-;;;:::o;68644:104::-;64645:13;:11;:13::i;:::-;68734:6:::1;68724:7;:16;;;;;;:::i;:::-;;68644:104:::0;:::o;22777:152::-;22849:7;22892:27;22911:7;22892:18;:27::i;:::-;22869:52;;22777:152;;;:::o;18319:233::-;18391:7;18432:1;18415:19;;:5;:19;;;18411:60;;18443:28;;;;;;;;;;;;;;18411:60;12478:13;18489:18;:25;18508:5;18489:25;;;;;;;;;;;;;;;;:55;18482:62;;18319:233;;;:::o;65407:103::-;64645:13;:11;:13::i;:::-;65472:30:::1;65499:1;65472:18;:30::i;:::-;65407:103::o:0;70426:161::-;64645:13;:11;:13::i;:::-;70503:6:::1;70498:82;70519:2;:9;70515:1;:13;70498:82;;;70549:19;70559:2;70562:1;70559:5;;;;;;;;:::i;:::-;;;;;;;;70566:1;70549:9;:19::i;:::-;70529:3;;;;;;;70498:82;;;;70426:161:::0;:::o;70595:198::-;64645:13;:11;:13::i;:::-;54687:1:::1;55285:7;;:19:::0;55277:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54687:1;55418:7;:18;;;;67359:10:::2;67346:23;;:9;:23;;;67338:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;70669:12:::3;70687:10;:15;;70710:21;70687:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70668:68;;;70757:7;70749:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;70657:136;54643:1:::1;55597:7;:22;;;;70595:198::o:0;66643:45::-;;;:::o;64759:87::-;64805:7;64832:6;;;;;;;;;;;64825:13;;64759:87;:::o;66695:44::-;;;:::o;21560:104::-;21616:13;21649:7;21642:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21560:104;:::o;66589:47::-;;;:::o;66544:38::-;;;;:::o;68491:145::-;68577:7;68609:19;68623:4;68609:13;:19::i;:::-;68602:26;;68491:145;;;:::o;28425:308::-;28536:19;:17;:19::i;:::-;28524:31;;:8;:31;;;28520:61;;28564:17;;;;;;;;;;;;;;28520:61;28646:8;28594:18;:39;28613:19;:17;:19::i;:::-;28594:39;;;;;;;;;;;;;;;:49;28634:8;28594:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28706:8;28670:55;;28685:19;:17;:19::i;:::-;28670:55;;;28716:8;28670:55;;;;;;:::i;:::-;;;;;;;;28425:308;;:::o;35270:399::-;35437:31;35450:4;35456:2;35460:7;35437:12;:31::i;:::-;35501:1;35483:2;:14;;;:19;35479:183;;35522:56;35553:4;35559:2;35563:7;35572:5;35522:30;:56::i;:::-;35517:145;;35606:40;;;;;;;;;;;;;;35517:145;35479:183;35270:399;;;;:::o;66413:62::-;;;;;;;;;;;;;:::o;69121:402::-;69195:13;69229:17;69237:8;69229:7;:17::i;:::-;69221:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;69311:28;69342:10;:8;:10::i;:::-;69311:41;;69401:1;69376:14;69370:28;:32;:145;;;;;;;;;;;;;;;;;69442:14;69458:26;69475:8;69458:16;:26::i;:::-;69486:9;69425:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69370:145;69363:152;;;69121:402;;;:::o;67549:114::-;67600:7;67642:13;:11;:13::i;:::-;67627:12;:28;;;;:::i;:::-;67620:35;;67549:114;:::o;28890:164::-;28987:4;29011:18;:25;29030:5;29011:25;;;;;;;;;;;;;;;:35;29037:8;29011:35;;;;;;;;;;;;;;;;;;;;;;;;;29004:42;;28890:164;;;;:::o;65665:201::-;64645:13;:11;:13::i;:::-;65774:1:::1;65754:22;;:8;:22;;::::0;65746:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;65830:28;65849:8;65830:18;:28::i;:::-;65665:201:::0;:::o;20482:639::-;20567:4;20906:10;20891:25;;:11;:25;;;;:102;;;;20983:10;20968:25;;:11;:25;;;;20891:102;:179;;;;21060:10;21045:25;;:11;:25;;;;20891:179;20871:199;;20482:639;;;:::o;59864:215::-;59966:4;60005:26;59990:41;;;:11;:41;;;;:81;;;;60035:36;60059:11;60035:23;:36::i;:::-;59990:81;59983:88;;59864:215;;;:::o;29312:282::-;29377:4;29433:7;29414:15;:13;:15::i;:::-;:26;;:66;;;;;29467:13;;29457:7;:23;29414:66;:153;;;;;29566:1;13254:8;29518:17;:26;29536:7;29518:26;;;;;;;;;;;;:44;:49;29414:153;29394:173;;29312:282;;;:::o;51078:105::-;51138:7;51165:10;51158:17;;51078:105;:::o;69012:101::-;69077:7;69104:1;69097:8;;69012:101;:::o;23932:1275::-;23999:7;24019:12;24034:7;24019:22;;24102:4;24083:15;:13;:15::i;:::-;:23;24079:1061;;24136:13;;24129:4;:20;24125:1015;;;24174:14;24191:17;:23;24209:4;24191:23;;;;;;;;;;;;24174:40;;24308:1;13254:8;24280:6;:24;:29;24276:845;;24945:113;24962:1;24952:6;:11;24945:113;;25005:17;:25;25023:6;;;;;;;25005:25;;;;;;;;;;;;24996:34;;24945:113;;;25091:6;25084:13;;;;;;24276:845;24151:989;24125:1015;24079:1061;25168:31;;;;;;;;;;;;;;23932:1275;;;;:::o;30475:479::-;30577:27;30606:23;30647:38;30688:15;:24;30704:7;30688:24;;;;;;;;;;;30647:65;;30859:18;30836:41;;30916:19;30910:26;30891:45;;30821:126;30475:479;;;:::o;29703:659::-;29852:11;30017:16;30010:5;30006:28;29997:37;;30177:16;30166:9;30162:32;30149:45;;30327:15;30316:9;30313:30;30305:5;30294:9;30291:20;30288:56;30278:66;;29703:659;;;;;:::o;36331:159::-;;;;;:::o;50387:311::-;50522:7;50542:16;13658:3;50568:19;:41;;50542:68;;13658:3;50636:31;50647:4;50653:2;50657:9;50636:10;:31::i;:::-;50628:40;;:62;;50621:69;;;50387:311;;;;;:::o;25755:450::-;25835:14;26003:16;25996:5;25992:28;25983:37;;26180:5;26166:11;26141:23;26137:41;26134:52;26127:5;26124:63;26114:73;;25755:450;;;;:::o;37155:158::-;;;;;:::o;60858:97::-;60916:6;60942:5;60935:12;;60858:97;:::o;18634:178::-;18695:7;12478:13;12616:2;18723:18;:25;18742:5;18723:25;;;;;;;;;;;;;;;;:50;;18722:82;18715:89;;18634:178;;;:::o;69883:332::-;69988:7;70013:20;70060:1;70036:21;70050:6;70036:13;:21::i;:::-;:25;70013:48;;70094:15;:113;;70187:19;;70176:8;:30;;;;:::i;:::-;70167:5;:40;;;;:::i;:::-;70094:113;;;70138:8;70129:5;:18;;;;:::i;:::-;70094:113;70074:133;;;69883:332;;;;:::o;38931:2454::-;39004:20;39027:13;;39004:36;;39067:1;39055:8;:13;39051:44;;39077:18;;;;;;;;;;;;;;39051:44;39108:61;39138:1;39142:2;39146:12;39160:8;39108:21;:61::i;:::-;39652:1;12616:2;39622:1;:26;;39621:32;39609:8;:45;39583:18;:22;39602:2;39583:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39931:139;39968:2;40022:33;40045:1;40049:2;40053:1;40022:14;:33::i;:::-;39989:30;40010:8;39989:20;:30::i;:::-;:66;39931:18;:139::i;:::-;39897:17;:31;39915:12;39897:31;;;;;;;;;;;:173;;;;40087:16;40118:11;40147:8;40132:12;:23;40118:37;;40402:16;40398:2;40394:25;40382:37;;40774:12;40734:8;40693:1;40631:25;40572:1;40511;40484:335;40899:1;40885:12;40881:20;40839:346;40940:3;40931:7;40928:16;40839:346;;41158:7;41148:8;41145:1;41118:25;41115:1;41112;41107:59;40993:1;40984:7;40980:15;40969:26;;40839:346;;;40843:77;41230:1;41218:8;:13;41214:45;;41240:19;;;;;;;;;;;;;;41214:45;41292:3;41276:13;:19;;;;39357:1950;;41317:60;41346:1;41350:2;41354:12;41368:8;41317:20;:60::i;:::-;38993:2392;38931:2454;;:::o;64924:132::-;64999:12;:10;:12::i;:::-;64988:23;;:7;:5;:7::i;:::-;:23;;;64980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64924:132::o;66026:191::-;66100:16;66119:6;;;;;;;;;;;66100:25;;66145:8;66136:6;;:17;;;;;;;;;;;;;;;;;;66200:8;66169:40;;66190:8;66169:40;;;;;;;;;;;;66089:128;66026:191;:::o;44910:112::-;44987:27;44997:2;45001:8;44987:27;;;;;;;;;;;;:9;:27::i;:::-;44910:112;;:::o;37753:716::-;37916:4;37962:2;37937:45;;;37983:19;:17;:19::i;:::-;38004:4;38010:7;38019:5;37937:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37933:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:1;38220:6;:13;:18;38216:235;;38266:40;;;;;;;;;;;;;;38216:235;38409:6;38403:13;38394:6;38390:2;38386:15;38379:38;37933:529;38106:54;;;38096:64;;;:6;:64;;;;38089:71;;;37753:716;;;;;;:::o;67671:108::-;67731:13;67764:7;67757:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67671:108;:::o;288:723::-;344:13;574:1;565:5;:10;561:53;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;57416:157::-;57501:4;57540:25;57525:40;;;:11;:40;;;;57518:47;;57416:157;;;:::o;50088:147::-;50225:6;50088:147;;;;;:::o;26307:324::-;26377:14;26610:1;26600:8;26597:15;26571:24;26567:46;26557:56;;26307:324;;;:::o;63310:98::-;63363:7;63390:10;63383:17;;63310:98;:::o;44137:689::-;44268:19;44274:2;44278:8;44268:5;:19::i;:::-;44347:1;44329:2;:14;;;:19;44325:483;;44369:11;44383:13;;44369:27;;44415:13;44437:8;44431:3;:14;44415:30;;44464:233;44495:62;44534:1;44538:2;44542:7;;;;;;44551:5;44495:30;:62::i;:::-;44490:167;;44593:40;;;;;;;;;;;;;;44490:167;44692:3;44684:5;:11;44464:233;;44779:3;44762:13;;:20;44758:34;;44784:8;;;44758:34;44350:458;;44325:483;44137:689;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:332::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:71;6587:1;6576:9;6572:17;6563:6;6519:71;:::i;:::-;6600:72;6668:2;6657:9;6653:18;6644:6;6600:72;:::i;:::-;6347:332;;;;;:::o;6685:118::-;6777:1;6770:5;6767:12;6757:40;;6793:1;6790;6783:12;6757:40;6685:118;:::o;6809:177::-;6874:5;6912:6;6899:20;6890:29;;6928:52;6974:5;6928:52;:::i;:::-;6809:177;;;;:::o;6992:367::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7245:1;7270:72;7334:7;7325:6;7314:9;7310:22;7270:72;:::i;:::-;7260:82;;7216:136;6992:367;;;;:::o;7365:109::-;7401:7;7441:26;7434:5;7430:38;7419:49;;7365:109;;;:::o;7480:115::-;7565:23;7582:5;7565:23;:::i;:::-;7560:3;7553:36;7480:115;;:::o;7601:218::-;7692:4;7730:2;7719:9;7715:18;7707:26;;7743:69;7809:1;7798:9;7794:17;7785:6;7743:69;:::i;:::-;7601:218;;;;:::o;7825:117::-;7934:1;7931;7924:12;7948:117;8057:1;8054;8047:12;8071:180;8119:77;8116:1;8109:88;8216:4;8213:1;8206:15;8240:4;8237:1;8230:15;8257:281;8340:27;8362:4;8340:27;:::i;:::-;8332:6;8328:40;8470:6;8458:10;8455:22;8434:18;8422:10;8419:34;8416:62;8413:88;;;8481:18;;:::i;:::-;8413:88;8521:10;8517:2;8510:22;8300:238;8257:281;;:::o;8544:129::-;8578:6;8605:20;;:::i;:::-;8595:30;;8634:33;8662:4;8654:6;8634:33;:::i;:::-;8544:129;;;:::o;8679:308::-;8741:4;8831:18;8823:6;8820:30;8817:56;;;8853:18;;:::i;:::-;8817:56;8891:29;8913:6;8891:29;:::i;:::-;8883:37;;8975:4;8969;8965:15;8957:23;;8679:308;;;:::o;8993:146::-;9090:6;9085:3;9080;9067:30;9131:1;9122:6;9117:3;9113:16;9106:27;8993:146;;;:::o;9145:425::-;9223:5;9248:66;9264:49;9306:6;9264:49;:::i;:::-;9248:66;:::i;:::-;9239:75;;9337:6;9330:5;9323:21;9375:4;9368:5;9364:16;9413:3;9404:6;9399:3;9395:16;9392:25;9389:112;;;9420:79;;:::i;:::-;9389:112;9510:54;9557:6;9552:3;9547;9510:54;:::i;:::-;9229:341;9145:425;;;;;:::o;9590:340::-;9646:5;9695:3;9688:4;9680:6;9676:17;9672:27;9662:122;;9703:79;;:::i;:::-;9662:122;9820:6;9807:20;9845:79;9920:3;9912:6;9905:4;9897:6;9893:17;9845:79;:::i;:::-;9836:88;;9652:278;9590:340;;;;:::o;9936:509::-;10005:6;10054:2;10042:9;10033:7;10029:23;10025:32;10022:119;;;10060:79;;:::i;:::-;10022:119;10208:1;10197:9;10193:17;10180:31;10238:18;10230:6;10227:30;10224:117;;;10260:79;;:::i;:::-;10224:117;10365:63;10420:7;10411:6;10400:9;10396:22;10365:63;:::i;:::-;10355:73;;10151:287;9936:509;;;;:::o;10451:329::-;10510:6;10559:2;10547:9;10538:7;10534:23;10530:32;10527:119;;;10565:79;;:::i;:::-;10527:119;10685:1;10710:53;10755:7;10746:6;10735:9;10731:22;10710:53;:::i;:::-;10700:63;;10656:117;10451:329;;;;:::o;10786:311::-;10863:4;10953:18;10945:6;10942:30;10939:56;;;10975:18;;:::i;:::-;10939:56;11025:4;11017:6;11013:17;11005:25;;11085:4;11079;11075:15;11067:23;;10786:311;;;:::o;11103:117::-;11212:1;11209;11202:12;11243:710;11339:5;11364:81;11380:64;11437:6;11380:64;:::i;:::-;11364:81;:::i;:::-;11355:90;;11465:5;11494:6;11487:5;11480:21;11528:4;11521:5;11517:16;11510:23;;11581:4;11573:6;11569:17;11561:6;11557:30;11610:3;11602:6;11599:15;11596:122;;;11629:79;;:::i;:::-;11596:122;11744:6;11727:220;11761:6;11756:3;11753:15;11727:220;;;11836:3;11865:37;11898:3;11886:10;11865:37;:::i;:::-;11860:3;11853:50;11932:4;11927:3;11923:14;11916:21;;11803:144;11787:4;11782:3;11778:14;11771:21;;11727:220;;;11731:21;11345:608;;11243:710;;;;;:::o;11976:370::-;12047:5;12096:3;12089:4;12081:6;12077:17;12073:27;12063:122;;12104:79;;:::i;:::-;12063:122;12221:6;12208:20;12246:94;12336:3;12328:6;12321:4;12313:6;12309:17;12246:94;:::i;:::-;12237:103;;12053:293;11976:370;;;;:::o;12352:539::-;12436:6;12485:2;12473:9;12464:7;12460:23;12456:32;12453:119;;;12491:79;;:::i;:::-;12453:119;12639:1;12628:9;12624:17;12611:31;12669:18;12661:6;12658:30;12655:117;;;12691:79;;:::i;:::-;12655:117;12796:78;12866:7;12857:6;12846:9;12842:22;12796:78;:::i;:::-;12786:88;;12582:302;12352:539;;;;:::o;12897:116::-;12967:21;12982:5;12967:21;:::i;:::-;12960:5;12957:32;12947:60;;13003:1;13000;12993:12;12947:60;12897:116;:::o;13019:133::-;13062:5;13100:6;13087:20;13078:29;;13116:30;13140:5;13116:30;:::i;:::-;13019:133;;;;:::o;13158:468::-;13223:6;13231;13280:2;13268:9;13259:7;13255:23;13251:32;13248:119;;;13286:79;;:::i;:::-;13248:119;13406:1;13431:53;13476:7;13467:6;13456:9;13452:22;13431:53;:::i;:::-;13421:63;;13377:117;13533:2;13559:50;13601:7;13592:6;13581:9;13577:22;13559:50;:::i;:::-;13549:60;;13504:115;13158:468;;;;;:::o;13632:307::-;13693:4;13783:18;13775:6;13772:30;13769:56;;;13805:18;;:::i;:::-;13769:56;13843:29;13865:6;13843:29;:::i;:::-;13835:37;;13927:4;13921;13917:15;13909:23;;13632:307;;;:::o;13945:423::-;14022:5;14047:65;14063:48;14104:6;14063:48;:::i;:::-;14047:65;:::i;:::-;14038:74;;14135:6;14128:5;14121:21;14173:4;14166:5;14162:16;14211:3;14202:6;14197:3;14193:16;14190:25;14187:112;;;14218:79;;:::i;:::-;14187:112;14308:54;14355:6;14350:3;14345;14308:54;:::i;:::-;14028:340;13945:423;;;;;:::o;14387:338::-;14442:5;14491:3;14484:4;14476:6;14472:17;14468:27;14458:122;;14499:79;;:::i;:::-;14458:122;14616:6;14603:20;14641:78;14715:3;14707:6;14700:4;14692:6;14688:17;14641:78;:::i;:::-;14632:87;;14448:277;14387:338;;;;:::o;14731:943::-;14826:6;14834;14842;14850;14899:3;14887:9;14878:7;14874:23;14870:33;14867:120;;;14906:79;;:::i;:::-;14867:120;15026:1;15051:53;15096:7;15087:6;15076:9;15072:22;15051:53;:::i;:::-;15041:63;;14997:117;15153:2;15179:53;15224:7;15215:6;15204:9;15200:22;15179:53;:::i;:::-;15169:63;;15124:118;15281:2;15307:53;15352:7;15343:6;15332:9;15328:22;15307:53;:::i;:::-;15297:63;;15252:118;15437:2;15426:9;15422:18;15409:32;15468:18;15460:6;15457:30;15454:117;;;15490:79;;:::i;:::-;15454:117;15595:62;15649:7;15640:6;15629:9;15625:22;15595:62;:::i;:::-;15585:72;;15380:287;14731:943;;;;;;;:::o;15680:180::-;15728:77;15725:1;15718:88;15825:4;15822:1;15815:15;15849:4;15846:1;15839:15;15866:124;15958:1;15951:5;15948:12;15938:46;;15964:18;;:::i;:::-;15938:46;15866:124;:::o;15996:149::-;16052:7;16081:5;16070:16;;16087:52;16133:5;16087:52;:::i;:::-;15996:149;;;:::o;16151:::-;16218:9;16251:43;16288:5;16251:43;:::i;:::-;16238:56;;16151:149;;;:::o;16306:165::-;16410:54;16458:5;16410:54;:::i;:::-;16405:3;16398:67;16306:165;;:::o;16477:256::-;16587:4;16625:2;16614:9;16610:18;16602:26;;16638:88;16723:1;16712:9;16708:17;16699:6;16638:88;:::i;:::-;16477:256;;;;:::o;16739:474::-;16807:6;16815;16864:2;16852:9;16843:7;16839:23;16835:32;16832:119;;;16870:79;;:::i;:::-;16832:119;16990:1;17015:53;17060:7;17051:6;17040:9;17036:22;17015:53;:::i;:::-;17005:63;;16961:117;17117:2;17143:53;17188:7;17179:6;17168:9;17164:22;17143:53;:::i;:::-;17133:63;;17088:118;16739:474;;;;;:::o;17219:180::-;17267:77;17264:1;17257:88;17364:4;17361:1;17354:15;17388:4;17385:1;17378:15;17405:320;17449:6;17486:1;17480:4;17476:12;17466:22;;17533:1;17527:4;17523:12;17554:18;17544:81;;17610:4;17602:6;17598:17;17588:27;;17544:81;17672:2;17664:6;17661:14;17641:18;17638:38;17635:84;;17691:18;;:::i;:::-;17635:84;17456:269;17405:320;;;:::o;17731:180::-;17779:77;17776:1;17769:88;17876:4;17873:1;17866:15;17900:4;17897:1;17890:15;17917:410;17957:7;17980:20;17998:1;17980:20;:::i;:::-;17975:25;;18014:20;18032:1;18014:20;:::i;:::-;18009:25;;18069:1;18066;18062:9;18091:30;18109:11;18091:30;:::i;:::-;18080:41;;18270:1;18261:7;18257:15;18254:1;18251:22;18231:1;18224:9;18204:83;18181:139;;18300:18;;:::i;:::-;18181:139;17965:362;17917:410;;;;:::o;18333:180::-;18381:77;18378:1;18371:88;18478:4;18475:1;18468:15;18502:4;18499:1;18492:15;18519:185;18559:1;18576:20;18594:1;18576:20;:::i;:::-;18571:25;;18610:20;18628:1;18610:20;:::i;:::-;18605:25;;18649:1;18639:35;;18654:18;;:::i;:::-;18639:35;18696:1;18693;18689:9;18684:14;;18519:185;;;;:::o;18710:181::-;18850:33;18846:1;18838:6;18834:14;18827:57;18710:181;:::o;18897:366::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:419::-;19435:4;19473:2;19462:9;19458:18;19450:26;;19522:9;19516:4;19512:20;19508:1;19497:9;19493:17;19486:47;19550:131;19676:4;19550:131;:::i;:::-;19542:139;;19269:419;;;:::o;19694:162::-;19834:14;19830:1;19822:6;19818:14;19811:38;19694:162;:::o;19862:366::-;20004:3;20025:67;20089:2;20084:3;20025:67;:::i;:::-;20018:74;;20101:93;20190:3;20101:93;:::i;:::-;20219:2;20214:3;20210:12;20203:19;;19862:366;;;:::o;20234:419::-;20400:4;20438:2;20427:9;20423:18;20415:26;;20487:9;20481:4;20477:20;20473:1;20462:9;20458:17;20451:47;20515:131;20641:4;20515:131;:::i;:::-;20507:139;;20234:419;;;:::o;20659:191::-;20699:3;20718:20;20736:1;20718:20;:::i;:::-;20713:25;;20752:20;20770:1;20752:20;:::i;:::-;20747:25;;20795:1;20792;20788:9;20781:16;;20816:3;20813:1;20810:10;20807:36;;;20823:18;;:::i;:::-;20807:36;20659:191;;;;:::o;20856:168::-;20996:20;20992:1;20984:6;20980:14;20973:44;20856:168;:::o;21030:366::-;21172:3;21193:67;21257:2;21252:3;21193:67;:::i;:::-;21186:74;;21269:93;21358:3;21269:93;:::i;:::-;21387:2;21382:3;21378:12;21371:19;;21030:366;;;:::o;21402:419::-;21568:4;21606:2;21595:9;21591:18;21583:26;;21655:9;21649:4;21645:20;21641:1;21630:9;21626:17;21619:47;21683:131;21809:4;21683:131;:::i;:::-;21675:139;;21402:419;;;:::o;21827:167::-;21967:19;21963:1;21955:6;21951:14;21944:43;21827:167;:::o;22000:366::-;22142:3;22163:67;22227:2;22222:3;22163:67;:::i;:::-;22156:74;;22239:93;22328:3;22239:93;:::i;:::-;22357:2;22352:3;22348:12;22341:19;;22000:366;;;:::o;22372:419::-;22538:4;22576:2;22565:9;22561:18;22553:26;;22625:9;22619:4;22615:20;22611:1;22600:9;22596:17;22589:47;22653:131;22779:4;22653:131;:::i;:::-;22645:139;;22372:419;;;:::o;22797:168::-;22937:20;22933:1;22925:6;22921:14;22914:44;22797:168;:::o;22971:366::-;23113:3;23134:67;23198:2;23193:3;23134:67;:::i;:::-;23127:74;;23210:93;23299:3;23210:93;:::i;:::-;23328:2;23323:3;23319:12;23312:19;;22971:366;;;:::o;23343:419::-;23509:4;23547:2;23536:9;23532:18;23524:26;;23596:9;23590:4;23586:20;23582:1;23571:9;23567:17;23560:47;23624:131;23750:4;23624:131;:::i;:::-;23616:139;;23343:419;;;:::o;23768:177::-;23908:29;23904:1;23896:6;23892:14;23885:53;23768:177;:::o;23951:366::-;24093:3;24114:67;24178:2;24173:3;24114:67;:::i;:::-;24107:74;;24190:93;24279:3;24190:93;:::i;:::-;24308:2;24303:3;24299:12;24292:19;;23951:366;;;:::o;24323:419::-;24489:4;24527:2;24516:9;24512:18;24504:26;;24576:9;24570:4;24566:20;24562:1;24551:9;24547:17;24540:47;24604:131;24730:4;24604:131;:::i;:::-;24596:139;;24323:419;;;:::o;24748:147::-;24849:11;24886:3;24871:18;;24748:147;;;;:::o;24901:114::-;;:::o;25021:398::-;25180:3;25201:83;25282:1;25277:3;25201:83;:::i;:::-;25194:90;;25293:93;25382:3;25293:93;:::i;:::-;25411:1;25406:3;25402:11;25395:18;;25021:398;;;:::o;25425:379::-;25609:3;25631:147;25774:3;25631:147;:::i;:::-;25624:154;;25795:3;25788:10;;25425:379;;;:::o;25810:166::-;25950:18;25946:1;25938:6;25934:14;25927:42;25810:166;:::o;25982:366::-;26124:3;26145:67;26209:2;26204:3;26145:67;:::i;:::-;26138:74;;26221:93;26310:3;26221:93;:::i;:::-;26339:2;26334:3;26330:12;26323:19;;25982:366;;;:::o;26354:419::-;26520:4;26558:2;26547:9;26543:18;26535:26;;26607:9;26601:4;26597:20;26593:1;26582:9;26578:17;26571:47;26635:131;26761:4;26635:131;:::i;:::-;26627:139;;26354:419;;;:::o;26779:141::-;26828:4;26851:3;26843:11;;26874:3;26871:1;26864:14;26908:4;26905:1;26895:18;26887:26;;26779:141;;;:::o;26926:93::-;26963:6;27010:2;27005;26998:5;26994:14;26990:23;26980:33;;26926:93;;;:::o;27025:107::-;27069:8;27119:5;27113:4;27109:16;27088:37;;27025:107;;;;:::o;27138:393::-;27207:6;27257:1;27245:10;27241:18;27280:97;27310:66;27299:9;27280:97;:::i;:::-;27398:39;27428:8;27417:9;27398:39;:::i;:::-;27386:51;;27470:4;27466:9;27459:5;27455:21;27446:30;;27519:4;27509:8;27505:19;27498:5;27495:30;27485:40;;27214:317;;27138:393;;;;;:::o;27537:60::-;27565:3;27586:5;27579:12;;27537:60;;;:::o;27603:142::-;27653:9;27686:53;27704:34;27713:24;27731:5;27713:24;:::i;:::-;27704:34;:::i;:::-;27686:53;:::i;:::-;27673:66;;27603:142;;;:::o;27751:75::-;27794:3;27815:5;27808:12;;27751:75;;;:::o;27832:269::-;27942:39;27973:7;27942:39;:::i;:::-;28003:91;28052:41;28076:16;28052:41;:::i;:::-;28044:6;28037:4;28031:11;28003:91;:::i;:::-;27997:4;27990:105;27908:193;27832:269;;;:::o;28107:73::-;28152:3;28107:73;:::o;28186:189::-;28263:32;;:::i;:::-;28304:65;28362:6;28354;28348:4;28304:65;:::i;:::-;28239:136;28186:189;;:::o;28381:186::-;28441:120;28458:3;28451:5;28448:14;28441:120;;;28512:39;28549:1;28542:5;28512:39;:::i;:::-;28485:1;28478:5;28474:13;28465:22;;28441:120;;;28381:186;;:::o;28573:543::-;28674:2;28669:3;28666:11;28663:446;;;28708:38;28740:5;28708:38;:::i;:::-;28792:29;28810:10;28792:29;:::i;:::-;28782:8;28778:44;28975:2;28963:10;28960:18;28957:49;;;28996:8;28981:23;;28957:49;29019:80;29075:22;29093:3;29075:22;:::i;:::-;29065:8;29061:37;29048:11;29019:80;:::i;:::-;28678:431;;28663:446;28573:543;;;:::o;29122:117::-;29176:8;29226:5;29220:4;29216:16;29195:37;;29122:117;;;;:::o;29245:169::-;29289:6;29322:51;29370:1;29366:6;29358:5;29355:1;29351:13;29322:51;:::i;:::-;29318:56;29403:4;29397;29393:15;29383:25;;29296:118;29245:169;;;;:::o;29419:295::-;29495:4;29641:29;29666:3;29660:4;29641:29;:::i;:::-;29633:37;;29703:3;29700:1;29696:11;29690:4;29687:21;29679:29;;29419:295;;;;:::o;29719:1395::-;29836:37;29869:3;29836:37;:::i;:::-;29938:18;29930:6;29927:30;29924:56;;;29960:18;;:::i;:::-;29924:56;30004:38;30036:4;30030:11;30004:38;:::i;:::-;30089:67;30149:6;30141;30135:4;30089:67;:::i;:::-;30183:1;30207:4;30194:17;;30239:2;30231:6;30228:14;30256:1;30251:618;;;;30913:1;30930:6;30927:77;;;30979:9;30974:3;30970:19;30964:26;30955:35;;30927:77;31030:67;31090:6;31083:5;31030:67;:::i;:::-;31024:4;31017:81;30886:222;30221:887;;30251:618;30303:4;30299:9;30291:6;30287:22;30337:37;30369:4;30337:37;:::i;:::-;30396:1;30410:208;30424:7;30421:1;30418:14;30410:208;;;30503:9;30498:3;30494:19;30488:26;30480:6;30473:42;30554:1;30546:6;30542:14;30532:24;;30601:2;30590:9;30586:18;30573:31;;30447:4;30444:1;30440:12;30435:17;;30410:208;;;30646:6;30637:7;30634:19;30631:179;;;30704:9;30699:3;30695:19;30689:26;30747:48;30789:4;30781:6;30777:17;30766:9;30747:48;:::i;:::-;30739:6;30732:64;30654:156;30631:179;30856:1;30852;30844:6;30840:14;30836:22;30830:4;30823:36;30258:611;;;30221:887;;29811:1303;;;29719:1395;;:::o;31120:180::-;31168:77;31165:1;31158:88;31265:4;31262:1;31255:15;31289:4;31286:1;31279:15;31306:234;31446:34;31442:1;31434:6;31430:14;31423:58;31515:17;31510:2;31502:6;31498:15;31491:42;31306:234;:::o;31546:366::-;31688:3;31709:67;31773:2;31768:3;31709:67;:::i;:::-;31702:74;;31785:93;31874:3;31785:93;:::i;:::-;31903:2;31898:3;31894:12;31887:19;;31546:366;;;:::o;31918:419::-;32084:4;32122:2;32111:9;32107:18;32099:26;;32171:9;32165:4;32161:20;32157:1;32146:9;32142:17;32135:47;32199:131;32325:4;32199:131;:::i;:::-;32191:139;;31918:419;;;:::o;32343:148::-;32445:11;32482:3;32467:18;;32343:148;;;;:::o;32497:390::-;32603:3;32631:39;32664:5;32631:39;:::i;:::-;32686:89;32768:6;32763:3;32686:89;:::i;:::-;32679:96;;32784:65;32842:6;32837:3;32830:4;32823:5;32819:16;32784:65;:::i;:::-;32874:6;32869:3;32865:16;32858:23;;32607:280;32497:390;;;;:::o;32917:874::-;33020:3;33057:5;33051:12;33086:36;33112:9;33086:36;:::i;:::-;33138:89;33220:6;33215:3;33138:89;:::i;:::-;33131:96;;33258:1;33247:9;33243:17;33274:1;33269:166;;;;33449:1;33444:341;;;;33236:549;;33269:166;33353:4;33349:9;33338;33334:25;33329:3;33322:38;33415:6;33408:14;33401:22;33393:6;33389:35;33384:3;33380:45;33373:52;;33269:166;;33444:341;33511:38;33543:5;33511:38;:::i;:::-;33571:1;33585:154;33599:6;33596:1;33593:13;33585:154;;;33673:7;33667:14;33663:1;33658:3;33654:11;33647:35;33723:1;33714:7;33710:15;33699:26;;33621:4;33618:1;33614:12;33609:17;;33585:154;;;33768:6;33763:3;33759:16;33752:23;;33451:334;;33236:549;;33024:767;;32917:874;;;;:::o;33797:589::-;34022:3;34044:95;34135:3;34126:6;34044:95;:::i;:::-;34037:102;;34156:95;34247:3;34238:6;34156:95;:::i;:::-;34149:102;;34268:92;34356:3;34347:6;34268:92;:::i;:::-;34261:99;;34377:3;34370:10;;33797:589;;;;;;:::o;34392:194::-;34432:4;34452:20;34470:1;34452:20;:::i;:::-;34447:25;;34486:20;34504:1;34486:20;:::i;:::-;34481:25;;34530:1;34527;34523:9;34515:17;;34554:1;34548:4;34545:11;34542:37;;;34559:18;;:::i;:::-;34542:37;34392:194;;;;:::o;34592:225::-;34732:34;34728:1;34720:6;34716:14;34709:58;34801:8;34796:2;34788:6;34784:15;34777:33;34592:225;:::o;34823:366::-;34965:3;34986:67;35050:2;35045:3;34986:67;:::i;:::-;34979:74;;35062:93;35151:3;35062:93;:::i;:::-;35180:2;35175:3;35171:12;35164:19;;34823:366;;;:::o;35195:419::-;35361:4;35399:2;35388:9;35384:18;35376:26;;35448:9;35442:4;35438:20;35434:1;35423:9;35419:17;35412:47;35476:131;35602:4;35476:131;:::i;:::-;35468:139;;35195:419;;;:::o;35620:182::-;35760:34;35756:1;35748:6;35744:14;35737:58;35620:182;:::o;35808:366::-;35950:3;35971:67;36035:2;36030:3;35971:67;:::i;:::-;35964:74;;36047:93;36136:3;36047:93;:::i;:::-;36165:2;36160:3;36156:12;36149:19;;35808:366;;;:::o;36180:419::-;36346:4;36384:2;36373:9;36369:18;36361:26;;36433:9;36427:4;36423:20;36419:1;36408:9;36404:17;36397:47;36461:131;36587:4;36461:131;:::i;:::-;36453:139;;36180:419;;;:::o;36605:98::-;36656:6;36690:5;36684:12;36674:22;;36605:98;;;:::o;36709:168::-;36792:11;36826:6;36821:3;36814:19;36866:4;36861:3;36857:14;36842:29;;36709:168;;;;:::o;36883:373::-;36969:3;36997:38;37029:5;36997:38;:::i;:::-;37051:70;37114:6;37109:3;37051:70;:::i;:::-;37044:77;;37130:65;37188:6;37183:3;37176:4;37169:5;37165:16;37130:65;:::i;:::-;37220:29;37242:6;37220:29;:::i;:::-;37215:3;37211:39;37204:46;;36973:283;36883:373;;;;:::o;37262:640::-;37457:4;37495:3;37484:9;37480:19;37472:27;;37509:71;37577:1;37566:9;37562:17;37553:6;37509:71;:::i;:::-;37590:72;37658:2;37647:9;37643:18;37634:6;37590:72;:::i;:::-;37672;37740:2;37729:9;37725:18;37716:6;37672:72;:::i;:::-;37791:9;37785:4;37781:20;37776:2;37765:9;37761:18;37754:48;37819:76;37890:4;37881:6;37819:76;:::i;:::-;37811:84;;37262:640;;;;;;;:::o;37908:141::-;37964:5;37995:6;37989:13;37980:22;;38011:32;38037:5;38011:32;:::i;:::-;37908:141;;;;:::o;38055:349::-;38124:6;38173:2;38161:9;38152:7;38148:23;38144:32;38141:119;;;38179:79;;:::i;:::-;38141:119;38299:1;38324:63;38379:7;38370:6;38359:9;38355:22;38324:63;:::i;:::-;38314:73;;38270:127;38055:349;;;;:::o;38410:233::-;38449:3;38472:24;38490:5;38472:24;:::i;:::-;38463:33;;38518:66;38511:5;38508:77;38505:103;;38588:18;;:::i;:::-;38505:103;38635:1;38628:5;38624:13;38617:20;;38410:233;;;:::o;38649:176::-;38681:1;38698:20;38716:1;38698:20;:::i;:::-;38693:25;;38732:20;38750:1;38732:20;:::i;:::-;38727:25;;38771:1;38761:35;;38776:18;;:::i;:::-;38761:35;38817:1;38814;38810:9;38805:14;;38649:176;;;;:::o

Swarm Source

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