ETH Price: $3,080.35 (-6.76%)
Gas: 8 Gwei

Token

SpringfieldPunks (SPUNKS)
 

Overview

Max Total Supply

3,405 SPUNKS

Holders

1,178

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A spooky FREE minting experience is live during the Simpsons’ Treehouse of Horror XXXIV episode!!! Introducing Springfield Punks from the mind of Simpsons parody artist Rino Russo.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpringfieldPunks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 *Submitted for verification at Etherscan.io on 2022-09-12
*/

// 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 SpringfieldPunks is Ownable, ERC721A, ERC2981, ReentrancyGuard {

    ContractStatus public CONTRACT_STATUS = ContractStatus.disable;

    uint96 public immutable ROYALTY_FEE_NUMERATOR = 750;

    uint256 public immutable MAX_FREE_PER_WALLET = 1;
    uint256 public immutable MAX_TX_PER_WALLET = 100;
    uint256 public immutable PRICE = 0.01 ether;
    uint256 public immutable TOTAL_SUPPLY = 3405;
    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("SpringfieldPunks", "SPUNKS") {
        _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"
        );

        _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 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 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":"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":"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"}]

6101206040526000600c60006101000a81548160ff021916908360018111156200002e576200002d62000567565b5b02179055506102ee6bffffffffffffffffffffffff166080906bffffffffffffffffffffffff16815250600160a090815250606460c090815250662386f26fc1000060e090815250610d4d610100908152506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000cd929190620004b7565b5060405180602001604052806000815250600e9080519060200190620000f5929190620004b7565b503480156200010357600080fd5b506040518060400160405280601081526020017f537072696e676669656c6450756e6b73000000000000000000000000000000008152506040518060400160405280600681526020017f5350554e4b53000000000000000000000000000000000000000000000000000081525062000190620001846200020b60201b60201c565b6200021360201b60201c565b8160039080519060200190620001a8929190620004b7565b508060049080519060200190620001c1929190620004b7565b50620001d2620002d760201b60201c565b60018190555050506001600b8190555062000205620001f6620002e060201b60201c565b6080516200030960201b60201c565b62000716565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000319620004ad60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200037a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000371906200061d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e4906200068f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b828054620004c590620006e0565b90600052602060002090601f016020900481019282620004e9576000855562000535565b82601f106200050457805160ff191683800117855562000535565b8280016001018555821562000535579182015b828111156200053457825182559160200191906001019062000517565b5b50905062000544919062000548565b5090565b5b808211156200056357600081600090555060010162000549565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000605602a8362000596565b91506200061282620005a7565b604082019050919050565b600060208201905081810360008301526200063881620005f6565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006200067760198362000596565b915062000684826200063f565b602082019050919050565b60006020820190508181036000830152620006aa8162000668565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006f957607f821691505b6020821081141562000710576200070f620006b1565b5b50919050565b60805160a05160c05160e05161010051613ad76200078c600039600081816110310152818161146d015281816118940152611c560152600081816118470152818161215501526121860152600081816110a7015261194a01526000818161196e0152612129015260006115a70152613ad76000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d57806398710d1e116100a0578063bf7b779c1161006f578063bf7b779c146106cb578063c87b56dd146106f6578063defcbacb14610733578063e985e9c51461075e578063f2fde38b1461079b576101ee565b806398710d1e146106115780639a9c1bb11461063c578063a22cb46514610679578063b88d4fde146106a2576101ee565b80638da5cb5b116100dc5780638da5cb5b14610565578063902d55a51461059057806395d89b41146105bb578063975e840e146105e6576101ee565b806370a08231146104cf578063715018a61461050c578063853828b6146105235780638d859f3e1461053a576101ee565b80632e1a7d4d116101855780635503a0e8116101545780635503a0e81461041357806355850fe61461043e57806355f804b3146104695780636352211e14610492576101ee565b80632e1a7d4d1461036f5780632e49d78b1461039857806335001a1a146103c157806342842e0e146103ea576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632a55205a146103155780632db1154414610353576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906129a6565b6107c4565b60405161022791906129ee565b60405180910390f35b34801561023c57600080fd5b506102456107f6565b6040516102529190612aa2565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612afa565b610888565b60405161028f9190612b68565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612baf565b610907565b005b3480156102cd57600080fd5b506102d6610a4b565b6040516102e39190612bfe565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612c19565b610a62565b005b34801561032157600080fd5b5061033c60048036038101906103379190612c6c565b610d87565b60405161034a929190612cac565b60405180910390f35b61036d60048036038101906103689190612afa565b610f72565b005b34801561037b57600080fd5b5061039660048036038101906103919190612afa565b6111f5565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612cfa565b611371565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190612baf565b6113a6565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612c19565b6114f7565b005b34801561041f57600080fd5b50610428611517565b6040516104359190612aa2565b60405180910390f35b34801561044a57600080fd5b506104536115a5565b6040516104609190612d4e565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612e9e565b6115c9565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612afa565b6115eb565b6040516104c69190612b68565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612ee7565b6115fd565b6040516105039190612bfe565b60405180910390f35b34801561051857600080fd5b506105216116b6565b005b34801561052f57600080fd5b506105386116ca565b005b34801561054657600080fd5b5061054f611845565b60405161055c9190612bfe565b60405180910390f35b34801561057157600080fd5b5061057a611869565b6040516105879190612b68565b60405180910390f35b34801561059c57600080fd5b506105a5611892565b6040516105b29190612bfe565b60405180910390f35b3480156105c757600080fd5b506105d06118b6565b6040516105dd9190612aa2565b60405180910390f35b3480156105f257600080fd5b506105fb611948565b6040516106089190612bfe565b60405180910390f35b34801561061d57600080fd5b5061062661196c565b6040516106339190612bfe565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612ee7565b611990565b6040516106709190612bfe565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190612f40565b6119a2565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613021565b611b1a565b005b3480156106d757600080fd5b506106e0611b8d565b6040516106ed919061311b565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190612afa565b611ba0565b60405161072a9190612aa2565b60405180910390f35b34801561073f57600080fd5b50610748611c4a565b6040516107559190612bfe565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613136565b611c84565b60405161079291906129ee565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612ee7565b611d18565b005b60006107cf82611d9c565b806107df57506107de82611e2e565b5b806107ef57506107ee82611e2e565b5b9050919050565b606060038054610805906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610831906131a5565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b600061089382611ea8565b6108c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610912826115eb565b90508073ffffffffffffffffffffffffffffffffffffffff16610933611f07565b73ffffffffffffffffffffffffffffffffffffffff16146109965761095f8161095a611f07565b611c84565b610995576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a55611f0f565b6002546001540303905090565b6000610a6d82611f18565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae084611fe6565b91509150610af68187610af1611f07565b61200d565b610b4257610b0b86610b06611f07565b611c84565b610b41576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb68686866001612051565b8015610bc157600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8f85610c6b888887612057565b7c02000000000000000000000000000000000000000000000000000000001761207f565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d17576000600185019050600060056000838152602001908152602001600020541415610d15576001548114610d14578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7f86868660016120aa565b505050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610f1d5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610f276120b0565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f539190613206565b610f5d919061328f565b90508160000151819350935050509250929050565b6002600b541415610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613378565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000081611059610a4b565b6110639190613398565b11156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061343a565b60405180910390fd5b817f0000000000000000000000000000000000000000000000000000000000000000816110d0336120ba565b6110da9190613398565b111561111b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611112906134a6565b60405180910390fd5b826111263382612111565b341015611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90613512565b60405180910390fd5b60018081111561117b5761117a6130a4565b5b600c60009054906101000a900460ff16600181111561119d5761119c6130a4565b5b146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061357e565b60405180910390fd5b6111e733856121b9565b5050506001600b8190555050565b6111fd612377565b6002600b541415611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613378565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516112df906135cf565b60006040518083038185875af1925050503d806000811461131c576040519150601f19603f3d011682016040523d82523d6000602084013e611321565b606091505b5050905080611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613630565b60405180910390fd5b506001600b8190555050565b611379612377565b80600c60006101000a81548160ff0219169083600181111561139e5761139d6130a4565b5b021790555050565b6113ae612377565b6002600b5414156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190613378565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000081611495610a4b565b61149f9190613398565b11156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d79061343a565b60405180910390fd5b6114ea83836121b9565b506001600b819055505050565b61151283838360405180602001604052806000815250611b1a565b505050565b600d8054611524906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611550906131a5565b801561159d5780601f106115725761010080835404028352916020019161159d565b820191906000526020600020905b81548152906001019060200180831161158057829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6115d1612377565b80600e90805190602001906115e7929190612897565b5050565b60006115f682611f18565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611665576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116be612377565b6116c860006123f5565b565b6116d2612377565b6002600b541415611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613378565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516117b4906135cf565b60006040518083038185875af1925050503d80600081146117f1576040519150601f19603f3d011682016040523d82523d6000602084013e6117f6565b606091505b505090508061183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613630565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546118c5906131a5565b80601f01602080910402602001604051908101604052809291908181526020018280546118f1906131a5565b801561193e5780601f106119135761010080835404028352916020019161193e565b820191906000526020600020905b81548152906001019060200180831161192157829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061199b826120ba565b9050919050565b6119aa611f07565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611a1c611f07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac9611f07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0e91906129ee565b60405180910390a35050565b611b25848484610a62565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b8757611b50848484846124b9565b611b86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c60009054906101000a900460ff1681565b6060611bab82611ea8565b611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be1906136c2565b60405180910390fd5b6000611bf4612619565b90506000815111611c145760405180602001604052806000815250611c42565b80611c1e846126ab565b600d604051602001611c32939291906137b2565b6040516020818303038152906040525b915050919050565b6000611c54610a4b565b7f0000000000000000000000000000000000000000000000000000000000000000611c7f91906137e3565b905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d20612377565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613889565b60405180910390fd5b611d99816123f5565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e275750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ea15750611ea08261280c565b5b9050919050565b600081611eb3611f0f565b11158015611ec2575060015482105b8015611f00575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611f27611f0f565b11611faf57600154811015611fae5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fac575b6000811415611fa2576005600083600190039350838152602001908152602001600020549050611f77565b8092505050611fe1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861206e868684612876565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080600061211f856120ba565b11905080612183577f00000000000000000000000000000000000000000000000000000000000000008361215391906137e3565b7f000000000000000000000000000000000000000000000000000000000000000061217e9190613206565b6121b0565b827f00000000000000000000000000000000000000000000000000000000000000006121af9190613206565b5b91505092915050565b6000600154905060008214156121fb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122086000848385612051565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227f836122706000866000612057565b6122798561287f565b1761207f565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461232057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e5565b50600082141561235c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061237260008483856120aa565b505050565b61237f61288f565b73ffffffffffffffffffffffffffffffffffffffff1661239d611869565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea906138f5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124df611f07565b8786866040518563ffffffff1660e01b8152600401612501949392919061396a565b602060405180830381600087803b15801561251b57600080fd5b505af192505050801561254c57506040513d601f19601f8201168201806040525081019061254991906139cb565b60015b6125c6573d806000811461257c576040519150601f19603f3d011682016040523d82523d6000602084013e612581565b606091505b506000815114156125be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612628906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612654906131a5565b80156126a15780601f10612676576101008083540402835291602001916126a1565b820191906000526020600020905b81548152906001019060200180831161268457829003601f168201915b5050505050905090565b606060008214156126f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612807565b600082905060005b6000821461272557808061270e906139f8565b915050600a8261271e919061328f565b91506126fb565b60008167ffffffffffffffff81111561274157612740612d73565b5b6040519080825280601f01601f1916602001820160405280156127735781602001600182028036833780820191505090505b5090505b600085146128005760018261278c91906137e3565b9150600a8561279b9190613a41565b60306127a79190613398565b60f81b8183815181106127bd576127bc613a72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127f9919061328f565b9450612777565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b8280546128a3906131a5565b90600052602060002090601f0160209004810192826128c5576000855561290c565b82601f106128de57805160ff191683800117855561290c565b8280016001018555821561290c579182015b8281111561290b5782518255916020019190600101906128f0565b5b509050612919919061291d565b5090565b5b8082111561293657600081600090555060010161291e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129838161294e565b811461298e57600080fd5b50565b6000813590506129a08161297a565b92915050565b6000602082840312156129bc576129bb612944565b5b60006129ca84828501612991565b91505092915050565b60008115159050919050565b6129e8816129d3565b82525050565b6000602082019050612a0360008301846129df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a43578082015181840152602081019050612a28565b83811115612a52576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a7482612a09565b612a7e8185612a14565b9350612a8e818560208601612a25565b612a9781612a58565b840191505092915050565b60006020820190508181036000830152612abc8184612a69565b905092915050565b6000819050919050565b612ad781612ac4565b8114612ae257600080fd5b50565b600081359050612af481612ace565b92915050565b600060208284031215612b1057612b0f612944565b5b6000612b1e84828501612ae5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b5282612b27565b9050919050565b612b6281612b47565b82525050565b6000602082019050612b7d6000830184612b59565b92915050565b612b8c81612b47565b8114612b9757600080fd5b50565b600081359050612ba981612b83565b92915050565b60008060408385031215612bc657612bc5612944565b5b6000612bd485828601612b9a565b9250506020612be585828601612ae5565b9150509250929050565b612bf881612ac4565b82525050565b6000602082019050612c136000830184612bef565b92915050565b600080600060608486031215612c3257612c31612944565b5b6000612c4086828701612b9a565b9350506020612c5186828701612b9a565b9250506040612c6286828701612ae5565b9150509250925092565b60008060408385031215612c8357612c82612944565b5b6000612c9185828601612ae5565b9250506020612ca285828601612ae5565b9150509250929050565b6000604082019050612cc16000830185612b59565b612cce6020830184612bef565b9392505050565b60028110612ce257600080fd5b50565b600081359050612cf481612cd5565b92915050565b600060208284031215612d1057612d0f612944565b5b6000612d1e84828501612ce5565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b612d4881612d27565b82525050565b6000602082019050612d636000830184612d3f565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dab82612a58565b810181811067ffffffffffffffff82111715612dca57612dc9612d73565b5b80604052505050565b6000612ddd61293a565b9050612de98282612da2565b919050565b600067ffffffffffffffff821115612e0957612e08612d73565b5b612e1282612a58565b9050602081019050919050565b82818337600083830152505050565b6000612e41612e3c84612dee565b612dd3565b905082815260208101848484011115612e5d57612e5c612d6e565b5b612e68848285612e1f565b509392505050565b600082601f830112612e8557612e84612d69565b5b8135612e95848260208601612e2e565b91505092915050565b600060208284031215612eb457612eb3612944565b5b600082013567ffffffffffffffff811115612ed257612ed1612949565b5b612ede84828501612e70565b91505092915050565b600060208284031215612efd57612efc612944565b5b6000612f0b84828501612b9a565b91505092915050565b612f1d816129d3565b8114612f2857600080fd5b50565b600081359050612f3a81612f14565b92915050565b60008060408385031215612f5757612f56612944565b5b6000612f6585828601612b9a565b9250506020612f7685828601612f2b565b9150509250929050565b600067ffffffffffffffff821115612f9b57612f9a612d73565b5b612fa482612a58565b9050602081019050919050565b6000612fc4612fbf84612f80565b612dd3565b905082815260208101848484011115612fe057612fdf612d6e565b5b612feb848285612e1f565b509392505050565b600082601f83011261300857613007612d69565b5b8135613018848260208601612fb1565b91505092915050565b6000806000806080858703121561303b5761303a612944565b5b600061304987828801612b9a565b945050602061305a87828801612b9a565b935050604061306b87828801612ae5565b925050606085013567ffffffffffffffff81111561308c5761308b612949565b5b61309887828801612ff3565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600281106130e4576130e36130a4565b5b50565b60008190506130f5826130d3565b919050565b6000613105826130e7565b9050919050565b613115816130fa565b82525050565b6000602082019050613130600083018461310c565b92915050565b6000806040838503121561314d5761314c612944565b5b600061315b85828601612b9a565b925050602061316c85828601612b9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131bd57607f821691505b602082108114156131d1576131d0613176565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321182612ac4565b915061321c83612ac4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613255576132546131d7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061329a82612ac4565b91506132a583612ac4565b9250826132b5576132b4613260565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006132f6601f83612a14565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f496e76616c696420557365720000000000000000000000000000000000000000600082015250565b6000613362600c83612a14565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b60006133a382612ac4565b91506133ae83612ac4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133e3576133e26131d7565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613424601283612a14565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b6000613490601183612a14565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006134fc601283612a14565b9150613507826134c6565b602082019050919050565b6000602082019050818103600083015261352b816134ef565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e742073746167650000000000600082015250565b6000613568601b83612a14565b915061357382613532565b602082019050919050565b600060208201905081810360008301526135978161355b565b9050919050565b600081905092915050565b50565b60006135b960008361359e565b91506135c4826135a9565b600082019050919050565b60006135da826135ac565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061361a601083612a14565b9150613625826135e4565b602082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136ac602f83612a14565b91506136b782613650565b604082019050919050565b600060208201905081810360008301526136db8161369f565b9050919050565b600081905092915050565b60006136f882612a09565b61370281856136e2565b9350613712818560208601612a25565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613740816131a5565b61374a81866136e2565b945060018216600081146137655760018114613776576137a9565b60ff198316865281860193506137a9565b61377f8561371e565b60005b838110156137a157815481890152600182019150602081019050613782565b838801955050505b50505092915050565b60006137be82866136ed565b91506137ca82856136ed565b91506137d68284613733565b9150819050949350505050565b60006137ee82612ac4565b91506137f983612ac4565b92508282101561380c5761380b6131d7565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613873602683612a14565b915061387e82613817565b604082019050919050565b600060208201905081810360008301526138a281613866565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138df602083612a14565b91506138ea826138a9565b602082019050919050565b6000602082019050818103600083015261390e816138d2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061393c82613915565b6139468185613920565b9350613956818560208601612a25565b61395f81612a58565b840191505092915050565b600060808201905061397f6000830187612b59565b61398c6020830186612b59565b6139996040830185612bef565b81810360608301526139ab8184613931565b905095945050505050565b6000815190506139c58161297a565b92915050565b6000602082840312156139e1576139e0612944565b5b60006139ef848285016139b6565b91505092915050565b6000613a0382612ac4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3657613a356131d7565b5b600182019050919050565b6000613a4c82612ac4565b9150613a5783612ac4565b925082613a6757613a66613260565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e94fc6d6fcade4fd155f27911cd5620ec1749d9239b215b4a200cdb488ad2ae164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d57806398710d1e116100a0578063bf7b779c1161006f578063bf7b779c146106cb578063c87b56dd146106f6578063defcbacb14610733578063e985e9c51461075e578063f2fde38b1461079b576101ee565b806398710d1e146106115780639a9c1bb11461063c578063a22cb46514610679578063b88d4fde146106a2576101ee565b80638da5cb5b116100dc5780638da5cb5b14610565578063902d55a51461059057806395d89b41146105bb578063975e840e146105e6576101ee565b806370a08231146104cf578063715018a61461050c578063853828b6146105235780638d859f3e1461053a576101ee565b80632e1a7d4d116101855780635503a0e8116101545780635503a0e81461041357806355850fe61461043e57806355f804b3146104695780636352211e14610492576101ee565b80632e1a7d4d1461036f5780632e49d78b1461039857806335001a1a146103c157806342842e0e146103ea576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632a55205a146103155780632db1154414610353576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906129a6565b6107c4565b60405161022791906129ee565b60405180910390f35b34801561023c57600080fd5b506102456107f6565b6040516102529190612aa2565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612afa565b610888565b60405161028f9190612b68565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612baf565b610907565b005b3480156102cd57600080fd5b506102d6610a4b565b6040516102e39190612bfe565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612c19565b610a62565b005b34801561032157600080fd5b5061033c60048036038101906103379190612c6c565b610d87565b60405161034a929190612cac565b60405180910390f35b61036d60048036038101906103689190612afa565b610f72565b005b34801561037b57600080fd5b5061039660048036038101906103919190612afa565b6111f5565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612cfa565b611371565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190612baf565b6113a6565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612c19565b6114f7565b005b34801561041f57600080fd5b50610428611517565b6040516104359190612aa2565b60405180910390f35b34801561044a57600080fd5b506104536115a5565b6040516104609190612d4e565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612e9e565b6115c9565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612afa565b6115eb565b6040516104c69190612b68565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612ee7565b6115fd565b6040516105039190612bfe565b60405180910390f35b34801561051857600080fd5b506105216116b6565b005b34801561052f57600080fd5b506105386116ca565b005b34801561054657600080fd5b5061054f611845565b60405161055c9190612bfe565b60405180910390f35b34801561057157600080fd5b5061057a611869565b6040516105879190612b68565b60405180910390f35b34801561059c57600080fd5b506105a5611892565b6040516105b29190612bfe565b60405180910390f35b3480156105c757600080fd5b506105d06118b6565b6040516105dd9190612aa2565b60405180910390f35b3480156105f257600080fd5b506105fb611948565b6040516106089190612bfe565b60405180910390f35b34801561061d57600080fd5b5061062661196c565b6040516106339190612bfe565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612ee7565b611990565b6040516106709190612bfe565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190612f40565b6119a2565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613021565b611b1a565b005b3480156106d757600080fd5b506106e0611b8d565b6040516106ed919061311b565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190612afa565b611ba0565b60405161072a9190612aa2565b60405180910390f35b34801561073f57600080fd5b50610748611c4a565b6040516107559190612bfe565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613136565b611c84565b60405161079291906129ee565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612ee7565b611d18565b005b60006107cf82611d9c565b806107df57506107de82611e2e565b5b806107ef57506107ee82611e2e565b5b9050919050565b606060038054610805906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610831906131a5565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b600061089382611ea8565b6108c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610912826115eb565b90508073ffffffffffffffffffffffffffffffffffffffff16610933611f07565b73ffffffffffffffffffffffffffffffffffffffff16146109965761095f8161095a611f07565b611c84565b610995576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a55611f0f565b6002546001540303905090565b6000610a6d82611f18565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae084611fe6565b91509150610af68187610af1611f07565b61200d565b610b4257610b0b86610b06611f07565b611c84565b610b41576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb68686866001612051565b8015610bc157600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8f85610c6b888887612057565b7c02000000000000000000000000000000000000000000000000000000001761207f565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d17576000600185019050600060056000838152602001908152602001600020541415610d15576001548114610d14578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7f86868660016120aa565b505050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610f1d5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610f276120b0565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f539190613206565b610f5d919061328f565b90508160000151819350935050509250929050565b6002600b541415610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613378565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000d4d81611059610a4b565b6110639190613398565b11156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061343a565b60405180910390fd5b817f0000000000000000000000000000000000000000000000000000000000000064816110d0336120ba565b6110da9190613398565b111561111b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611112906134a6565b60405180910390fd5b826111263382612111565b341015611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90613512565b60405180910390fd5b60018081111561117b5761117a6130a4565b5b600c60009054906101000a900460ff16600181111561119d5761119c6130a4565b5b146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061357e565b60405180910390fd5b6111e733856121b9565b5050506001600b8190555050565b6111fd612377565b6002600b541415611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613378565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516112df906135cf565b60006040518083038185875af1925050503d806000811461131c576040519150601f19603f3d011682016040523d82523d6000602084013e611321565b606091505b5050905080611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613630565b60405180910390fd5b506001600b8190555050565b611379612377565b80600c60006101000a81548160ff0219169083600181111561139e5761139d6130a4565b5b021790555050565b6113ae612377565b6002600b5414156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190613378565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000d4d81611495610a4b565b61149f9190613398565b11156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d79061343a565b60405180910390fd5b6114ea83836121b9565b506001600b819055505050565b61151283838360405180602001604052806000815250611b1a565b505050565b600d8054611524906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611550906131a5565b801561159d5780601f106115725761010080835404028352916020019161159d565b820191906000526020600020905b81548152906001019060200180831161158057829003601f168201915b505050505081565b7f00000000000000000000000000000000000000000000000000000000000002ee81565b6115d1612377565b80600e90805190602001906115e7929190612897565b5050565b60006115f682611f18565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611665576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116be612377565b6116c860006123f5565b565b6116d2612377565b6002600b541415611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f9061330c565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613378565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516117b4906135cf565b60006040518083038185875af1925050503d80600081146117f1576040519150601f19603f3d011682016040523d82523d6000602084013e6117f6565b606091505b505090508061183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613630565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000002386f26fc1000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000000000000000000000000000000000000000000d4d81565b6060600480546118c5906131a5565b80601f01602080910402602001604051908101604052809291908181526020018280546118f1906131a5565b801561193e5780601f106119135761010080835404028352916020019161193e565b820191906000526020600020905b81548152906001019060200180831161192157829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000006481565b7f000000000000000000000000000000000000000000000000000000000000000181565b600061199b826120ba565b9050919050565b6119aa611f07565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611a1c611f07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac9611f07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0e91906129ee565b60405180910390a35050565b611b25848484610a62565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b8757611b50848484846124b9565b611b86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c60009054906101000a900460ff1681565b6060611bab82611ea8565b611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be1906136c2565b60405180910390fd5b6000611bf4612619565b90506000815111611c145760405180602001604052806000815250611c42565b80611c1e846126ab565b600d604051602001611c32939291906137b2565b6040516020818303038152906040525b915050919050565b6000611c54610a4b565b7f0000000000000000000000000000000000000000000000000000000000000d4d611c7f91906137e3565b905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d20612377565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613889565b60405180910390fd5b611d99816123f5565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e275750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ea15750611ea08261280c565b5b9050919050565b600081611eb3611f0f565b11158015611ec2575060015482105b8015611f00575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611f27611f0f565b11611faf57600154811015611fae5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fac575b6000811415611fa2576005600083600190039350838152602001908152602001600020549050611f77565b8092505050611fe1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861206e868684612876565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080600061211f856120ba565b11905080612183577f00000000000000000000000000000000000000000000000000000000000000018361215391906137e3565b7f000000000000000000000000000000000000000000000000002386f26fc1000061217e9190613206565b6121b0565b827f000000000000000000000000000000000000000000000000002386f26fc100006121af9190613206565b5b91505092915050565b6000600154905060008214156121fb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122086000848385612051565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227f836122706000866000612057565b6122798561287f565b1761207f565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461232057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e5565b50600082141561235c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061237260008483856120aa565b505050565b61237f61288f565b73ffffffffffffffffffffffffffffffffffffffff1661239d611869565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea906138f5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124df611f07565b8786866040518563ffffffff1660e01b8152600401612501949392919061396a565b602060405180830381600087803b15801561251b57600080fd5b505af192505050801561254c57506040513d601f19601f8201168201806040525081019061254991906139cb565b60015b6125c6573d806000811461257c576040519150601f19603f3d011682016040523d82523d6000602084013e612581565b606091505b506000815114156125be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612628906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612654906131a5565b80156126a15780601f10612676576101008083540402835291602001916126a1565b820191906000526020600020905b81548152906001019060200180831161268457829003601f168201915b5050505050905090565b606060008214156126f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612807565b600082905060005b6000821461272557808061270e906139f8565b915050600a8261271e919061328f565b91506126fb565b60008167ffffffffffffffff81111561274157612740612d73565b5b6040519080825280601f01601f1916602001820160405280156127735781602001600182028036833780820191505090505b5090505b600085146128005760018261278c91906137e3565b9150600a8561279b9190613a41565b60306127a79190613398565b60f81b8183815181106127bd576127bc613a72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127f9919061328f565b9450612777565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b8280546128a3906131a5565b90600052602060002090601f0160209004810192826128c5576000855561290c565b82601f106128de57805160ff191683800117855561290c565b8280016001018555821561290c579182015b8281111561290b5782518255916020019190600101906128f0565b5b509050612919919061291d565b5090565b5b8082111561293657600081600090555060010161291e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129838161294e565b811461298e57600080fd5b50565b6000813590506129a08161297a565b92915050565b6000602082840312156129bc576129bb612944565b5b60006129ca84828501612991565b91505092915050565b60008115159050919050565b6129e8816129d3565b82525050565b6000602082019050612a0360008301846129df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a43578082015181840152602081019050612a28565b83811115612a52576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a7482612a09565b612a7e8185612a14565b9350612a8e818560208601612a25565b612a9781612a58565b840191505092915050565b60006020820190508181036000830152612abc8184612a69565b905092915050565b6000819050919050565b612ad781612ac4565b8114612ae257600080fd5b50565b600081359050612af481612ace565b92915050565b600060208284031215612b1057612b0f612944565b5b6000612b1e84828501612ae5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b5282612b27565b9050919050565b612b6281612b47565b82525050565b6000602082019050612b7d6000830184612b59565b92915050565b612b8c81612b47565b8114612b9757600080fd5b50565b600081359050612ba981612b83565b92915050565b60008060408385031215612bc657612bc5612944565b5b6000612bd485828601612b9a565b9250506020612be585828601612ae5565b9150509250929050565b612bf881612ac4565b82525050565b6000602082019050612c136000830184612bef565b92915050565b600080600060608486031215612c3257612c31612944565b5b6000612c4086828701612b9a565b9350506020612c5186828701612b9a565b9250506040612c6286828701612ae5565b9150509250925092565b60008060408385031215612c8357612c82612944565b5b6000612c9185828601612ae5565b9250506020612ca285828601612ae5565b9150509250929050565b6000604082019050612cc16000830185612b59565b612cce6020830184612bef565b9392505050565b60028110612ce257600080fd5b50565b600081359050612cf481612cd5565b92915050565b600060208284031215612d1057612d0f612944565b5b6000612d1e84828501612ce5565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b612d4881612d27565b82525050565b6000602082019050612d636000830184612d3f565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dab82612a58565b810181811067ffffffffffffffff82111715612dca57612dc9612d73565b5b80604052505050565b6000612ddd61293a565b9050612de98282612da2565b919050565b600067ffffffffffffffff821115612e0957612e08612d73565b5b612e1282612a58565b9050602081019050919050565b82818337600083830152505050565b6000612e41612e3c84612dee565b612dd3565b905082815260208101848484011115612e5d57612e5c612d6e565b5b612e68848285612e1f565b509392505050565b600082601f830112612e8557612e84612d69565b5b8135612e95848260208601612e2e565b91505092915050565b600060208284031215612eb457612eb3612944565b5b600082013567ffffffffffffffff811115612ed257612ed1612949565b5b612ede84828501612e70565b91505092915050565b600060208284031215612efd57612efc612944565b5b6000612f0b84828501612b9a565b91505092915050565b612f1d816129d3565b8114612f2857600080fd5b50565b600081359050612f3a81612f14565b92915050565b60008060408385031215612f5757612f56612944565b5b6000612f6585828601612b9a565b9250506020612f7685828601612f2b565b9150509250929050565b600067ffffffffffffffff821115612f9b57612f9a612d73565b5b612fa482612a58565b9050602081019050919050565b6000612fc4612fbf84612f80565b612dd3565b905082815260208101848484011115612fe057612fdf612d6e565b5b612feb848285612e1f565b509392505050565b600082601f83011261300857613007612d69565b5b8135613018848260208601612fb1565b91505092915050565b6000806000806080858703121561303b5761303a612944565b5b600061304987828801612b9a565b945050602061305a87828801612b9a565b935050604061306b87828801612ae5565b925050606085013567ffffffffffffffff81111561308c5761308b612949565b5b61309887828801612ff3565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600281106130e4576130e36130a4565b5b50565b60008190506130f5826130d3565b919050565b6000613105826130e7565b9050919050565b613115816130fa565b82525050565b6000602082019050613130600083018461310c565b92915050565b6000806040838503121561314d5761314c612944565b5b600061315b85828601612b9a565b925050602061316c85828601612b9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131bd57607f821691505b602082108114156131d1576131d0613176565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321182612ac4565b915061321c83612ac4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613255576132546131d7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061329a82612ac4565b91506132a583612ac4565b9250826132b5576132b4613260565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006132f6601f83612a14565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f496e76616c696420557365720000000000000000000000000000000000000000600082015250565b6000613362600c83612a14565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b60006133a382612ac4565b91506133ae83612ac4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133e3576133e26131d7565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613424601283612a14565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b6000613490601183612a14565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006134fc601283612a14565b9150613507826134c6565b602082019050919050565b6000602082019050818103600083015261352b816134ef565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e742073746167650000000000600082015250565b6000613568601b83612a14565b915061357382613532565b602082019050919050565b600060208201905081810360008301526135978161355b565b9050919050565b600081905092915050565b50565b60006135b960008361359e565b91506135c4826135a9565b600082019050919050565b60006135da826135ac565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061361a601083612a14565b9150613625826135e4565b602082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136ac602f83612a14565b91506136b782613650565b604082019050919050565b600060208201905081810360008301526136db8161369f565b9050919050565b600081905092915050565b60006136f882612a09565b61370281856136e2565b9350613712818560208601612a25565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613740816131a5565b61374a81866136e2565b945060018216600081146137655760018114613776576137a9565b60ff198316865281860193506137a9565b61377f8561371e565b60005b838110156137a157815481890152600182019150602081019050613782565b838801955050505b50505092915050565b60006137be82866136ed565b91506137ca82856136ed565b91506137d68284613733565b9150819050949350505050565b60006137ee82612ac4565b91506137f983612ac4565b92508282101561380c5761380b6131d7565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613873602683612a14565b915061387e82613817565b604082019050919050565b600060208201905081810360008301526138a281613866565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138df602083612a14565b91506138ea826138a9565b602082019050919050565b6000602082019050818103600083015261390e816138d2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061393c82613915565b6139468185613920565b9350613956818560208601612a25565b61395f81612a58565b840191505092915050565b600060808201905061397f6000830187612b59565b61398c6020830186612b59565b6139996040830185612bef565b81810360608301526139ab8184613931565b905095945050505050565b6000815190506139c58161297a565b92915050565b6000602082840312156139e1576139e0612944565b5b60006139ef848285016139b6565b91505092915050565b6000613a0382612ac4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3657613a356131d7565b5b600182019050919050565b6000613a4c82612ac4565b9150613a5783612ac4565b925082613a6757613a66613260565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e94fc6d6fcade4fd155f27911cd5620ec1749d9239b215b4a200cdb488ad2ae164736f6c63430008090033

Deployed Bytecode Sourcemap

66471:4107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69482:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21526:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28009:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27450:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17277:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31716:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60276:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;68166:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70174:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68851:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67929:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34629:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66894:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66623:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68739:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22919:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18461:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65549:103;;;;;;;;;;;;;:::i;:::-;;70377:198;;;;;;;;;;;;;:::i;:::-;;66793:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64901:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66843:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21702:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66738:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66683;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68586:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28567:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35412:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66552:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69072:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67691:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29032:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65807:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69482:344;69630:4;69672:38;69698:11;69672:25;:38::i;:::-;:93;;;;69727:38;69753:11;69727:25;:38::i;:::-;69672:93;:146;;;;69782:36;69806:11;69782:23;:36::i;:::-;69672:146;69652:166;;69482:344;;;:::o;21526:100::-;21580:13;21613:5;21606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21526:100;:::o;28009:218::-;28085:7;28110:16;28118:7;28110;:16::i;:::-;28105:64;;28135:34;;;;;;;;;;;;;;28105:64;28189:15;:24;28205:7;28189:24;;;;;;;;;;;:30;;;;;;;;;;;;28182:37;;28009:218;;;:::o;27450:400::-;27531:13;27547:16;27555:7;27547;:16::i;:::-;27531:32;;27603:5;27580:28;;:19;:17;:19::i;:::-;:28;;;27576:175;;27628:44;27645:5;27652:19;:17;:19::i;:::-;27628:16;:44::i;:::-;27623:128;;27700:35;;;;;;;;;;;;;;27623:128;27576:175;27796:2;27763:15;:24;27779:7;27763:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27834:7;27830:2;27814:28;;27823:5;27814:28;;;;;;;;;;;;27520:330;27450:400;;:::o;17277:323::-;17338:7;17566:15;:13;:15::i;:::-;17551:12;;17535:13;;:28;:46;17528:53;;17277:323;:::o;31716:2817::-;31850:27;31880;31899:7;31880:18;:27::i;:::-;31850:57;;31965:4;31924:45;;31940:19;31924:45;;;31920:86;;31978:28;;;;;;;;;;;;;;31920:86;32020:27;32049:23;32076:35;32103:7;32076:26;:35::i;:::-;32019:92;;;;32211:68;32236:15;32253:4;32259:19;:17;:19::i;:::-;32211:24;:68::i;:::-;32206:180;;32299:43;32316:4;32322:19;:17;:19::i;:::-;32299:16;:43::i;:::-;32294:92;;32351:35;;;;;;;;;;;;;;32294:92;32206:180;32417:1;32403:16;;:2;:16;;;32399:52;;;32428:23;;;;;;;;;;;;;;32399:52;32464:43;32486:4;32492:2;32496:7;32505:1;32464:21;:43::i;:::-;32600:15;32597:160;;;32740:1;32719:19;32712:30;32597:160;33137:18;:24;33156:4;33137:24;;;;;;;;;;;;;;;;33135:26;;;;;;;;;;;;33206:18;:22;33225:2;33206:22;;;;;;;;;;;;;;;;33204:24;;;;;;;;;;;33528:146;33565:2;33614:45;33629:4;33635:2;33639:19;33614:14;:45::i;:::-;13676:8;33586:73;33528:18;:146::i;:::-;33499:17;:26;33517:7;33499:26;;;;;;;;;;;:175;;;;33845:1;13676:8;33794:19;:47;:52;33790:627;;;33867:19;33899:1;33889:7;:11;33867:33;;34056:1;34022:17;:30;34040:11;34022:30;;;;;;;;;;;;:35;34018:384;;;34160:13;;34145:11;:28;34141:242;;34340:19;34307:17;:30;34325:11;34307:30;;;;;;;;;;;:52;;;;34141:242;34018:384;33848:569;33790:627;34464:7;34460:2;34445:27;;34454:4;34445:27;;;;;;;;;;;;34483:42;34504:4;34510:2;34514:7;34523:1;34483:20;:42::i;:::-;31839:2694;;;31716:2817;;;:::o;60276:442::-;60373:7;60382;60402:26;60431:17;:27;60449:8;60431:27;;;;;;;;;;;60402:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60503:1;60475:30;;:7;:16;;;:30;;;60471:92;;;60532:19;60522:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60471:92;60575:21;60640:17;:15;:17::i;:::-;60599:58;;60613:7;:23;;;60600:36;;:10;:36;;;;:::i;:::-;60599:58;;;;:::i;:::-;60575:82;;60678:7;:16;;;60696:13;60670:40;;;;;;60276:442;;;;;:::o;68166:412::-;54829:1;55427:7;;:19;;55419:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54829:1;55560:7;:18;;;;67507:10:::1;67494:23;;:9;:23;;;67486:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;68321:8:::2;67394:12;67382:8;67366:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;67358:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;68355:8:::3;67233:17;67221:8;67193:25;67207:10;67193:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;67185:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;68389:8:::4;67047:34;67060:10;67072:8;67047:12;:34::i;:::-;67034:9;:47;;67026:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;68456:19:::5;68437:38:::0;::::5;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:38;;;;;;;;:::i;:::-;;;68415:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;68543:27;68549:10;68561:8;68543:5;:27::i;:::-;67283:1:::4;67440::::3;67545::::2;54785::::0;55739:7;:22;;;;68166:412;:::o;70174:195::-;64787:13;:11;:13::i;:::-;54829:1:::1;55427:7;;:19;;55419:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54829:1;55560:7;:18;;;;67507:10:::2;67494:23;;:9;:23;;;67486:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;70259:12:::3;70277:10;:15;;70300:7;70277:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70258:54;;;70333:7;70325:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;70247:122;54785:1:::1;55739:7;:22;;;;70174:195:::0;:::o;68851:104::-;64787:13;:11;:13::i;:::-;68941:6:::1;68923:15;;:24;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;68851:104:::0;:::o;67929:229::-;64787:13;:11;:13::i;:::-;54829:1:::1;55427:7;;:19;;55419:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54829:1;55560:7;:18;;;;67507:10:::2;67494:23;;:9;:23;;;67486:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;68095:8:::3;67394:12;67382:8;67366:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;67358:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;68121:29:::4;68127:12;68141:8;68121:5;:29::i;:::-;67545:1:::3;54785::::1;55739:7;:22;;;;67929:229:::0;;:::o;34629:185::-;34767:39;34784:4;34790:2;34794:7;34767:39;;;;;;;;;;;;:16;:39::i;:::-;34629:185;;;:::o;66894:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66623:51::-;;;:::o;68739:104::-;64787:13;:11;:13::i;:::-;68829:6:::1;68819:7;:16;;;;;;;;;;;;:::i;:::-;;68739:104:::0;:::o;22919:152::-;22991:7;23034:27;23053:7;23034:18;:27::i;:::-;23011:52;;22919:152;;;:::o;18461:233::-;18533:7;18574:1;18557:19;;:5;:19;;;18553:60;;;18585:28;;;;;;;;;;;;;;18553:60;12620:13;18631:18;:25;18650:5;18631:25;;;;;;;;;;;;;;;;:55;18624:62;;18461:233;;;:::o;65549:103::-;64787:13;:11;:13::i;:::-;65614:30:::1;65641:1;65614:18;:30::i;:::-;65549:103::o:0;70377:198::-;64787:13;:11;:13::i;:::-;54829:1:::1;55427:7;;:19;;55419:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54829:1;55560:7;:18;;;;67507:10:::2;67494:23;;:9;:23;;;67486:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;70451:12:::3;70469:10;:15;;70492:21;70469:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70450:68;;;70539:7;70531:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;70439:136;54785:1:::1;55739:7;:22;;;;70377:198::o:0;66793:43::-;;;:::o;64901:87::-;64947:7;64974:6;;;;;;;;;;;64967:13;;64901:87;:::o;66843:44::-;;;:::o;21702:104::-;21758:13;21791:7;21784:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21702:104;:::o;66738:48::-;;;:::o;66683:::-;;;:::o;68586:145::-;68672:7;68704:19;68718:4;68704:13;:19::i;:::-;68697:26;;68586:145;;;:::o;28567:308::-;28678:19;:17;:19::i;:::-;28666:31;;:8;:31;;;28662:61;;;28706:17;;;;;;;;;;;;;;28662:61;28788:8;28736:18;:39;28755:19;:17;:19::i;:::-;28736:39;;;;;;;;;;;;;;;:49;28776:8;28736:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28848:8;28812:55;;28827:19;:17;:19::i;:::-;28812:55;;;28858:8;28812:55;;;;;;:::i;:::-;;;;;;;;28567:308;;:::o;35412:399::-;35579:31;35592:4;35598:2;35602:7;35579:12;:31::i;:::-;35643:1;35625:2;:14;;;:19;35621:183;;35664:56;35695:4;35701:2;35705:7;35714:5;35664:30;:56::i;:::-;35659:145;;35748:40;;;;;;;;;;;;;;35659:145;35621:183;35412:399;;;;:::o;66552:62::-;;;;;;;;;;;;;:::o;69072:402::-;69146:13;69180:17;69188:8;69180:7;:17::i;:::-;69172:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;69262:28;69293:10;:8;:10::i;:::-;69262:41;;69352:1;69327:14;69321:28;:32;:145;;;;;;;;;;;;;;;;;69393:14;69409:26;69426:8;69409:16;:26::i;:::-;69437:9;69376:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69321:145;69314:152;;;69072:402;;;:::o;67691:114::-;67742:7;67784:13;:11;:13::i;:::-;67769:12;:28;;;;:::i;:::-;67762:35;;67691:114;:::o;29032:164::-;29129:4;29153:18;:25;29172:5;29153:25;;;;;;;;;;;;;;;:35;29179:8;29153:35;;;;;;;;;;;;;;;;;;;;;;;;;29146:42;;29032:164;;;;:::o;65807:201::-;64787:13;:11;:13::i;:::-;65916:1:::1;65896:22;;:8;:22;;;;65888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65972:28;65991:8;65972:18;:28::i;:::-;65807:201:::0;:::o;20624:639::-;20709:4;21048:10;21033:25;;:11;:25;;;;:102;;;;21125:10;21110:25;;:11;:25;;;;21033:102;:179;;;;21202:10;21187:25;;:11;:25;;;;21033:179;21013:199;;20624:639;;;:::o;60006:215::-;60108:4;60147:26;60132:41;;;:11;:41;;;;:81;;;;60177:36;60201:11;60177:23;:36::i;:::-;60132:81;60125:88;;60006:215;;;:::o;29454:282::-;29519:4;29575:7;29556:15;:13;:15::i;:::-;:26;;:66;;;;;29609:13;;29599:7;:23;29556:66;:153;;;;;29708:1;13396:8;29660:17;:26;29678:7;29660:26;;;;;;;;;;;;:44;:49;29556:153;29536:173;;29454:282;;;:::o;51220:105::-;51280:7;51307:10;51300:17;;51220:105;:::o;68963:101::-;69028:7;69055:1;69048:8;;68963:101;:::o;24074:1275::-;24141:7;24161:12;24176:7;24161:22;;24244:4;24225:15;:13;:15::i;:::-;:23;24221:1061;;24278:13;;24271:4;:20;24267:1015;;;24316:14;24333:17;:23;24351:4;24333:23;;;;;;;;;;;;24316:40;;24450:1;13396:8;24422:6;:24;:29;24418:845;;;25087:113;25104:1;25094:6;:11;25087:113;;;25147:17;:25;25165:6;;;;;;;25147:25;;;;;;;;;;;;25138:34;;25087:113;;;25233:6;25226:13;;;;;;24418:845;24293:989;24267:1015;24221:1061;25310:31;;;;;;;;;;;;;;24074:1275;;;;:::o;30617:479::-;30719:27;30748:23;30789:38;30830:15;:24;30846:7;30830:24;;;;;;;;;;;30789:65;;31001:18;30978:41;;31058:19;31052:26;31033:45;;30963:126;30617:479;;;:::o;29845:659::-;29994:11;30159:16;30152:5;30148:28;30139:37;;30319:16;30308:9;30304:32;30291:45;;30469:15;30458:9;30455:30;30447:5;30436:9;30433:20;30430:56;30420:66;;29845:659;;;;;:::o;36473:159::-;;;;;:::o;50529:311::-;50664:7;50684:16;13800:3;50710:19;:41;;50684:68;;13800:3;50778:31;50789:4;50795:2;50799:9;50778:10;:31::i;:::-;50770:40;;:62;;50763:69;;;50529:311;;;;;:::o;25897:450::-;25977:14;26145:16;26138:5;26134:28;26125:37;;26322:5;26308:11;26283:23;26279:41;26276:52;26269:5;26266:63;26256:73;;25897:450;;;;:::o;37297:158::-;;;;;:::o;61000:97::-;61058:6;61084:5;61077:12;;61000:97;:::o;18776:178::-;18837:7;12620:13;12758:2;18865:18;:25;18884:5;18865:25;;;;;;;;;;;;;;;;:50;;18864:82;18857:89;;18776:178;;;:::o;69834:332::-;69939:7;69964:20;70011:1;69987:21;70001:6;69987:13;:21::i;:::-;:25;69964:48;;70045:15;:113;;70138:19;70127:8;:30;;;;:::i;:::-;70118:5;:40;;;;:::i;:::-;70045:113;;;70089:8;70080:5;:18;;;;:::i;:::-;70045:113;70025:133;;;69834:332;;;;:::o;39073:2454::-;39146:20;39169:13;;39146:36;;39209:1;39197:8;:13;39193:44;;;39219:18;;;;;;;;;;;;;;39193:44;39250:61;39280:1;39284:2;39288:12;39302:8;39250:21;:61::i;:::-;39794:1;12758:2;39764:1;:26;;39763:32;39751:8;:45;39725:18;:22;39744:2;39725:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40073:139;40110:2;40164:33;40187:1;40191:2;40195:1;40164:14;:33::i;:::-;40131:30;40152:8;40131:20;:30::i;:::-;:66;40073:18;:139::i;:::-;40039:17;:31;40057:12;40039:31;;;;;;;;;;;:173;;;;40229:16;40260:11;40289:8;40274:12;:23;40260:37;;40544:16;40540:2;40536:25;40524:37;;40916:12;40876:8;40835:1;40773:25;40714:1;40653;40626:335;41041:1;41027:12;41023:20;40981:346;41082:3;41073:7;41070:16;40981:346;;41300:7;41290:8;41287:1;41260:25;41257:1;41254;41249:59;41135:1;41126:7;41122:15;41111:26;;40981:346;;;40985:77;41372:1;41360:8;:13;41356:45;;;41382:19;;;;;;;;;;;;;;41356:45;41434:3;41418:13;:19;;;;39499:1950;;41459:60;41488:1;41492:2;41496:12;41510:8;41459:20;:60::i;:::-;39135:2392;39073:2454;;:::o;65066:132::-;65141:12;:10;:12::i;:::-;65130:23;;:7;:5;:7::i;:::-;:23;;;65122:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65066:132::o;66168:191::-;66242:16;66261:6;;;;;;;;;;;66242:25;;66287:8;66278:6;;:17;;;;;;;;;;;;;;;;;;66342:8;66311:40;;66332:8;66311:40;;;;;;;;;;;;66231:128;66168:191;:::o;37895:716::-;38058:4;38104:2;38079:45;;;38125:19;:17;:19::i;:::-;38146:4;38152:7;38161:5;38079:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38075:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38379:1;38362:6;:13;:18;38358:235;;;38408:40;;;;;;;;;;;;;;38358:235;38551:6;38545:13;38536:6;38532:2;38528:15;38521:38;38075:529;38248:54;;;38238:64;;;:6;:64;;;;38231:71;;;37895:716;;;;;;:::o;67813:108::-;67873:13;67906:7;67899:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67813:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;57558:157::-;57643:4;57682:25;57667:40;;;:11;:40;;;;57660:47;;57558:157;;;:::o;50230:147::-;50367:6;50230:147;;;;;:::o;26449:324::-;26519:14;26752:1;26742:8;26739:15;26713:24;26709:46;26699:56;;26449:324;;;:::o;63452:98::-;63505:7;63532:10;63525:17;;63452:98;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518: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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:332::-;6516:4;6554:2;6543:9;6539:18;6531:26;;6567:71;6635:1;6624:9;6620:17;6611:6;6567:71;:::i;:::-;6648:72;6716:2;6705:9;6701:18;6692:6;6648:72;:::i;:::-;6395:332;;;;;:::o;6733:118::-;6825:1;6818:5;6815:12;6805:40;;6841:1;6838;6831:12;6805:40;6733:118;:::o;6857:177::-;6922:5;6960:6;6947:20;6938:29;;6976:52;7022:5;6976:52;:::i;:::-;6857:177;;;;:::o;7040:367::-;7118:6;7167:2;7155:9;7146:7;7142:23;7138:32;7135:119;;;7173:79;;:::i;:::-;7135:119;7293:1;7318:72;7382:7;7373:6;7362:9;7358:22;7318:72;:::i;:::-;7308:82;;7264:136;7040:367;;;;:::o;7413:109::-;7449:7;7489:26;7482:5;7478:38;7467:49;;7413:109;;;:::o;7528:115::-;7613:23;7630:5;7613:23;:::i;:::-;7608:3;7601:36;7528:115;;:::o;7649:218::-;7740:4;7778:2;7767:9;7763:18;7755:26;;7791:69;7857:1;7846:9;7842:17;7833:6;7791:69;:::i;:::-;7649:218;;;;:::o;7873:117::-;7982:1;7979;7972:12;7996:117;8105:1;8102;8095:12;8119:180;8167:77;8164:1;8157:88;8264:4;8261:1;8254:15;8288:4;8285:1;8278:15;8305:281;8388:27;8410:4;8388:27;:::i;:::-;8380:6;8376:40;8518:6;8506:10;8503:22;8482:18;8470:10;8467:34;8464:62;8461:88;;;8529:18;;:::i;:::-;8461:88;8569:10;8565:2;8558:22;8348:238;8305:281;;:::o;8592:129::-;8626:6;8653:20;;:::i;:::-;8643:30;;8682:33;8710:4;8702:6;8682:33;:::i;:::-;8592:129;;;:::o;8727:308::-;8789:4;8879:18;8871:6;8868:30;8865:56;;;8901:18;;:::i;:::-;8865:56;8939:29;8961:6;8939:29;:::i;:::-;8931:37;;9023:4;9017;9013:15;9005:23;;8727:308;;;:::o;9041:154::-;9125:6;9120:3;9115;9102:30;9187:1;9178:6;9173:3;9169:16;9162:27;9041:154;;;:::o;9201:412::-;9279:5;9304:66;9320:49;9362:6;9320:49;:::i;:::-;9304:66;:::i;:::-;9295:75;;9393:6;9386:5;9379:21;9431:4;9424:5;9420:16;9469:3;9460:6;9455:3;9451:16;9448:25;9445:112;;;9476:79;;:::i;:::-;9445:112;9566:41;9600:6;9595:3;9590;9566:41;:::i;:::-;9285:328;9201:412;;;;;:::o;9633:340::-;9689:5;9738:3;9731:4;9723:6;9719:17;9715:27;9705:122;;9746:79;;:::i;:::-;9705:122;9863:6;9850:20;9888:79;9963:3;9955:6;9948:4;9940:6;9936:17;9888:79;:::i;:::-;9879:88;;9695:278;9633:340;;;;:::o;9979:509::-;10048:6;10097:2;10085:9;10076:7;10072:23;10068:32;10065:119;;;10103:79;;:::i;:::-;10065:119;10251:1;10240:9;10236:17;10223:31;10281:18;10273:6;10270:30;10267:117;;;10303:79;;:::i;:::-;10267:117;10408:63;10463:7;10454:6;10443:9;10439:22;10408:63;:::i;:::-;10398:73;;10194:287;9979:509;;;;:::o;10494:329::-;10553:6;10602:2;10590:9;10581:7;10577:23;10573:32;10570:119;;;10608:79;;:::i;:::-;10570:119;10728:1;10753:53;10798:7;10789:6;10778:9;10774:22;10753:53;:::i;:::-;10743:63;;10699:117;10494:329;;;;:::o;10829:116::-;10899:21;10914:5;10899:21;:::i;:::-;10892:5;10889:32;10879:60;;10935:1;10932;10925:12;10879:60;10829:116;:::o;10951:133::-;10994:5;11032:6;11019:20;11010:29;;11048:30;11072:5;11048:30;:::i;:::-;10951:133;;;;:::o;11090:468::-;11155:6;11163;11212:2;11200:9;11191:7;11187:23;11183:32;11180:119;;;11218:79;;:::i;:::-;11180:119;11338:1;11363:53;11408:7;11399:6;11388:9;11384:22;11363:53;:::i;:::-;11353:63;;11309:117;11465:2;11491:50;11533:7;11524:6;11513:9;11509:22;11491:50;:::i;:::-;11481:60;;11436:115;11090:468;;;;;:::o;11564:307::-;11625:4;11715:18;11707:6;11704:30;11701:56;;;11737:18;;:::i;:::-;11701:56;11775:29;11797:6;11775:29;:::i;:::-;11767:37;;11859:4;11853;11849:15;11841:23;;11564:307;;;:::o;11877:410::-;11954:5;11979:65;11995:48;12036:6;11995:48;:::i;:::-;11979:65;:::i;:::-;11970:74;;12067:6;12060:5;12053:21;12105:4;12098:5;12094:16;12143:3;12134:6;12129:3;12125:16;12122:25;12119:112;;;12150:79;;:::i;:::-;12119:112;12240:41;12274:6;12269:3;12264;12240:41;:::i;:::-;11960:327;11877:410;;;;;:::o;12306:338::-;12361:5;12410:3;12403:4;12395:6;12391:17;12387:27;12377:122;;12418:79;;:::i;:::-;12377:122;12535:6;12522:20;12560:78;12634:3;12626:6;12619:4;12611:6;12607:17;12560:78;:::i;:::-;12551:87;;12367:277;12306:338;;;;:::o;12650:943::-;12745:6;12753;12761;12769;12818:3;12806:9;12797:7;12793:23;12789:33;12786:120;;;12825:79;;:::i;:::-;12786:120;12945:1;12970:53;13015:7;13006:6;12995:9;12991:22;12970:53;:::i;:::-;12960:63;;12916:117;13072:2;13098:53;13143:7;13134:6;13123:9;13119:22;13098:53;:::i;:::-;13088:63;;13043:118;13200:2;13226:53;13271:7;13262:6;13251:9;13247:22;13226:53;:::i;:::-;13216:63;;13171:118;13356:2;13345:9;13341:18;13328:32;13387:18;13379:6;13376:30;13373:117;;;13409:79;;:::i;:::-;13373:117;13514:62;13568:7;13559:6;13548:9;13544:22;13514:62;:::i;:::-;13504:72;;13299:287;12650:943;;;;;;;:::o;13599:180::-;13647:77;13644:1;13637:88;13744:4;13741:1;13734:15;13768:4;13765:1;13758:15;13785:124;13877:1;13870:5;13867:12;13857:46;;13883:18;;:::i;:::-;13857:46;13785:124;:::o;13915:149::-;13971:7;14000:5;13989:16;;14006:52;14052:5;14006:52;:::i;:::-;13915:149;;;:::o;14070:::-;14137:9;14170:43;14207:5;14170:43;:::i;:::-;14157:56;;14070:149;;;:::o;14225:165::-;14329:54;14377:5;14329:54;:::i;:::-;14324:3;14317:67;14225:165;;:::o;14396:256::-;14506:4;14544:2;14533:9;14529:18;14521:26;;14557:88;14642:1;14631:9;14627:17;14618:6;14557:88;:::i;:::-;14396:256;;;;:::o;14658:474::-;14726:6;14734;14783:2;14771:9;14762:7;14758:23;14754:32;14751:119;;;14789:79;;:::i;:::-;14751:119;14909:1;14934:53;14979:7;14970:6;14959:9;14955:22;14934:53;:::i;:::-;14924:63;;14880:117;15036:2;15062:53;15107:7;15098:6;15087:9;15083:22;15062:53;:::i;:::-;15052:63;;15007:118;14658:474;;;;;:::o;15138:180::-;15186:77;15183:1;15176:88;15283:4;15280:1;15273:15;15307:4;15304:1;15297:15;15324:320;15368:6;15405:1;15399:4;15395:12;15385:22;;15452:1;15446:4;15442:12;15473:18;15463:81;;15529:4;15521:6;15517:17;15507:27;;15463:81;15591:2;15583:6;15580:14;15560:18;15557:38;15554:84;;;15610:18;;:::i;:::-;15554:84;15375:269;15324:320;;;:::o;15650:180::-;15698:77;15695:1;15688:88;15795:4;15792:1;15785:15;15819:4;15816:1;15809:15;15836:348;15876:7;15899:20;15917:1;15899:20;:::i;:::-;15894:25;;15933:20;15951:1;15933:20;:::i;:::-;15928:25;;16121:1;16053:66;16049:74;16046:1;16043:81;16038:1;16031:9;16024:17;16020:105;16017:131;;;16128:18;;:::i;:::-;16017:131;16176:1;16173;16169:9;16158:20;;15836:348;;;;:::o;16190:180::-;16238:77;16235:1;16228:88;16335:4;16332:1;16325:15;16359:4;16356:1;16349:15;16376:185;16416:1;16433:20;16451:1;16433:20;:::i;:::-;16428:25;;16467:20;16485:1;16467:20;:::i;:::-;16462:25;;16506:1;16496:35;;16511:18;;:::i;:::-;16496:35;16553:1;16550;16546:9;16541:14;;16376:185;;;;:::o;16567:181::-;16707:33;16703:1;16695:6;16691:14;16684:57;16567:181;:::o;16754:366::-;16896:3;16917:67;16981:2;16976:3;16917:67;:::i;:::-;16910:74;;16993:93;17082:3;16993:93;:::i;:::-;17111:2;17106:3;17102:12;17095:19;;16754:366;;;:::o;17126:419::-;17292:4;17330:2;17319:9;17315:18;17307:26;;17379:9;17373:4;17369:20;17365:1;17354:9;17350:17;17343:47;17407:131;17533:4;17407:131;:::i;:::-;17399:139;;17126:419;;;:::o;17551:162::-;17691:14;17687:1;17679:6;17675:14;17668:38;17551:162;:::o;17719:366::-;17861:3;17882:67;17946:2;17941:3;17882:67;:::i;:::-;17875:74;;17958:93;18047:3;17958:93;:::i;:::-;18076:2;18071:3;18067:12;18060:19;;17719:366;;;:::o;18091:419::-;18257:4;18295:2;18284:9;18280:18;18272:26;;18344:9;18338:4;18334:20;18330:1;18319:9;18315:17;18308:47;18372:131;18498:4;18372:131;:::i;:::-;18364:139;;18091:419;;;:::o;18516:305::-;18556:3;18575:20;18593:1;18575:20;:::i;:::-;18570:25;;18609:20;18627:1;18609:20;:::i;:::-;18604:25;;18763:1;18695:66;18691:74;18688:1;18685:81;18682:107;;;18769:18;;:::i;:::-;18682:107;18813:1;18810;18806:9;18799:16;;18516:305;;;;:::o;18827:168::-;18967:20;18963:1;18955:6;18951:14;18944:44;18827:168;:::o;19001:366::-;19143:3;19164:67;19228:2;19223:3;19164:67;:::i;:::-;19157:74;;19240:93;19329:3;19240:93;:::i;:::-;19358:2;19353:3;19349:12;19342:19;;19001:366;;;:::o;19373:419::-;19539:4;19577:2;19566:9;19562:18;19554:26;;19626:9;19620:4;19616:20;19612:1;19601:9;19597:17;19590:47;19654:131;19780:4;19654:131;:::i;:::-;19646:139;;19373:419;;;:::o;19798:167::-;19938:19;19934:1;19926:6;19922:14;19915:43;19798:167;:::o;19971:366::-;20113:3;20134:67;20198:2;20193:3;20134:67;:::i;:::-;20127:74;;20210:93;20299:3;20210:93;:::i;:::-;20328:2;20323:3;20319:12;20312:19;;19971:366;;;:::o;20343:419::-;20509:4;20547:2;20536:9;20532:18;20524:26;;20596:9;20590:4;20586:20;20582:1;20571:9;20567:17;20560:47;20624:131;20750:4;20624:131;:::i;:::-;20616:139;;20343:419;;;:::o;20768:168::-;20908:20;20904:1;20896:6;20892:14;20885:44;20768:168;:::o;20942:366::-;21084:3;21105:67;21169:2;21164:3;21105:67;:::i;:::-;21098:74;;21181:93;21270:3;21181:93;:::i;:::-;21299:2;21294:3;21290:12;21283:19;;20942:366;;;:::o;21314:419::-;21480:4;21518:2;21507:9;21503:18;21495:26;;21567:9;21561:4;21557:20;21553:1;21542:9;21538:17;21531:47;21595:131;21721:4;21595:131;:::i;:::-;21587:139;;21314:419;;;:::o;21739:177::-;21879:29;21875:1;21867:6;21863:14;21856:53;21739:177;:::o;21922:366::-;22064:3;22085:67;22149:2;22144:3;22085:67;:::i;:::-;22078:74;;22161:93;22250:3;22161:93;:::i;:::-;22279:2;22274:3;22270:12;22263:19;;21922:366;;;:::o;22294:419::-;22460:4;22498:2;22487:9;22483:18;22475:26;;22547:9;22541:4;22537:20;22533:1;22522:9;22518:17;22511:47;22575:131;22701:4;22575:131;:::i;:::-;22567:139;;22294:419;;;:::o;22719:147::-;22820:11;22857:3;22842:18;;22719:147;;;;:::o;22872:114::-;;:::o;22992:398::-;23151:3;23172:83;23253:1;23248:3;23172:83;:::i;:::-;23165:90;;23264:93;23353:3;23264:93;:::i;:::-;23382:1;23377:3;23373:11;23366:18;;22992:398;;;:::o;23396:379::-;23580:3;23602:147;23745:3;23602:147;:::i;:::-;23595:154;;23766:3;23759:10;;23396:379;;;:::o;23781:166::-;23921:18;23917:1;23909:6;23905:14;23898:42;23781:166;:::o;23953:366::-;24095:3;24116:67;24180:2;24175:3;24116:67;:::i;:::-;24109:74;;24192:93;24281:3;24192:93;:::i;:::-;24310:2;24305:3;24301:12;24294:19;;23953:366;;;:::o;24325:419::-;24491:4;24529:2;24518:9;24514:18;24506:26;;24578:9;24572:4;24568:20;24564:1;24553:9;24549:17;24542:47;24606:131;24732:4;24606:131;:::i;:::-;24598:139;;24325:419;;;:::o;24750:234::-;24890:34;24886:1;24878:6;24874:14;24867:58;24959:17;24954:2;24946:6;24942:15;24935:42;24750:234;:::o;24990:366::-;25132:3;25153:67;25217:2;25212:3;25153:67;:::i;:::-;25146:74;;25229:93;25318:3;25229:93;:::i;:::-;25347:2;25342:3;25338:12;25331:19;;24990:366;;;:::o;25362:419::-;25528:4;25566:2;25555:9;25551:18;25543:26;;25615:9;25609:4;25605:20;25601:1;25590:9;25586:17;25579:47;25643:131;25769:4;25643:131;:::i;:::-;25635:139;;25362:419;;;:::o;25787:148::-;25889:11;25926:3;25911:18;;25787:148;;;;:::o;25941:377::-;26047:3;26075:39;26108:5;26075:39;:::i;:::-;26130:89;26212:6;26207:3;26130:89;:::i;:::-;26123:96;;26228:52;26273:6;26268:3;26261:4;26254:5;26250:16;26228:52;:::i;:::-;26305:6;26300:3;26296:16;26289:23;;26051:267;25941:377;;;;:::o;26324:141::-;26373:4;26396:3;26388:11;;26419:3;26416:1;26409:14;26453:4;26450:1;26440:18;26432:26;;26324:141;;;:::o;26495:845::-;26598:3;26635:5;26629:12;26664:36;26690:9;26664:36;:::i;:::-;26716:89;26798:6;26793:3;26716:89;:::i;:::-;26709:96;;26836:1;26825:9;26821:17;26852:1;26847:137;;;;26998:1;26993:341;;;;26814:520;;26847:137;26931:4;26927:9;26916;26912:25;26907:3;26900:38;26967:6;26962:3;26958:16;26951:23;;26847:137;;26993:341;27060:38;27092:5;27060:38;:::i;:::-;27120:1;27134:154;27148:6;27145:1;27142:13;27134:154;;;27222:7;27216:14;27212:1;27207:3;27203:11;27196:35;27272:1;27263:7;27259:15;27248:26;;27170:4;27167:1;27163:12;27158:17;;27134:154;;;27317:6;27312:3;27308:16;27301:23;;27000:334;;26814:520;;26602:738;;26495:845;;;;:::o;27346:589::-;27571:3;27593:95;27684:3;27675:6;27593:95;:::i;:::-;27586:102;;27705:95;27796:3;27787:6;27705:95;:::i;:::-;27698:102;;27817:92;27905:3;27896:6;27817:92;:::i;:::-;27810:99;;27926:3;27919:10;;27346:589;;;;;;:::o;27941:191::-;27981:4;28001:20;28019:1;28001:20;:::i;:::-;27996:25;;28035:20;28053:1;28035:20;:::i;:::-;28030:25;;28074:1;28071;28068:8;28065:34;;;28079:18;;:::i;:::-;28065:34;28124:1;28121;28117:9;28109:17;;27941:191;;;;:::o;28138:225::-;28278:34;28274:1;28266:6;28262:14;28255:58;28347:8;28342:2;28334:6;28330:15;28323:33;28138:225;:::o;28369:366::-;28511:3;28532:67;28596:2;28591:3;28532:67;:::i;:::-;28525:74;;28608:93;28697:3;28608:93;:::i;:::-;28726:2;28721:3;28717:12;28710:19;;28369:366;;;:::o;28741:419::-;28907:4;28945:2;28934:9;28930:18;28922:26;;28994:9;28988:4;28984:20;28980:1;28969:9;28965:17;28958:47;29022:131;29148:4;29022:131;:::i;:::-;29014:139;;28741:419;;;:::o;29166:182::-;29306:34;29302:1;29294:6;29290:14;29283:58;29166:182;:::o;29354:366::-;29496:3;29517:67;29581:2;29576:3;29517:67;:::i;:::-;29510:74;;29593:93;29682:3;29593:93;:::i;:::-;29711:2;29706:3;29702:12;29695:19;;29354:366;;;:::o;29726:419::-;29892:4;29930:2;29919:9;29915:18;29907:26;;29979:9;29973:4;29969:20;29965:1;29954:9;29950:17;29943:47;30007:131;30133:4;30007:131;:::i;:::-;29999:139;;29726:419;;;:::o;30151:98::-;30202:6;30236:5;30230:12;30220:22;;30151:98;;;:::o;30255:168::-;30338:11;30372:6;30367:3;30360:19;30412:4;30407:3;30403:14;30388:29;;30255:168;;;;:::o;30429:360::-;30515:3;30543:38;30575:5;30543:38;:::i;:::-;30597:70;30660:6;30655:3;30597:70;:::i;:::-;30590:77;;30676:52;30721:6;30716:3;30709:4;30702:5;30698:16;30676:52;:::i;:::-;30753:29;30775:6;30753:29;:::i;:::-;30748:3;30744:39;30737:46;;30519:270;30429:360;;;;:::o;30795:640::-;30990:4;31028:3;31017:9;31013:19;31005:27;;31042:71;31110:1;31099:9;31095:17;31086:6;31042:71;:::i;:::-;31123:72;31191:2;31180:9;31176:18;31167:6;31123:72;:::i;:::-;31205;31273:2;31262:9;31258:18;31249:6;31205:72;:::i;:::-;31324:9;31318:4;31314:20;31309:2;31298:9;31294:18;31287:48;31352:76;31423:4;31414:6;31352:76;:::i;:::-;31344:84;;30795:640;;;;;;;:::o;31441:141::-;31497:5;31528:6;31522:13;31513:22;;31544:32;31570:5;31544:32;:::i;:::-;31441:141;;;;:::o;31588:349::-;31657:6;31706:2;31694:9;31685:7;31681:23;31677:32;31674:119;;;31712:79;;:::i;:::-;31674:119;31832:1;31857:63;31912:7;31903:6;31892:9;31888:22;31857:63;:::i;:::-;31847:73;;31803:127;31588:349;;;;:::o;31943:233::-;31982:3;32005:24;32023:5;32005:24;:::i;:::-;31996:33;;32051:66;32044:5;32041:77;32038:103;;;32121:18;;:::i;:::-;32038:103;32168:1;32161:5;32157:13;32150:20;;31943:233;;;:::o;32182:176::-;32214:1;32231:20;32249:1;32231:20;:::i;:::-;32226:25;;32265:20;32283:1;32265:20;:::i;:::-;32260:25;;32304:1;32294:35;;32309:18;;:::i;:::-;32294:35;32350:1;32347;32343:9;32338:14;;32182:176;;;;:::o;32364:180::-;32412:77;32409:1;32402:88;32509:4;32506:1;32499:15;32533:4;32530:1;32523:15

Swarm Source

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