APE Price: $0.97 (+7.45%)

Sketched Out Apes (SOA)

Overview

TokenID

139

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
SOA

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2025-01-24
*/

// SPDX-License-Identifier: MIT



pragma solidity ^0.8.26;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.7;


contract SOA is ERC721A, Ownable {

    using Strings for uint256;

    string private baseURI ;

    uint256 public price = 0.1 ether;

    uint256 public maxPerTx = 1000;

    uint256 public maxFreePerWallet = 0;

    uint256 public totalFree = 0;

    uint256 public maxSupply = 5000;

    bool public mintEnabled = true;
    
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Sketched Out Apes", "SOA") {}

   function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxFreePerWallet));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxFreePerWallet - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxFreePerWallet - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxFreePerWallet;
             totalFreeMinted += maxFreePerWallet;
            }
            else if(count < (maxFreePerWallet - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "Sold out");
        require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

    function tokenURI(uint256 tokenId)
        public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function toggleMint() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a0000600a556103e8600b555f600c555f600d55611388600e556001600f5f6101000a81548160ff0219169083151502179055505f60105534801561004d575f80fd5b506040518060400160405280601181526020017f536b657463686564204f757420417065730000000000000000000000000000008152506040518060400160405280600381526020017f534f41000000000000000000000000000000000000000000000000000000000081525081600290816100c9919061041c565b5080600390816100d9919061041c565b506100e861011060201b60201c565b5f81905550505061010b61010061011860201b60201c565b61011f60201b60201c565b6104eb565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061025d57607f821691505b6020821081036102705761026f610219565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026102d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610297565b6102dc8683610297565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61032061031b610316846102f4565b6102fd565b6102f4565b9050919050565b5f819050919050565b61033983610306565b61034d61034582610327565b8484546102a3565b825550505050565b5f90565b610361610355565b61036c818484610330565b505050565b5b8181101561038f576103845f82610359565b600181019050610372565b5050565b601f8211156103d4576103a581610276565b6103ae84610288565b810160208510156103bd578190505b6103d16103c985610288565b830182610371565b50505b505050565b5f82821c905092915050565b5f6103f45f19846008026103d9565b1980831691505092915050565b5f61040c83836103e5565b9150826002028217905092915050565b610425826101e2565b67ffffffffffffffff81111561043e5761043d6101ec565b5b6104488254610246565b610453828285610393565b5f60209050601f831160018114610484575f8415610472578287015190505b61047c8582610401565b8655506104e3565b601f19841661049286610276565b5f5b828110156104b957848901518255600182019150602085019450602081019050610494565b868310156104d657848901516104d2601f8916826103e5565b8355505b6001600288020188555050505b505050505050565b61354c806104f85f395ff3fe6080604052600436106101cc575f3560e01c806392910eec116100f6578063c87b56dd11610094578063dad7b5c911610063578063dad7b5c914610614578063e985e9c51461063e578063f2fde38b1461067a578063f968adbe146106a2576101cc565b8063c87b56dd1461056e578063d1239730146105aa578063d3dd5fe0146105d4578063d5abeb01146105ea576101cc565b8063a0712d68116100d0578063a0712d68146104d8578063a22cb465146104f4578063a70273571461051c578063b88d4fde14610546576101cc565b806392910eec1461045c57806395d89b4114610484578063a035b1fe146104ae576101cc565b80633ccfd60b1161016e57806370a082311161013d57806370a08231146103b8578063715018a6146103f45780638da5cb5b1461040a57806391b7f5ed14610434576101cc565b80633ccfd60b1461031657806342842e0e1461032c57806355f804b3146103545780636352211e1461037c576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461029a57806323b872dd146102c4578063333e44e6146102ec576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190612450565b6106cc565b6040516102039190612495565b60405180910390f35b348015610217575f80fd5b5061022061075d565b60405161022d919061251e565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190612571565b6107ed565b60405161026991906125db565b60405180910390f35b34801561027d575f80fd5b506102986004803603810190610293919061261e565b610865565b005b3480156102a5575f80fd5b506102ae610a07565b6040516102bb919061266b565b60405180910390f35b3480156102cf575f80fd5b506102ea60048036038101906102e59190612684565b610a1c565b005b3480156102f7575f80fd5b50610300610a2c565b60405161030d919061266b565b60405180910390f35b348015610321575f80fd5b5061032a610a32565b005b348015610337575f80fd5b50610352600480360381019061034d9190612684565b610b59565b005b34801561035f575f80fd5b5061037a60048036038101906103759190612800565b610b78565b005b348015610387575f80fd5b506103a2600480360381019061039d9190612571565b610c07565b6040516103af91906125db565b60405180910390f35b3480156103c3575f80fd5b506103de60048036038101906103d99190612847565b610c18565b6040516103eb919061266b565b60405180910390f35b3480156103ff575f80fd5b50610408610ccd565b005b348015610415575f80fd5b5061041e610d54565b60405161042b91906125db565b60405180910390f35b34801561043f575f80fd5b5061045a60048036038101906104559190612571565b610d7c565b005b348015610467575f80fd5b50610482600480360381019061047d9190612571565b610e02565b005b34801561048f575f80fd5b50610498610e88565b6040516104a5919061251e565b60405180910390f35b3480156104b9575f80fd5b506104c2610f18565b6040516104cf919061266b565b60405180910390f35b6104f260048036038101906104ed9190612571565b610f1e565b005b3480156104ff575f80fd5b5061051a6004803603810190610515919061289c565b611430565b005b348015610527575f80fd5b506105306115a2565b60405161053d919061266b565b60405180910390f35b348015610551575f80fd5b5061056c60048036038101906105679190612978565b6115a8565b005b348015610579575f80fd5b50610594600480360381019061058f9190612571565b61161a565b6040516105a1919061251e565b60405180910390f35b3480156105b5575f80fd5b506105be611696565b6040516105cb9190612495565b60405180910390f35b3480156105df575f80fd5b506105e86116a8565b005b3480156105f5575f80fd5b506105fe61174e565b60405161060b919061266b565b60405180910390f35b34801561061f575f80fd5b50610628611754565b604051610635919061266b565b60405180910390f35b348015610649575f80fd5b50610664600480360381019061065f91906129f8565b61175a565b6040516106719190612495565b60405180910390f35b348015610685575f80fd5b506106a0600480360381019061069b9190612847565b6117e8565b005b3480156106ad575f80fd5b506106b66118de565b6040516106c3919061266b565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076c90612a63565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612a63565b80156107e35780601f106107ba576101008083540402835291602001916107e3565b820191905f5260205f20905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b5f6107f7826118e4565b61082d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61086f8261193e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f5611a01565b73ffffffffffffffffffffffffffffffffffffffff1614610958576109218161091c611a01565b61175a565b610957576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a10611a08565b6001545f540303905090565b610a27838383611a10565b505050565b600d5481565b610a3a611da1565b73ffffffffffffffffffffffffffffffffffffffff16610a58610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590612add565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610ad390612b28565b5f6040518083038185875af1925050503d805f8114610b0d576040519150601f19603f3d011682016040523d82523d5f602084013e610b12565b606091505b5050905080610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90612b86565b60405180910390fd5b50565b610b7383838360405180602001604052805f8152506115a8565b505050565b610b80611da1565b73ffffffffffffffffffffffffffffffffffffffff16610b9e610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90612add565b60405180910390fd5b8060099081610c039190612d41565b5050565b5f610c118261193e565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610cd5611da1565b73ffffffffffffffffffffffffffffffffffffffff16610cf3610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612add565b60405180910390fd5b610d525f611da8565b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d84611da1565b73ffffffffffffffffffffffffffffffffffffffff16610da2610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90612add565b60405180910390fd5b80600a8190555050565b610e0a611da1565b73ffffffffffffffffffffffffffffffffffffffff16610e28610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590612add565b60405180910390fd5b80600d8190555050565b606060038054610e9790612a63565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec390612a63565b8015610f0e5780601f10610ee557610100808354040283529160200191610f0e565b820191905f5260205f20905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b600a5481565b5f600a5490505f6001600d54610f349190612e3d565b83601054610f429190612e3d565b108015610f8d5750600c5460115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b905080156112e857600f5f9054906101000a900460ff16610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90612eba565b60405180910390fd5b600e5483610fef610a07565b610ff99190612e3d565b111561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190612f22565b60405180910390fd5b600b5483111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612f8a565b60405180910390fd5b60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600c546110ca9190612fa8565b83106111e1578160115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600c5461111c9190612fa8565b6111269190612fdb565b82846111329190612fdb565b61113c9190612fa8565b34101561117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613066565b60405180910390fd5b600c5460115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600c5460105f8282546111d59190612e3d565b925050819055506112e3565b60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600c5461122c9190612fa8565b8310156112e2575f341015611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613066565b60405180910390fd5b8260115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112c29190612e3d565b925050819055508260105f8282546112da9190612e3d565b925050819055505b5b611421565b600f5f9054906101000a900460ff16611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612eba565b60405180910390fd5b81836113429190612fdb565b341015611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90613066565b60405180910390fd5b600e5483611390610a07565b61139a9190612e3d565b11156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906130ce565b60405180910390fd5b600b54831115611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612f8a565b60405180910390fd5b5b61142b3384611e6b565b505050565b611438611a01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f6114a8611a01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611551611a01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115969190612495565b60405180910390a35050565b600c5481565b6115b3848484611a10565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611614576115dd84848484611e88565b611613576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611625826118e4565b611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061315c565b60405180910390fd5b600961166f83611fd3565b60405160200161168092919061327e565b6040516020818303038152906040529050919050565b600f5f9054906101000a900460ff1681565b6116b0611da1565b73ffffffffffffffffffffffffffffffffffffffff166116ce610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90612add565b60405180910390fd5b600f5f9054906101000a900460ff1615600f5f6101000a81548160ff021916908315150217905550565b600e5481565b60105481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6117f0611da1565b73ffffffffffffffffffffffffffffffffffffffff1661180e610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b90612add565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c99061331c565b60405180910390fd5b6118db81611da8565b50565b600b5481565b5f816118ee611a08565b111580156118fc57505f5482105b801561193757505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f808290508061194c611a08565b116119ca575f548110156119c9575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036119c7575b5f81036119bd5760045f836001900393508381526020019081526020015f20549050611996565b80925050506119fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f6001905090565b5f611a1a8261193e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8473ffffffffffffffffffffffffffffffffffffffff16611aa1611a01565b73ffffffffffffffffffffffffffffffffffffffff161480611ad05750611acf85611aca611a01565b61175a565b5b80611b155750611ade611a01565b73ffffffffffffffffffffffffffffffffffffffff16611afd846107ed565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b4e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bb3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bc0858585600161212c565b60065f8481526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611cb486612132565b171760045f8581526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000831603611d32575f6001840190505f60045f8381526020019081526020015f205403611d30575f548114611d2f578260045f8381526020019081526020015f20819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9a858585600161213b565b5050505050565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e84828260405180602001604052805f815250612141565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ead611a01565b8786866040518563ffffffff1660e01b8152600401611ecf949392919061338c565b6020604051808303815f875af1925050508015611f0a57506040513d601f19601f82011682018060405250810190611f0791906133ea565b60015b611f80573d805f8114611f38576040519150601f19603f3d011682016040523d82523d5f602084013e611f3d565b606091505b505f815103611f78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f8203612019576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612127565b5f8290505f5b5f821461204857808061203190613415565b915050600a826120419190613489565b915061201f565b5f8167ffffffffffffffff811115612063576120626126dc565b5b6040519080825280601f01601f1916602001820160405280156120955781602001600182028036833780820191505090505b5090505b5f8514612120576001826120ad9190612fa8565b9150600a856120bc91906134b9565b60306120c89190612e3d565b60f81b8183815181106120de576120dd6134e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856121199190613489565b9450612099565b8093505050505b919050565b50505050565b5f819050919050565b50505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f83036121e4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f05f85838661212c565b600160406001901b17830260055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1612252600185146123e1565b901b60a042901b61226286612132565b171760045f8381526020019081526020015f20819055505f8190505f84820190505f8673ffffffffffffffffffffffffffffffffffffffff163b1461235d575b818673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230f5f878480600101955087611e88565b612345576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106122a257825f5414612358575f80fd5b6123c7565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061235e575b815f8190555050506123db5f85838661213b565b50505050565b5f819050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61242f816123fb565b8114612439575f80fd5b50565b5f8135905061244a81612426565b92915050565b5f60208284031215612465576124646123f3565b5b5f6124728482850161243c565b91505092915050565b5f8115159050919050565b61248f8161247b565b82525050565b5f6020820190506124a85f830184612486565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6124f0826124ae565b6124fa81856124b8565b935061250a8185602086016124c8565b612513816124d6565b840191505092915050565b5f6020820190508181035f83015261253681846124e6565b905092915050565b5f819050919050565b6125508161253e565b811461255a575f80fd5b50565b5f8135905061256b81612547565b92915050565b5f60208284031215612586576125856123f3565b5b5f6125938482850161255d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125c58261259c565b9050919050565b6125d5816125bb565b82525050565b5f6020820190506125ee5f8301846125cc565b92915050565b6125fd816125bb565b8114612607575f80fd5b50565b5f81359050612618816125f4565b92915050565b5f8060408385031215612634576126336123f3565b5b5f6126418582860161260a565b92505060206126528582860161255d565b9150509250929050565b6126658161253e565b82525050565b5f60208201905061267e5f83018461265c565b92915050565b5f805f6060848603121561269b5761269a6123f3565b5b5f6126a88682870161260a565b93505060206126b98682870161260a565b92505060406126ca8682870161255d565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612712826124d6565b810181811067ffffffffffffffff82111715612731576127306126dc565b5b80604052505050565b5f6127436123ea565b905061274f8282612709565b919050565b5f67ffffffffffffffff82111561276e5761276d6126dc565b5b612777826124d6565b9050602081019050919050565b828183375f83830152505050565b5f6127a461279f84612754565b61273a565b9050828152602081018484840111156127c0576127bf6126d8565b5b6127cb848285612784565b509392505050565b5f82601f8301126127e7576127e66126d4565b5b81356127f7848260208601612792565b91505092915050565b5f60208284031215612815576128146123f3565b5b5f82013567ffffffffffffffff811115612832576128316123f7565b5b61283e848285016127d3565b91505092915050565b5f6020828403121561285c5761285b6123f3565b5b5f6128698482850161260a565b91505092915050565b61287b8161247b565b8114612885575f80fd5b50565b5f8135905061289681612872565b92915050565b5f80604083850312156128b2576128b16123f3565b5b5f6128bf8582860161260a565b92505060206128d085828601612888565b9150509250929050565b5f67ffffffffffffffff8211156128f4576128f36126dc565b5b6128fd826124d6565b9050602081019050919050565b5f61291c612917846128da565b61273a565b905082815260208101848484011115612938576129376126d8565b5b612943848285612784565b509392505050565b5f82601f83011261295f5761295e6126d4565b5b813561296f84826020860161290a565b91505092915050565b5f805f80608085870312156129905761298f6123f3565b5b5f61299d8782880161260a565b94505060206129ae8782880161260a565b93505060406129bf8782880161255d565b925050606085013567ffffffffffffffff8111156129e0576129df6123f7565b5b6129ec8782880161294b565b91505092959194509250565b5f8060408385031215612a0e57612a0d6123f3565b5b5f612a1b8582860161260a565b9250506020612a2c8582860161260a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612a7a57607f821691505b602082108103612a8d57612a8c612a36565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ac76020836124b8565b9150612ad282612a93565b602082019050919050565b5f6020820190508181035f830152612af481612abb565b9050919050565b5f81905092915050565b50565b5f612b135f83612afb565b9150612b1e82612b05565b5f82019050919050565b5f612b3282612b08565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f612b706010836124b8565b9150612b7b82612b3c565b602082019050919050565b5f6020820190508181035f830152612b9d81612b64565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bc5565b612c0a8683612bc5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c45612c40612c3b8461253e565b612c22565b61253e565b9050919050565b5f819050919050565b612c5e83612c2b565b612c72612c6a82612c4c565b848454612bd1565b825550505050565b5f90565b612c86612c7a565b612c91818484612c55565b505050565b5b81811015612cb457612ca95f82612c7e565b600181019050612c97565b5050565b601f821115612cf957612cca81612ba4565b612cd384612bb6565b81016020851015612ce2578190505b612cf6612cee85612bb6565b830182612c96565b50505b505050565b5f82821c905092915050565b5f612d195f1984600802612cfe565b1980831691505092915050565b5f612d318383612d0a565b9150826002028217905092915050565b612d4a826124ae565b67ffffffffffffffff811115612d6357612d626126dc565b5b612d6d8254612a63565b612d78828285612cb8565b5f60209050601f831160018114612da9575f8415612d97578287015190505b612da18582612d26565b865550612e08565b601f198416612db786612ba4565b5f5b82811015612dde57848901518255600182019150602085019450602081019050612db9565b86831015612dfb5784890151612df7601f891682612d0a565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e478261253e565b9150612e528361253e565b9250828201905080821115612e6a57612e69612e10565b5b92915050565b7f4d696e74206973206e6f74206c697665207965740000000000000000000000005f82015250565b5f612ea46014836124b8565b9150612eaf82612e70565b602082019050919050565b5f6020820190508181035f830152612ed181612e98565b9050919050565b7f4e6f206d6f7265000000000000000000000000000000000000000000000000005f82015250565b5f612f0c6007836124b8565b9150612f1782612ed8565b602082019050919050565b5f6020820190508181035f830152612f3981612f00565b9050919050565b7f4d61782070657220545820726561636865642e000000000000000000000000005f82015250565b5f612f746013836124b8565b9150612f7f82612f40565b602082019050919050565b5f6020820190508181035f830152612fa181612f68565b9050919050565b5f612fb28261253e565b9150612fbd8361253e565b9250828203905081811115612fd557612fd4612e10565b5b92915050565b5f612fe58261253e565b9150612ff08361253e565b9250828202612ffe8161253e565b9150828204841483151761301557613014612e10565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e745f82015250565b5f6130506020836124b8565b915061305b8261301c565b602082019050919050565b5f6020820190508181035f83015261307d81613044565b9050919050565b7f536f6c64206f75740000000000000000000000000000000000000000000000005f82015250565b5f6130b86008836124b8565b91506130c382613084565b602082019050919050565b5f6020820190508181035f8301526130e5816130ac565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613146602f836124b8565b9150613151826130ec565b604082019050919050565b5f6020820190508181035f8301526131738161313a565b9050919050565b5f81905092915050565b5f815461319081612a63565b61319a818661317a565b9450600182165f81146131b457600181146131c9576131fb565b60ff19831686528115158202860193506131fb565b6131d285612ba4565b5f5b838110156131f3578154818901526001820191506020810190506131d4565b838801955050505b50505092915050565b5f61320e826124ae565b613218818561317a565b93506132288185602086016124c8565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f61326860058361317a565b915061327382613234565b600582019050919050565b5f6132898285613184565b91506132958284613204565b91506132a08261325c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6133066026836124b8565b9150613311826132ac565b604082019050919050565b5f6020820190508181035f830152613333816132fa565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61335e8261333a565b6133688185613344565b93506133788185602086016124c8565b613381816124d6565b840191505092915050565b5f60808201905061339f5f8301876125cc565b6133ac60208301866125cc565b6133b9604083018561265c565b81810360608301526133cb8184613354565b905095945050505050565b5f815190506133e481612426565b92915050565b5f602082840312156133ff576133fe6123f3565b5b5f61340c848285016133d6565b91505092915050565b5f61341f8261253e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361345157613450612e10565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6134938261253e565b915061349e8361253e565b9250826134ae576134ad61345c565b5b828204905092915050565b5f6134c38261253e565b91506134ce8361253e565b9250826134de576134dd61345c565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220d03bb7cfc23545258245aa7a7398f9441de7a55e2cf4d93b8f0f8fdf1748a72264736f6c634300081a0033

Deployed Bytecode

0x6080604052600436106101cc575f3560e01c806392910eec116100f6578063c87b56dd11610094578063dad7b5c911610063578063dad7b5c914610614578063e985e9c51461063e578063f2fde38b1461067a578063f968adbe146106a2576101cc565b8063c87b56dd1461056e578063d1239730146105aa578063d3dd5fe0146105d4578063d5abeb01146105ea576101cc565b8063a0712d68116100d0578063a0712d68146104d8578063a22cb465146104f4578063a70273571461051c578063b88d4fde14610546576101cc565b806392910eec1461045c57806395d89b4114610484578063a035b1fe146104ae576101cc565b80633ccfd60b1161016e57806370a082311161013d57806370a08231146103b8578063715018a6146103f45780638da5cb5b1461040a57806391b7f5ed14610434576101cc565b80633ccfd60b1461031657806342842e0e1461032c57806355f804b3146103545780636352211e1461037c576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461029a57806323b872dd146102c4578063333e44e6146102ec576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190612450565b6106cc565b6040516102039190612495565b60405180910390f35b348015610217575f80fd5b5061022061075d565b60405161022d919061251e565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190612571565b6107ed565b60405161026991906125db565b60405180910390f35b34801561027d575f80fd5b506102986004803603810190610293919061261e565b610865565b005b3480156102a5575f80fd5b506102ae610a07565b6040516102bb919061266b565b60405180910390f35b3480156102cf575f80fd5b506102ea60048036038101906102e59190612684565b610a1c565b005b3480156102f7575f80fd5b50610300610a2c565b60405161030d919061266b565b60405180910390f35b348015610321575f80fd5b5061032a610a32565b005b348015610337575f80fd5b50610352600480360381019061034d9190612684565b610b59565b005b34801561035f575f80fd5b5061037a60048036038101906103759190612800565b610b78565b005b348015610387575f80fd5b506103a2600480360381019061039d9190612571565b610c07565b6040516103af91906125db565b60405180910390f35b3480156103c3575f80fd5b506103de60048036038101906103d99190612847565b610c18565b6040516103eb919061266b565b60405180910390f35b3480156103ff575f80fd5b50610408610ccd565b005b348015610415575f80fd5b5061041e610d54565b60405161042b91906125db565b60405180910390f35b34801561043f575f80fd5b5061045a60048036038101906104559190612571565b610d7c565b005b348015610467575f80fd5b50610482600480360381019061047d9190612571565b610e02565b005b34801561048f575f80fd5b50610498610e88565b6040516104a5919061251e565b60405180910390f35b3480156104b9575f80fd5b506104c2610f18565b6040516104cf919061266b565b60405180910390f35b6104f260048036038101906104ed9190612571565b610f1e565b005b3480156104ff575f80fd5b5061051a6004803603810190610515919061289c565b611430565b005b348015610527575f80fd5b506105306115a2565b60405161053d919061266b565b60405180910390f35b348015610551575f80fd5b5061056c60048036038101906105679190612978565b6115a8565b005b348015610579575f80fd5b50610594600480360381019061058f9190612571565b61161a565b6040516105a1919061251e565b60405180910390f35b3480156105b5575f80fd5b506105be611696565b6040516105cb9190612495565b60405180910390f35b3480156105df575f80fd5b506105e86116a8565b005b3480156105f5575f80fd5b506105fe61174e565b60405161060b919061266b565b60405180910390f35b34801561061f575f80fd5b50610628611754565b604051610635919061266b565b60405180910390f35b348015610649575f80fd5b50610664600480360381019061065f91906129f8565b61175a565b6040516106719190612495565b60405180910390f35b348015610685575f80fd5b506106a0600480360381019061069b9190612847565b6117e8565b005b3480156106ad575f80fd5b506106b66118de565b6040516106c3919061266b565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076c90612a63565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612a63565b80156107e35780601f106107ba576101008083540402835291602001916107e3565b820191905f5260205f20905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b5f6107f7826118e4565b61082d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61086f8261193e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f5611a01565b73ffffffffffffffffffffffffffffffffffffffff1614610958576109218161091c611a01565b61175a565b610957576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a10611a08565b6001545f540303905090565b610a27838383611a10565b505050565b600d5481565b610a3a611da1565b73ffffffffffffffffffffffffffffffffffffffff16610a58610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590612add565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610ad390612b28565b5f6040518083038185875af1925050503d805f8114610b0d576040519150601f19603f3d011682016040523d82523d5f602084013e610b12565b606091505b5050905080610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90612b86565b60405180910390fd5b50565b610b7383838360405180602001604052805f8152506115a8565b505050565b610b80611da1565b73ffffffffffffffffffffffffffffffffffffffff16610b9e610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90612add565b60405180910390fd5b8060099081610c039190612d41565b5050565b5f610c118261193e565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610cd5611da1565b73ffffffffffffffffffffffffffffffffffffffff16610cf3610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612add565b60405180910390fd5b610d525f611da8565b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d84611da1565b73ffffffffffffffffffffffffffffffffffffffff16610da2610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90612add565b60405180910390fd5b80600a8190555050565b610e0a611da1565b73ffffffffffffffffffffffffffffffffffffffff16610e28610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590612add565b60405180910390fd5b80600d8190555050565b606060038054610e9790612a63565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec390612a63565b8015610f0e5780601f10610ee557610100808354040283529160200191610f0e565b820191905f5260205f20905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b600a5481565b5f600a5490505f6001600d54610f349190612e3d565b83601054610f429190612e3d565b108015610f8d5750600c5460115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b905080156112e857600f5f9054906101000a900460ff16610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90612eba565b60405180910390fd5b600e5483610fef610a07565b610ff99190612e3d565b111561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190612f22565b60405180910390fd5b600b5483111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612f8a565b60405180910390fd5b60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600c546110ca9190612fa8565b83106111e1578160115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600c5461111c9190612fa8565b6111269190612fdb565b82846111329190612fdb565b61113c9190612fa8565b34101561117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613066565b60405180910390fd5b600c5460115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600c5460105f8282546111d59190612e3d565b925050819055506112e3565b60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600c5461122c9190612fa8565b8310156112e2575f341015611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613066565b60405180910390fd5b8260115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112c29190612e3d565b925050819055508260105f8282546112da9190612e3d565b925050819055505b5b611421565b600f5f9054906101000a900460ff16611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612eba565b60405180910390fd5b81836113429190612fdb565b341015611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90613066565b60405180910390fd5b600e5483611390610a07565b61139a9190612e3d565b11156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906130ce565b60405180910390fd5b600b54831115611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612f8a565b60405180910390fd5b5b61142b3384611e6b565b505050565b611438611a01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f6114a8611a01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611551611a01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115969190612495565b60405180910390a35050565b600c5481565b6115b3848484611a10565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611614576115dd84848484611e88565b611613576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611625826118e4565b611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061315c565b60405180910390fd5b600961166f83611fd3565b60405160200161168092919061327e565b6040516020818303038152906040529050919050565b600f5f9054906101000a900460ff1681565b6116b0611da1565b73ffffffffffffffffffffffffffffffffffffffff166116ce610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90612add565b60405180910390fd5b600f5f9054906101000a900460ff1615600f5f6101000a81548160ff021916908315150217905550565b600e5481565b60105481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6117f0611da1565b73ffffffffffffffffffffffffffffffffffffffff1661180e610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b90612add565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c99061331c565b60405180910390fd5b6118db81611da8565b50565b600b5481565b5f816118ee611a08565b111580156118fc57505f5482105b801561193757505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f808290508061194c611a08565b116119ca575f548110156119c9575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036119c7575b5f81036119bd5760045f836001900393508381526020019081526020015f20549050611996565b80925050506119fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f6001905090565b5f611a1a8261193e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8473ffffffffffffffffffffffffffffffffffffffff16611aa1611a01565b73ffffffffffffffffffffffffffffffffffffffff161480611ad05750611acf85611aca611a01565b61175a565b5b80611b155750611ade611a01565b73ffffffffffffffffffffffffffffffffffffffff16611afd846107ed565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b4e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bb3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bc0858585600161212c565b60065f8481526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611cb486612132565b171760045f8581526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000831603611d32575f6001840190505f60045f8381526020019081526020015f205403611d30575f548114611d2f578260045f8381526020019081526020015f20819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9a858585600161213b565b5050505050565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e84828260405180602001604052805f815250612141565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ead611a01565b8786866040518563ffffffff1660e01b8152600401611ecf949392919061338c565b6020604051808303815f875af1925050508015611f0a57506040513d601f19601f82011682018060405250810190611f0791906133ea565b60015b611f80573d805f8114611f38576040519150601f19603f3d011682016040523d82523d5f602084013e611f3d565b606091505b505f815103611f78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f8203612019576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612127565b5f8290505f5b5f821461204857808061203190613415565b915050600a826120419190613489565b915061201f565b5f8167ffffffffffffffff811115612063576120626126dc565b5b6040519080825280601f01601f1916602001820160405280156120955781602001600182028036833780820191505090505b5090505b5f8514612120576001826120ad9190612fa8565b9150600a856120bc91906134b9565b60306120c89190612e3d565b60f81b8183815181106120de576120dd6134e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856121199190613489565b9450612099565b8093505050505b919050565b50505050565b5f819050919050565b50505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f83036121e4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f05f85838661212c565b600160406001901b17830260055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1612252600185146123e1565b901b60a042901b61226286612132565b171760045f8381526020019081526020015f20819055505f8190505f84820190505f8673ffffffffffffffffffffffffffffffffffffffff163b1461235d575b818673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230f5f878480600101955087611e88565b612345576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106122a257825f5414612358575f80fd5b6123c7565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061235e575b815f8190555050506123db5f85838661213b565b50505050565b5f819050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61242f816123fb565b8114612439575f80fd5b50565b5f8135905061244a81612426565b92915050565b5f60208284031215612465576124646123f3565b5b5f6124728482850161243c565b91505092915050565b5f8115159050919050565b61248f8161247b565b82525050565b5f6020820190506124a85f830184612486565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6124f0826124ae565b6124fa81856124b8565b935061250a8185602086016124c8565b612513816124d6565b840191505092915050565b5f6020820190508181035f83015261253681846124e6565b905092915050565b5f819050919050565b6125508161253e565b811461255a575f80fd5b50565b5f8135905061256b81612547565b92915050565b5f60208284031215612586576125856123f3565b5b5f6125938482850161255d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125c58261259c565b9050919050565b6125d5816125bb565b82525050565b5f6020820190506125ee5f8301846125cc565b92915050565b6125fd816125bb565b8114612607575f80fd5b50565b5f81359050612618816125f4565b92915050565b5f8060408385031215612634576126336123f3565b5b5f6126418582860161260a565b92505060206126528582860161255d565b9150509250929050565b6126658161253e565b82525050565b5f60208201905061267e5f83018461265c565b92915050565b5f805f6060848603121561269b5761269a6123f3565b5b5f6126a88682870161260a565b93505060206126b98682870161260a565b92505060406126ca8682870161255d565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612712826124d6565b810181811067ffffffffffffffff82111715612731576127306126dc565b5b80604052505050565b5f6127436123ea565b905061274f8282612709565b919050565b5f67ffffffffffffffff82111561276e5761276d6126dc565b5b612777826124d6565b9050602081019050919050565b828183375f83830152505050565b5f6127a461279f84612754565b61273a565b9050828152602081018484840111156127c0576127bf6126d8565b5b6127cb848285612784565b509392505050565b5f82601f8301126127e7576127e66126d4565b5b81356127f7848260208601612792565b91505092915050565b5f60208284031215612815576128146123f3565b5b5f82013567ffffffffffffffff811115612832576128316123f7565b5b61283e848285016127d3565b91505092915050565b5f6020828403121561285c5761285b6123f3565b5b5f6128698482850161260a565b91505092915050565b61287b8161247b565b8114612885575f80fd5b50565b5f8135905061289681612872565b92915050565b5f80604083850312156128b2576128b16123f3565b5b5f6128bf8582860161260a565b92505060206128d085828601612888565b9150509250929050565b5f67ffffffffffffffff8211156128f4576128f36126dc565b5b6128fd826124d6565b9050602081019050919050565b5f61291c612917846128da565b61273a565b905082815260208101848484011115612938576129376126d8565b5b612943848285612784565b509392505050565b5f82601f83011261295f5761295e6126d4565b5b813561296f84826020860161290a565b91505092915050565b5f805f80608085870312156129905761298f6123f3565b5b5f61299d8782880161260a565b94505060206129ae8782880161260a565b93505060406129bf8782880161255d565b925050606085013567ffffffffffffffff8111156129e0576129df6123f7565b5b6129ec8782880161294b565b91505092959194509250565b5f8060408385031215612a0e57612a0d6123f3565b5b5f612a1b8582860161260a565b9250506020612a2c8582860161260a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612a7a57607f821691505b602082108103612a8d57612a8c612a36565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ac76020836124b8565b9150612ad282612a93565b602082019050919050565b5f6020820190508181035f830152612af481612abb565b9050919050565b5f81905092915050565b50565b5f612b135f83612afb565b9150612b1e82612b05565b5f82019050919050565b5f612b3282612b08565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f612b706010836124b8565b9150612b7b82612b3c565b602082019050919050565b5f6020820190508181035f830152612b9d81612b64565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bc5565b612c0a8683612bc5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c45612c40612c3b8461253e565b612c22565b61253e565b9050919050565b5f819050919050565b612c5e83612c2b565b612c72612c6a82612c4c565b848454612bd1565b825550505050565b5f90565b612c86612c7a565b612c91818484612c55565b505050565b5b81811015612cb457612ca95f82612c7e565b600181019050612c97565b5050565b601f821115612cf957612cca81612ba4565b612cd384612bb6565b81016020851015612ce2578190505b612cf6612cee85612bb6565b830182612c96565b50505b505050565b5f82821c905092915050565b5f612d195f1984600802612cfe565b1980831691505092915050565b5f612d318383612d0a565b9150826002028217905092915050565b612d4a826124ae565b67ffffffffffffffff811115612d6357612d626126dc565b5b612d6d8254612a63565b612d78828285612cb8565b5f60209050601f831160018114612da9575f8415612d97578287015190505b612da18582612d26565b865550612e08565b601f198416612db786612ba4565b5f5b82811015612dde57848901518255600182019150602085019450602081019050612db9565b86831015612dfb5784890151612df7601f891682612d0a565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e478261253e565b9150612e528361253e565b9250828201905080821115612e6a57612e69612e10565b5b92915050565b7f4d696e74206973206e6f74206c697665207965740000000000000000000000005f82015250565b5f612ea46014836124b8565b9150612eaf82612e70565b602082019050919050565b5f6020820190508181035f830152612ed181612e98565b9050919050565b7f4e6f206d6f7265000000000000000000000000000000000000000000000000005f82015250565b5f612f0c6007836124b8565b9150612f1782612ed8565b602082019050919050565b5f6020820190508181035f830152612f3981612f00565b9050919050565b7f4d61782070657220545820726561636865642e000000000000000000000000005f82015250565b5f612f746013836124b8565b9150612f7f82612f40565b602082019050919050565b5f6020820190508181035f830152612fa181612f68565b9050919050565b5f612fb28261253e565b9150612fbd8361253e565b9250828203905081811115612fd557612fd4612e10565b5b92915050565b5f612fe58261253e565b9150612ff08361253e565b9250828202612ffe8161253e565b9150828204841483151761301557613014612e10565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e745f82015250565b5f6130506020836124b8565b915061305b8261301c565b602082019050919050565b5f6020820190508181035f83015261307d81613044565b9050919050565b7f536f6c64206f75740000000000000000000000000000000000000000000000005f82015250565b5f6130b86008836124b8565b91506130c382613084565b602082019050919050565b5f6020820190508181035f8301526130e5816130ac565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613146602f836124b8565b9150613151826130ec565b604082019050919050565b5f6020820190508181035f8301526131738161313a565b9050919050565b5f81905092915050565b5f815461319081612a63565b61319a818661317a565b9450600182165f81146131b457600181146131c9576131fb565b60ff19831686528115158202860193506131fb565b6131d285612ba4565b5f5b838110156131f3578154818901526001820191506020810190506131d4565b838801955050505b50505092915050565b5f61320e826124ae565b613218818561317a565b93506132288185602086016124c8565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f61326860058361317a565b915061327382613234565b600582019050919050565b5f6132898285613184565b91506132958284613204565b91506132a08261325c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6133066026836124b8565b9150613311826132ac565b604082019050919050565b5f6020820190508181035f830152613333816132fa565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61335e8261333a565b6133688185613344565b93506133788185602086016124c8565b613381816124d6565b840191505092915050565b5f60808201905061339f5f8301876125cc565b6133ac60208301866125cc565b6133b9604083018561265c565b81810360608301526133cb8184613354565b905095945050505050565b5f815190506133e481612426565b92915050565b5f602082840312156133ff576133fe6123f3565b5b5f61340c848285016133d6565b91505092915050565b5f61341f8261253e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361345157613450612e10565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6134938261253e565b915061349e8361253e565b9250826134ae576134ad61345c565b5b828204905092915050565b5f6134c38261253e565b91506134ce8361253e565b9250826134de576134dd61345c565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220d03bb7cfc23545258245aa7a7398f9441de7a55e2cf4d93b8f0f8fdf1748a72264736f6c634300081a0033

Deployed Bytecode Sourcemap

76480:2880:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13053:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18066:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20134:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19594:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12107:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21020:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76712:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79143:206;;;;;;;;;;;;;:::i;:::-;;21261:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78750:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17855:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13732:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43574:103;;;;;;;;;;;;;:::i;:::-;;42923:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78949:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78846:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18235:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76588:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76995:1430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20410:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76668:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21517:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78433:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76789:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79049:86;;;;;;;;;;;;;:::i;:::-;;76749:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76832:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20789:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43832:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76629:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13053:615;13138:4;13453:10;13438:25;;:11;:25;;;;:102;;;;13530:10;13515:25;;:11;:25;;;;13438:102;:179;;;;13607:10;13592:25;;:11;:25;;;;13438:179;13418:199;;13053:615;;;:::o;18066:100::-;18120:13;18153:5;18146:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18066:100;:::o;20134:204::-;20202:7;20227:16;20235:7;20227;:16::i;:::-;20222:64;;20252:34;;;;;;;;;;;;;;20222:64;20306:15;:24;20322:7;20306:24;;;;;;;;;;;;;;;;;;;;;20299:31;;20134:204;;;:::o;19594:474::-;19667:13;19699:27;19718:7;19699:18;:27::i;:::-;19667:61;;19749:5;19743:11;;:2;:11;;;19739:48;;19763:24;;;;;;;;;;;;;;19739:48;19827:5;19804:28;;:19;:17;:19::i;:::-;:28;;;19800:175;;19852:44;19869:5;19876:19;:17;:19::i;:::-;19852:16;:44::i;:::-;19847:128;;19924:35;;;;;;;;;;;;;;19847:128;19800:175;20014:2;19987:15;:24;20003:7;19987:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20052:7;20048:2;20032:28;;20041:5;20032:28;;;;;;;;;;;;19656:412;19594:474;;:::o;12107:315::-;12160:7;12388:15;:13;:15::i;:::-;12373:12;;12357:13;;:28;:46;12350:53;;12107:315;:::o;21020:170::-;21154:28;21164:4;21170:2;21174:7;21154:9;:28::i;:::-;21020:170;;;:::o;76712:28::-;;;;:::o;79143:206::-;43154:12;:10;:12::i;:::-;43143:23;;:7;:5;:7::i;:::-;:23;;;43135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79194:12:::1;79220:10;79212:24;;79258:21;79212:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79193:101;;;79313:7;79305:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;79182:167;79143:206::o:0;21261:185::-;21399:39;21416:4;21422:2;21426:7;21399:39;;;;;;;;;;;;:16;:39::i;:::-;21261:185;;;:::o;78750:88::-;43154:12;:10;:12::i;:::-;43143:23;;:7;:5;:7::i;:::-;:23;;;43135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78827:3:::1;78817:7;:13;;;;;;:::i;:::-;;78750:88:::0;:::o;17855:144::-;17919:7;17962:27;17981:7;17962:18;:27::i;:::-;17939:52;;17855:144;;;:::o;13732:224::-;13796:7;13837:1;13820:19;;:5;:19;;;13816:60;;13848:28;;;;;;;;;;;;;;13816:60;9071:13;13894:18;:25;13913:5;13894:25;;;;;;;;;;;;;;;;:54;13887:61;;13732:224;;;:::o;43574:103::-;43154:12;:10;:12::i;:::-;43143:23;;:7;:5;:7::i;:::-;:23;;;43135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43639:30:::1;43666:1;43639:18;:30::i;:::-;43574:103::o:0;42923:87::-;42969:7;42996:6;;;;;;;;;;;42989:13;;42923:87;:::o;78949:92::-;43154:12;:10;:12::i;:::-;43143:23;;:7;:5;:7::i;:::-;:23;;;43135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79024:9:::1;79016:5;:17;;;;78949:92:::0;:::o;78846:95::-;43154:12;:10;:12::i;:::-;43143:23;;:7;:5;:7::i;:::-;:23;;;43135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78927:6:::1;78915:9;:18;;;;78846:95:::0;:::o;18235:104::-;18291:13;18324:7;18317:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18235:104;:::o;76588:32::-;;;;:::o;76995:1430::-;77052:12;77067:5;;77052:20;;77083:11;77137:1;77125:9;;:13;;;;:::i;:::-;77117:5;77099:15;;:23;;;;:::i;:::-;:39;77098:108;;;;;77189:16;;77157:17;:29;77175:10;77157:29;;;;;;;;;;;;;;;;:48;77098:108;77083:124;;77224:6;77220:1157;;;77256:11;;;;;;;;;;;77248:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;77340:9;;77331:5;77315:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;77307:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;77393:8;;77384:5;:17;;77376:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;77472:17;:29;77490:10;77472:29;;;;;;;;;;;;;;;;77453:16;;:48;;;;:::i;:::-;77443:5;:59;77440:638;;77625:4;77592:17;:29;77610:10;77592:29;;;;;;;;;;;;;;;;77573:16;;:48;;;;:::i;:::-;77572:57;;;;:::i;:::-;77563:4;77555:5;:12;;;;:::i;:::-;77554:76;;;;:::i;:::-;77541:9;:89;;77533:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;77715:16;;77683:17;:29;77701:10;77683:29;;;;;;;;;;;;;;;:48;;;;77766:16;;77747:15;;:35;;;;;;;:::i;:::-;;;;;;;;77440:638;;;77848:17;:29;77866:10;77848:29;;;;;;;;;;;;;;;;77829:16;;:48;;;;:::i;:::-;77820:5;:58;77817:261;;;77930:1;77917:9;:14;;77909:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;78017:5;77984:17;:29;78002:10;77984:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;78057:5;78038:15;;:24;;;;;;;:::i;:::-;;;;;;;;77817:261;77440:638;77220:1157;;;78122:11;;;;;;;;;;;78114:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78198:4;78190:5;:12;;;;:::i;:::-;78177:9;:25;;78169:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;78283:9;;78274:5;78258:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;78250:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;78333:8;;78324:5;:17;;78316:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;77220:1157;78389:28;78399:10;78411:5;78389:9;:28::i;:::-;77041:1384;;76995:1430;:::o;20410:308::-;20521:19;:17;:19::i;:::-;20509:31;;:8;:31;;;20505:61;;20549:17;;;;;;;;;;;;;;20505:61;20631:8;20579:18;:39;20598:19;:17;:19::i;:::-;20579:39;;;;;;;;;;;;;;;:49;20619:8;20579:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20691:8;20655:55;;20670:19;:17;:19::i;:::-;20655:55;;;20701:8;20655:55;;;;;;:::i;:::-;;;;;;;;20410:308;;:::o;76668:35::-;;;;:::o;21517:396::-;21684:28;21694:4;21700:2;21704:7;21684:9;:28::i;:::-;21745:1;21727:2;:14;;;:19;21723:183;;21766:56;21797:4;21803:2;21807:7;21816:5;21766:30;:56::i;:::-;21761:145;;21850:40;;;;;;;;;;;;;;21761:145;21723:183;21517:396;;;;:::o;78433:309::-;78515:13;78563:16;78571:7;78563;:16::i;:::-;78541:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78696:7;78705:18;:7;:16;:18::i;:::-;78679:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78665:69;;78433:309;;;:::o;76789:30::-;;;;;;;;;;;;;:::o;79049:86::-;43154:12;:10;:12::i;:::-;43143:23;;:7;:5;:7::i;:::-;:23;;;43135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79116:11:::1;;;;;;;;;;;79115:12;79101:11;;:26;;;;;;;;;;;;;;;;;;79049:86::o:0;76749:31::-;;;;:::o;76832:33::-;;;;:::o;20789:164::-;20886:4;20910:18;:25;20929:5;20910:25;;;;;;;;;;;;;;;:35;20936:8;20910:35;;;;;;;;;;;;;;;;;;;;;;;;;20903:42;;20789:164;;;;:::o;43832:201::-;43154:12;:10;:12::i;:::-;43143:23;;:7;:5;:7::i;:::-;:23;;;43135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43941:1:::1;43921:22;;:8;:22;;::::0;43913:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43997:28;44016:8;43997:18;:28::i;:::-;43832:201:::0;:::o;76629:30::-;;;;:::o;22168:273::-;22225:4;22281:7;22262:15;:13;:15::i;:::-;:26;;:66;;;;;22315:13;;22305:7;:23;22262:66;:152;;;;;22413:1;9841:8;22366:17;:26;22384:7;22366:26;;;;;;;;;;;;:43;:48;22262:152;22242:172;;22168:273;;;:::o;15370:1129::-;15437:7;15457:12;15472:7;15457:22;;15540:4;15521:15;:13;:15::i;:::-;:23;15517:915;;15574:13;;15567:4;:20;15563:869;;;15612:14;15629:17;:23;15647:4;15629:23;;;;;;;;;;;;15612:40;;15745:1;9841:8;15718:6;:23;:28;15714:699;;16237:113;16254:1;16244:6;:11;16237:113;;16297:17;:25;16315:6;;;;;;;16297:25;;;;;;;;;;;;16288:34;;16237:113;;;16383:6;16376:13;;;;;;15714:699;15589:843;15563:869;15517:915;16460:31;;;;;;;;;;;;;;15370:1129;;;;:::o;36150:105::-;36210:7;36237:10;36230:17;;36150:105;:::o;11630:92::-;11686:7;11713:1;11706:8;;11630:92;:::o;27407:2515::-;27522:27;27552;27571:7;27552:18;:27::i;:::-;27522:57;;27637:4;27596:45;;27612:19;27596:45;;;27592:86;;27650:28;;;;;;;;;;;;;;27592:86;27691:22;27740:4;27717:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27761:43;27778:4;27784:19;:17;:19::i;:::-;27761:16;:43::i;:::-;27717:87;:147;;;;27845:19;:17;:19::i;:::-;27821:43;;:20;27833:7;27821:11;:20::i;:::-;:43;;;27717:147;27691:174;;27883:17;27878:66;;27909:35;;;;;;;;;;;;;;27878:66;27973:1;27959:16;;:2;:16;;;27955:52;;27984:23;;;;;;;;;;;;;;27955:52;28020:43;28042:4;28048:2;28052:7;28061:1;28020:21;:43::i;:::-;28136:15;:24;28152:7;28136:24;;;;;;;;;;;;28129:31;;;;;;;;;;;28528:18;:24;28547:4;28528:24;;;;;;;;;;;;;;;;28526:26;;;;;;;;;;;;28597:18;:22;28616:2;28597:22;;;;;;;;;;;;;;;;28595:24;;;;;;;;;;;10123:8;9725:3;28978:15;:41;;28936:21;28954:2;28936:17;:21::i;:::-;:84;:128;28890:17;:26;28908:7;28890:26;;;;;;;;;;;:174;;;;29234:1;10123:8;29184:19;:46;:51;29180:626;;29256:19;29288:1;29278:7;:11;29256:33;;29445:1;29411:17;:30;29429:11;29411:30;;;;;;;;;;;;:35;29407:384;;29549:13;;29534:11;:28;29530:242;;29729:19;29696:17;:30;29714:11;29696:30;;;;;;;;;;;:52;;;;29530:242;29407:384;29237:569;29180:626;29853:7;29849:2;29834:27;;29843:4;29834:27;;;;;;;;;;;;29872:42;29893:4;29899:2;29903:7;29912:1;29872:20;:42::i;:::-;27511:2411;;27407:2515;;;:::o;41594:98::-;41647:7;41674:10;41667:17;;41594:98;:::o;44193:191::-;44267:16;44286:6;;;;;;;;;;;44267:25;;44312:8;44303:6;;:17;;;;;;;;;;;;;;;;;;44367:8;44336:40;;44357:8;44336:40;;;;;;;;;;;;44256:128;44193:191;:::o;22525:104::-;22594:27;22604:2;22608:8;22594:27;;;;;;;;;;;;:9;:27::i;:::-;22525:104;;:::o;33619:716::-;33782:4;33828:2;33803:45;;;33849:19;:17;:19::i;:::-;33870:4;33876:7;33885:5;33803:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33799:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34103:1;34086:6;:13;:18;34082:235;;34132:40;;;;;;;;;;;;;;34082:235;34275:6;34269:13;34260:6;34256:2;34252:15;34245:38;33799:529;33972:54;;;33962:64;;;:6;:64;;;;33955:71;;;33619:716;;;;;;:::o;38795:723::-;38851:13;39081:1;39072:5;:10;39068:53;;39099:10;;;;;;;;;;;;;;;;;;;;;39068:53;39131:12;39146:5;39131:20;;39162:14;39187:78;39202:1;39194:4;:9;39187:78;;39220:8;;;;;:::i;:::-;;;;39251:2;39243:10;;;;;:::i;:::-;;;39187:78;;;39275:19;39307:6;39297:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39275:39;;39325:154;39341:1;39332:5;:10;39325:154;;39369:1;39359:11;;;;;:::i;:::-;;;39436:2;39428:5;:10;;;;:::i;:::-;39415:2;:24;;;;:::i;:::-;39402:39;;39385:6;39392;39385:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39465:2;39456:11;;;;;:::i;:::-;;;39325:154;;;39503:6;39489:21;;;;;38795:723;;;;:::o;34983:159::-;;;;;:::o;19155:148::-;19219:14;19280:5;19270:15;;19155:148;;;:::o;35801:158::-;;;;;:::o;23002:2236::-;23125:20;23148:13;;23125:36;;23190:1;23176:16;;:2;:16;;;23172:48;;23201:19;;;;;;;;;;;;;;23172:48;23247:1;23235:8;:13;23231:44;;23257:18;;;;;;;;;;;;;;23231:44;23288:61;23318:1;23322:2;23326:12;23340:8;23288:21;:61::i;:::-;23892:1;9208:2;23863:1;:25;;23862:31;23850:8;:44;23824:18;:22;23843:2;23824:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9988:3;24293:29;24320:1;24308:8;:13;24293:14;:29::i;:::-;:56;;9725:3;24230:15;:41;;24188:21;24206:2;24188:17;:21::i;:::-;:84;:162;24137:17;:31;24155:12;24137:31;;;;;;;;;;;:213;;;;24367:20;24390:12;24367:35;;24417:11;24446:8;24431:12;:23;24417:37;;24493:1;24475:2;:14;;;:19;24471:635;;24515:313;24571:12;24567:2;24546:38;;24563:1;24546:38;;;;;;;;;;;;24612:69;24651:1;24655:2;24659:14;;;;;;24675:5;24612:30;:69::i;:::-;24607:174;;24717:40;;;;;;;;;;;;;;24607:174;24823:3;24808:12;:18;24515:313;;24909:12;24892:13;;:29;24888:43;;24923:8;;;24888:43;24471:635;;;24972:119;25028:14;;;;;;25024:2;25003:40;;25020:1;25003:40;;;;;;;;;;;;25086:3;25071:12;:18;24972:119;;24471:635;25136:12;25120:13;:28;;;;23601:1559;;25170:60;25199:1;25203:2;25207:12;25221:8;25170:20;:60::i;:::-;23114:2124;23002:2236;;;:::o;19390:142::-;19448:14;19509:5;19499:15;;19390:142;;;:::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:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:116::-;8793:21;8808:5;8793:21;:::i;:::-;8786:5;8783:32;8773:60;;8829:1;8826;8819:12;8773:60;8723:116;:::o;8845:133::-;8888:5;8926:6;8913:20;8904:29;;8942:30;8966:5;8942:30;:::i;:::-;8845:133;;;;:::o;8984:468::-;9049:6;9057;9106:2;9094:9;9085:7;9081:23;9077:32;9074:119;;;9112:79;;:::i;:::-;9074:119;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:50;9427:7;9418:6;9407:9;9403:22;9385:50;:::i;:::-;9375:60;;9330:115;8984:468;;;;;:::o;9458:307::-;9519:4;9609:18;9601:6;9598:30;9595:56;;;9631:18;;:::i;:::-;9595:56;9669:29;9691:6;9669:29;:::i;:::-;9661:37;;9753:4;9747;9743:15;9735:23;;9458:307;;;:::o;9771:423::-;9848:5;9873:65;9889:48;9930:6;9889:48;:::i;:::-;9873:65;:::i;:::-;9864:74;;9961:6;9954:5;9947:21;9999:4;9992:5;9988:16;10037:3;10028:6;10023:3;10019:16;10016:25;10013:112;;;10044:79;;:::i;:::-;10013:112;10134:54;10181:6;10176:3;10171;10134:54;:::i;:::-;9854:340;9771:423;;;;;:::o;10213:338::-;10268:5;10317:3;10310:4;10302:6;10298:17;10294:27;10284:122;;10325:79;;:::i;:::-;10284:122;10442:6;10429:20;10467:78;10541:3;10533:6;10526:4;10518:6;10514:17;10467:78;:::i;:::-;10458:87;;10274:277;10213:338;;;;:::o;10557:943::-;10652:6;10660;10668;10676;10725:3;10713:9;10704:7;10700:23;10696:33;10693:120;;;10732:79;;:::i;:::-;10693:120;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10979:2;11005:53;11050:7;11041:6;11030:9;11026:22;11005:53;:::i;:::-;10995:63;;10950:118;11107:2;11133:53;11178:7;11169:6;11158:9;11154:22;11133:53;:::i;:::-;11123:63;;11078:118;11263:2;11252:9;11248:18;11235:32;11294:18;11286:6;11283:30;11280:117;;;11316:79;;:::i;:::-;11280:117;11421:62;11475:7;11466:6;11455:9;11451:22;11421:62;:::i;:::-;11411:72;;11206:287;10557:943;;;;;;;:::o;11506:474::-;11574:6;11582;11631:2;11619:9;11610:7;11606:23;11602:32;11599:119;;;11637:79;;:::i;:::-;11599:119;11757:1;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11728:117;11884:2;11910:53;11955:7;11946:6;11935:9;11931:22;11910:53;:::i;:::-;11900:63;;11855:118;11506:474;;;;;:::o;11986:180::-;12034:77;12031:1;12024:88;12131:4;12128:1;12121:15;12155:4;12152:1;12145:15;12172:320;12216:6;12253:1;12247:4;12243:12;12233:22;;12300:1;12294:4;12290:12;12321:18;12311:81;;12377:4;12369:6;12365:17;12355:27;;12311:81;12439:2;12431:6;12428:14;12408:18;12405:38;12402:84;;12458:18;;:::i;:::-;12402:84;12223:269;12172:320;;;:::o;12498:182::-;12638:34;12634:1;12626:6;12622:14;12615:58;12498:182;:::o;12686:366::-;12828:3;12849:67;12913:2;12908:3;12849:67;:::i;:::-;12842:74;;12925:93;13014:3;12925:93;:::i;:::-;13043:2;13038:3;13034:12;13027:19;;12686:366;;;:::o;13058:419::-;13224:4;13262:2;13251:9;13247:18;13239:26;;13311:9;13305:4;13301:20;13297:1;13286:9;13282:17;13275:47;13339:131;13465:4;13339:131;:::i;:::-;13331:139;;13058:419;;;:::o;13483:147::-;13584:11;13621:3;13606:18;;13483:147;;;;:::o;13636:114::-;;:::o;13756:398::-;13915:3;13936:83;14017:1;14012:3;13936:83;:::i;:::-;13929:90;;14028:93;14117:3;14028:93;:::i;:::-;14146:1;14141:3;14137:11;14130:18;;13756:398;;;:::o;14160:379::-;14344:3;14366:147;14509:3;14366:147;:::i;:::-;14359:154;;14530:3;14523:10;;14160:379;;;:::o;14545:166::-;14685:18;14681:1;14673:6;14669:14;14662:42;14545:166;:::o;14717:366::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:419::-;15255:4;15293:2;15282:9;15278:18;15270:26;;15342:9;15336:4;15332:20;15328:1;15317:9;15313:17;15306:47;15370:131;15496:4;15370:131;:::i;:::-;15362:139;;15089:419;;;:::o;15514:141::-;15563:4;15586:3;15578:11;;15609:3;15606:1;15599:14;15643:4;15640:1;15630:18;15622:26;;15514:141;;;:::o;15661:93::-;15698:6;15745:2;15740;15733:5;15729:14;15725:23;15715:33;;15661:93;;;:::o;15760:107::-;15804:8;15854:5;15848:4;15844:16;15823:37;;15760:107;;;;:::o;15873:393::-;15942:6;15992:1;15980:10;15976:18;16015:97;16045:66;16034:9;16015:97;:::i;:::-;16133:39;16163:8;16152:9;16133:39;:::i;:::-;16121:51;;16205:4;16201:9;16194:5;16190:21;16181:30;;16254:4;16244:8;16240:19;16233:5;16230:30;16220:40;;15949:317;;15873:393;;;;;:::o;16272:60::-;16300:3;16321:5;16314:12;;16272:60;;;:::o;16338:142::-;16388:9;16421:53;16439:34;16448:24;16466:5;16448:24;:::i;:::-;16439:34;:::i;:::-;16421:53;:::i;:::-;16408:66;;16338:142;;;:::o;16486:75::-;16529:3;16550:5;16543:12;;16486:75;;;:::o;16567:269::-;16677:39;16708:7;16677:39;:::i;:::-;16738:91;16787:41;16811:16;16787:41;:::i;:::-;16779:6;16772:4;16766:11;16738:91;:::i;:::-;16732:4;16725:105;16643:193;16567:269;;;:::o;16842:73::-;16887:3;16842:73;:::o;16921:189::-;16998:32;;:::i;:::-;17039:65;17097:6;17089;17083:4;17039:65;:::i;:::-;16974:136;16921:189;;:::o;17116:186::-;17176:120;17193:3;17186:5;17183:14;17176:120;;;17247:39;17284:1;17277:5;17247:39;:::i;:::-;17220:1;17213:5;17209:13;17200:22;;17176:120;;;17116:186;;:::o;17308:543::-;17409:2;17404:3;17401:11;17398:446;;;17443:38;17475:5;17443:38;:::i;:::-;17527:29;17545:10;17527:29;:::i;:::-;17517:8;17513:44;17710:2;17698:10;17695:18;17692:49;;;17731:8;17716:23;;17692:49;17754:80;17810:22;17828:3;17810:22;:::i;:::-;17800:8;17796:37;17783:11;17754:80;:::i;:::-;17413:431;;17398:446;17308:543;;;:::o;17857:117::-;17911:8;17961:5;17955:4;17951:16;17930:37;;17857:117;;;;:::o;17980:169::-;18024:6;18057:51;18105:1;18101:6;18093:5;18090:1;18086:13;18057:51;:::i;:::-;18053:56;18138:4;18132;18128:15;18118:25;;18031:118;17980:169;;;;:::o;18154:295::-;18230:4;18376:29;18401:3;18395:4;18376:29;:::i;:::-;18368:37;;18438:3;18435:1;18431:11;18425:4;18422:21;18414:29;;18154:295;;;;:::o;18454:1395::-;18571:37;18604:3;18571:37;:::i;:::-;18673:18;18665:6;18662:30;18659:56;;;18695:18;;:::i;:::-;18659:56;18739:38;18771:4;18765:11;18739:38;:::i;:::-;18824:67;18884:6;18876;18870:4;18824:67;:::i;:::-;18918:1;18942:4;18929:17;;18974:2;18966:6;18963:14;18991:1;18986:618;;;;19648:1;19665:6;19662:77;;;19714:9;19709:3;19705:19;19699:26;19690:35;;19662:77;19765:67;19825:6;19818:5;19765:67;:::i;:::-;19759:4;19752:81;19621:222;18956:887;;18986:618;19038:4;19034:9;19026:6;19022:22;19072:37;19104:4;19072:37;:::i;:::-;19131:1;19145:208;19159:7;19156:1;19153:14;19145:208;;;19238:9;19233:3;19229:19;19223:26;19215:6;19208:42;19289:1;19281:6;19277:14;19267:24;;19336:2;19325:9;19321:18;19308:31;;19182:4;19179:1;19175:12;19170:17;;19145:208;;;19381:6;19372:7;19369:19;19366:179;;;19439:9;19434:3;19430:19;19424:26;19482:48;19524:4;19516:6;19512:17;19501:9;19482:48;:::i;:::-;19474:6;19467:64;19389:156;19366:179;19591:1;19587;19579:6;19575:14;19571:22;19565:4;19558:36;18993:611;;;18956:887;;18546:1303;;;18454:1395;;:::o;19855:180::-;19903:77;19900:1;19893:88;20000:4;19997:1;19990:15;20024:4;20021:1;20014:15;20041:191;20081:3;20100:20;20118:1;20100:20;:::i;:::-;20095:25;;20134:20;20152:1;20134:20;:::i;:::-;20129:25;;20177:1;20174;20170:9;20163:16;;20198:3;20195:1;20192:10;20189:36;;;20205:18;;:::i;:::-;20189:36;20041:191;;;;:::o;20238:170::-;20378:22;20374:1;20366:6;20362:14;20355:46;20238:170;:::o;20414:366::-;20556:3;20577:67;20641:2;20636:3;20577:67;:::i;:::-;20570:74;;20653:93;20742:3;20653:93;:::i;:::-;20771:2;20766:3;20762:12;20755:19;;20414:366;;;:::o;20786:419::-;20952:4;20990:2;20979:9;20975:18;20967:26;;21039:9;21033:4;21029:20;21025:1;21014:9;21010:17;21003:47;21067:131;21193:4;21067:131;:::i;:::-;21059:139;;20786:419;;;:::o;21211:157::-;21351:9;21347:1;21339:6;21335:14;21328:33;21211:157;:::o;21374:365::-;21516:3;21537:66;21601:1;21596:3;21537:66;:::i;:::-;21530:73;;21612:93;21701:3;21612:93;:::i;:::-;21730:2;21725:3;21721:12;21714:19;;21374:365;;;:::o;21745:419::-;21911:4;21949:2;21938:9;21934:18;21926:26;;21998:9;21992:4;21988:20;21984:1;21973:9;21969:17;21962:47;22026:131;22152:4;22026:131;:::i;:::-;22018:139;;21745:419;;;:::o;22170:169::-;22310:21;22306:1;22298:6;22294:14;22287:45;22170:169;:::o;22345:366::-;22487:3;22508:67;22572:2;22567:3;22508:67;:::i;:::-;22501:74;;22584:93;22673:3;22584:93;:::i;:::-;22702:2;22697:3;22693:12;22686:19;;22345:366;;;:::o;22717:419::-;22883:4;22921:2;22910:9;22906:18;22898:26;;22970:9;22964:4;22960:20;22956:1;22945:9;22941:17;22934:47;22998:131;23124:4;22998:131;:::i;:::-;22990:139;;22717:419;;;:::o;23142:194::-;23182:4;23202:20;23220:1;23202:20;:::i;:::-;23197:25;;23236:20;23254:1;23236:20;:::i;:::-;23231:25;;23280:1;23277;23273:9;23265:17;;23304:1;23298:4;23295:11;23292:37;;;23309:18;;:::i;:::-;23292:37;23142:194;;;;:::o;23342:410::-;23382:7;23405:20;23423:1;23405:20;:::i;:::-;23400:25;;23439:20;23457:1;23439:20;:::i;:::-;23434:25;;23494:1;23491;23487:9;23516:30;23534:11;23516:30;:::i;:::-;23505:41;;23695:1;23686:7;23682:15;23679:1;23676:22;23656:1;23649:9;23629:83;23606:139;;23725:18;;:::i;:::-;23606:139;23390:362;23342:410;;;;:::o;23758:182::-;23898:34;23894:1;23886:6;23882:14;23875:58;23758:182;:::o;23946:366::-;24088:3;24109:67;24173:2;24168:3;24109:67;:::i;:::-;24102:74;;24185:93;24274:3;24185:93;:::i;:::-;24303:2;24298:3;24294:12;24287:19;;23946:366;;;:::o;24318:419::-;24484:4;24522:2;24511:9;24507:18;24499:26;;24571:9;24565:4;24561:20;24557:1;24546:9;24542:17;24535:47;24599:131;24725:4;24599:131;:::i;:::-;24591:139;;24318:419;;;:::o;24743:158::-;24883:10;24879:1;24871:6;24867:14;24860:34;24743:158;:::o;24907:365::-;25049:3;25070:66;25134:1;25129:3;25070:66;:::i;:::-;25063:73;;25145:93;25234:3;25145:93;:::i;:::-;25263:2;25258:3;25254:12;25247:19;;24907:365;;;:::o;25278:419::-;25444:4;25482:2;25471:9;25467:18;25459:26;;25531:9;25525:4;25521:20;25517:1;25506:9;25502:17;25495:47;25559:131;25685:4;25559:131;:::i;:::-;25551:139;;25278:419;;;:::o;25703:234::-;25843:34;25839:1;25831:6;25827:14;25820:58;25912:17;25907:2;25899:6;25895:15;25888:42;25703:234;:::o;25943:366::-;26085:3;26106:67;26170:2;26165:3;26106:67;:::i;:::-;26099:74;;26182:93;26271:3;26182:93;:::i;:::-;26300:2;26295:3;26291:12;26284:19;;25943:366;;;:::o;26315:419::-;26481:4;26519:2;26508:9;26504:18;26496:26;;26568:9;26562:4;26558:20;26554:1;26543:9;26539:17;26532:47;26596:131;26722:4;26596:131;:::i;:::-;26588:139;;26315:419;;;:::o;26740:148::-;26842:11;26879:3;26864:18;;26740:148;;;;:::o;26918:874::-;27021:3;27058:5;27052:12;27087:36;27113:9;27087:36;:::i;:::-;27139:89;27221:6;27216:3;27139:89;:::i;:::-;27132:96;;27259:1;27248:9;27244:17;27275:1;27270:166;;;;27450:1;27445:341;;;;27237:549;;27270:166;27354:4;27350:9;27339;27335:25;27330:3;27323:38;27416:6;27409:14;27402:22;27394:6;27390:35;27385:3;27381:45;27374:52;;27270:166;;27445:341;27512:38;27544:5;27512:38;:::i;:::-;27572:1;27586:154;27600:6;27597:1;27594:13;27586:154;;;27674:7;27668:14;27664:1;27659:3;27655:11;27648:35;27724:1;27715:7;27711:15;27700:26;;27622:4;27619:1;27615:12;27610:17;;27586:154;;;27769:6;27764:3;27760:16;27753:23;;27452:334;;27237:549;;27025:767;;26918:874;;;;:::o;27798:390::-;27904:3;27932:39;27965:5;27932:39;:::i;:::-;27987:89;28069:6;28064:3;27987:89;:::i;:::-;27980:96;;28085:65;28143:6;28138:3;28131:4;28124:5;28120:16;28085:65;:::i;:::-;28175:6;28170:3;28166:16;28159:23;;27908:280;27798:390;;;;:::o;28194:155::-;28334:7;28330:1;28322:6;28318:14;28311:31;28194:155;:::o;28355:400::-;28515:3;28536:84;28618:1;28613:3;28536:84;:::i;:::-;28529:91;;28629:93;28718:3;28629:93;:::i;:::-;28747:1;28742:3;28738:11;28731:18;;28355:400;;;:::o;28761:695::-;29039:3;29061:92;29149:3;29140:6;29061:92;:::i;:::-;29054:99;;29170:95;29261:3;29252:6;29170:95;:::i;:::-;29163:102;;29282:148;29426:3;29282:148;:::i;:::-;29275:155;;29447:3;29440:10;;28761:695;;;;;:::o;29462:225::-;29602:34;29598:1;29590:6;29586:14;29579:58;29671:8;29666:2;29658:6;29654:15;29647:33;29462:225;:::o;29693:366::-;29835:3;29856:67;29920:2;29915:3;29856:67;:::i;:::-;29849:74;;29932:93;30021:3;29932:93;:::i;:::-;30050:2;30045:3;30041:12;30034:19;;29693:366;;;:::o;30065:419::-;30231:4;30269:2;30258:9;30254:18;30246:26;;30318:9;30312:4;30308:20;30304:1;30293:9;30289:17;30282:47;30346:131;30472:4;30346:131;:::i;:::-;30338:139;;30065:419;;;:::o;30490:98::-;30541:6;30575:5;30569:12;30559:22;;30490:98;;;:::o;30594:168::-;30677:11;30711:6;30706:3;30699:19;30751:4;30746:3;30742:14;30727:29;;30594:168;;;;:::o;30768:373::-;30854:3;30882:38;30914:5;30882:38;:::i;:::-;30936:70;30999:6;30994:3;30936:70;:::i;:::-;30929:77;;31015:65;31073:6;31068:3;31061:4;31054:5;31050:16;31015:65;:::i;:::-;31105:29;31127:6;31105:29;:::i;:::-;31100:3;31096:39;31089:46;;30858:283;30768:373;;;;:::o;31147:640::-;31342:4;31380:3;31369:9;31365:19;31357:27;;31394:71;31462:1;31451:9;31447:17;31438:6;31394:71;:::i;:::-;31475:72;31543:2;31532:9;31528:18;31519:6;31475:72;:::i;:::-;31557;31625:2;31614:9;31610:18;31601:6;31557:72;:::i;:::-;31676:9;31670:4;31666:20;31661:2;31650:9;31646:18;31639:48;31704:76;31775:4;31766:6;31704:76;:::i;:::-;31696:84;;31147:640;;;;;;;:::o;31793:141::-;31849:5;31880:6;31874:13;31865:22;;31896:32;31922:5;31896:32;:::i;:::-;31793:141;;;;:::o;31940:349::-;32009:6;32058:2;32046:9;32037:7;32033:23;32029:32;32026:119;;;32064:79;;:::i;:::-;32026:119;32184:1;32209:63;32264:7;32255:6;32244:9;32240:22;32209:63;:::i;:::-;32199:73;;32155:127;31940:349;;;;:::o;32295:233::-;32334:3;32357:24;32375:5;32357:24;:::i;:::-;32348:33;;32403:66;32396:5;32393:77;32390:103;;32473:18;;:::i;:::-;32390:103;32520:1;32513:5;32509:13;32502:20;;32295:233;;;:::o;32534:180::-;32582:77;32579:1;32572:88;32679:4;32676:1;32669:15;32703:4;32700:1;32693:15;32720:185;32760:1;32777:20;32795:1;32777:20;:::i;:::-;32772:25;;32811:20;32829:1;32811:20;:::i;:::-;32806:25;;32850:1;32840:35;;32855:18;;:::i;:::-;32840:35;32897:1;32894;32890:9;32885:14;;32720:185;;;;:::o;32911:176::-;32943:1;32960:20;32978:1;32960:20;:::i;:::-;32955:25;;32994:20;33012:1;32994:20;:::i;:::-;32989:25;;33033:1;33023:35;;33038:18;;:::i;:::-;33023:35;33079:1;33076;33072:9;33067:14;;32911:176;;;;:::o;33093:180::-;33141:77;33138:1;33131:88;33238:4;33235:1;33228:15;33262:4;33259:1;33252:15

Swarm Source

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