ETH Price: $3,417.28 (-0.63%)
Gas: 1 Gwei

Token

Toybirds (TOYBIRD)
 

Overview

Max Total Supply

3,000 TOYBIRD

Holders

1,354

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
23656.eth
Balance
1 TOYBIRD
0xdbaf4a9193f60ab43a3077a0b42bd7211e9c7df4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

3,000 Toybirds are being assembled on the Ethereum Blockchain. Birbs have been transformed into toys!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TOYBIRDS

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;






enum ContractStatus {
        disable,
        whitelist,
        open
    }

contract TOYBIRDS is Ownable, ERC721A, ERC2981, ReentrancyGuard {
    bytes32 public rootHash =
        0x15fe95d79678244fdf487ef03caada0a0273930894ececd9f9ffa666bb74710f;

    ContractStatus public CONTRACT_STATUS = ContractStatus.disable;

    uint96 public immutable ROYALTY_FEE_NUMERATOR = 750;

    uint256 public immutable MAX_FREE_PER_WALLET = 1;
    uint256 public immutable MAX_TX_PER_WALLET = 2;
    uint256 public immutable PRICE = 0.012 ether;
    uint256 public immutable TOTAL_SUPPLY = 3000;
    uint256 public immutable WHITELIST_TOTAL_SUPPLY = 3000;
    string public uriSuffix = '.json';

    string internal baseURI = "";

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

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

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

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

    constructor() ERC721A("Toybirds", "TOYBIRD") {
        _setDefaultRoyalty(owner(), ROYALTY_FEE_NUMERATOR);
    }

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

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

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        rootHash = _merkleRoot;
    }

    function isWhitelisted(bytes32[] memory merkleProof)
        public
        view
        returns (bool)
    {
        bytes memory encodedUserAddress = abi.encodePacked(msg.sender);
        bytes32 leaf = keccak256(encodedUserAddress);
        bool isProofValid = MerkleProof.verify(merkleProof, rootHash, leaf);

        return isProofValid;
    }

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

    function whitelistMint(uint256 quantity, bytes32[] memory merkleProof)
        public
        payable
        virtual
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(CONTRACT_STATUS == ContractStatus.whitelist,"Not in whitelist mint stage");
        require(totalSupply() + quantity <= WHITELIST_TOTAL_SUPPLY, "Max whitelist mint supply reached");
        require(isWhitelisted(merkleProof), "Invalid Proof");

        _mint(msg.sender, quantity);
    }

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

        _mint(msg.sender, quantity);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_STATUS","outputs":[{"internalType":"enum ContractStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE_NUMERATOR","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupplyLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyerAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ContractStatus","name":"status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f15fe95d79678244fdf487ef03caada0a0273930894ececd9f9ffa666bb74710f60001b600c556000600d60006101000a81548160ff0219169083600281111562000055576200005462000598565b5b02179055506102ee6bffffffffffffffffffffffff166080906bffffffffffffffffffffffff16815250600160a090815250600260c090815250662aa1efb94e000060e090815250610bb861010090815250610bb8610120908152506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000fe929190620004e8565b5060405180602001604052806000815250600f908051906020019062000126929190620004e8565b503480156200013457600080fd5b506040518060400160405280600881526020017f546f7962697264730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f544f594249524400000000000000000000000000000000000000000000000000815250620001c1620001b56200023c60201b60201c565b6200024460201b60201c565b8160039080519060200190620001d9929190620004e8565b508060049080519060200190620001f2929190620004e8565b50620002036200030860201b60201c565b60018190555050506001600b8190555062000236620002276200031160201b60201c565b6080516200033a60201b60201c565b62000747565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200034a620004de60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620003ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a2906200064e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200041e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041590620006c0565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b828054620004f69062000711565b90600052602060002090601f0160209004810192826200051a576000855562000566565b82601f106200053557805160ff191683800117855562000566565b8280016001018555821562000566579182015b828111156200056557825182559160200191906001019062000548565b5b50905062000575919062000579565b5090565b5b80821115620005945760008160009055506001016200057a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000636602a83620005c7565b91506200064382620005d8565b604082019050919050565b60006020820190508181036000830152620006698162000627565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000620006a8601983620005c7565b9150620006b58262000670565b602082019050919050565b60006020820190508181036000830152620006db8162000699565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200072a57607f821691505b60208210811415620007415762000740620006e2565b5b50919050565b60805160a05160c05160e05161010051610120516143bb620007dd6000396000818161202c0152612102015260008181611193015281816115cf01528181611a0801528181611e7d01526121300152600081816119bb01528181612646015261267701526000818161120901528181611abe0152611ef3015260008181611ae2015261261a0152600061170901526143bb6000f3fe6080604052600436106102255760003560e01c8063715018a6116101235780639a9c1bb1116100ab578063d2cab0561161006f578063d2cab056146107fb578063d64150d214610817578063defcbacb14610842578063e985e9c51461086d578063f2fde38b146108aa57610225565b80639a9c1bb114610704578063a22cb46514610741578063b88d4fde1461076a578063bf7b779c14610793578063c87b56dd146107be57610225565b80638da5cb5b116100f25780638da5cb5b1461062d578063902d55a51461065857806395d89b4114610683578063975e840e146106ae57806398710d1e146106d957610225565b8063715018a6146105ab5780637cb64759146105c2578063853828b6146105eb5780638d859f3e1461060257610225565b80632db11544116101b15780635503a0e8116101755780635503a0e8146104b257806355850fe6146104dd57806355f804b3146105085780636352211e1461053157806370a082311461056e57610225565b80632db11544146103f25780632e1a7d4d1461040e5780632e49d78b1461043757806335001a1a1461046057806342842e0e1461048957610225565b8063095ea7b3116101f8578063095ea7b31461030c57806318160ddd146103355780631d80009a1461036057806323b872dd1461038b5780632a55205a146103b457610225565b806301ffc9a71461022a578063069824fb1461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612f2f565b6108d3565b60405161025e9190612f77565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613121565b610905565b60405161029b9190612f77565b60405180910390f35b3480156102b057600080fd5b506102b9610952565b6040516102c691906131f2565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061324a565b6109e4565b60405161030391906132b8565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906132ff565b610a63565b005b34801561034157600080fd5b5061034a610ba7565b604051610357919061334e565b60405180910390f35b34801561036c57600080fd5b50610375610bbe565b6040516103829190613378565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190613393565b610bc4565b005b3480156103c057600080fd5b506103db60048036038101906103d691906133e6565b610ee9565b6040516103e9929190613426565b60405180910390f35b61040c6004803603810190610407919061324a565b6110d4565b005b34801561041a57600080fd5b506104356004803603810190610430919061324a565b611357565b005b34801561044357600080fd5b5061045e60048036038101906104599190613474565b6114d3565b005b34801561046c57600080fd5b50610487600480360381019061048291906132ff565b611508565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613393565b611659565b005b3480156104be57600080fd5b506104c7611679565b6040516104d491906131f2565b60405180910390f35b3480156104e957600080fd5b506104f2611707565b6040516104ff91906134c8565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613598565b61172b565b005b34801561053d57600080fd5b506105586004803603810190610553919061324a565b61174d565b60405161056591906132b8565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906135e1565b61175f565b6040516105a2919061334e565b60405180910390f35b3480156105b757600080fd5b506105c0611818565b005b3480156105ce57600080fd5b506105e960048036038101906105e4919061360e565b61182c565b005b3480156105f757600080fd5b5061060061183e565b005b34801561060e57600080fd5b506106176119b9565b604051610624919061334e565b60405180910390f35b34801561063957600080fd5b506106426119dd565b60405161064f91906132b8565b60405180910390f35b34801561066457600080fd5b5061066d611a06565b60405161067a919061334e565b60405180910390f35b34801561068f57600080fd5b50610698611a2a565b6040516106a591906131f2565b60405180910390f35b3480156106ba57600080fd5b506106c3611abc565b6040516106d0919061334e565b60405180910390f35b3480156106e557600080fd5b506106ee611ae0565b6040516106fb919061334e565b60405180910390f35b34801561071057600080fd5b5061072b600480360381019061072691906135e1565b611b04565b604051610738919061334e565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613667565b611b16565b005b34801561077657600080fd5b50610791600480360381019061078c9190613748565b611c8e565b005b34801561079f57600080fd5b506107a8611d01565b6040516107b59190613842565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e0919061324a565b611d14565b6040516107f291906131f2565b60405180910390f35b6108156004803603810190610810919061385d565b611dbe565b005b34801561082357600080fd5b5061082c612100565b604051610839919061334e565b60405180910390f35b34801561084e57600080fd5b50610857612124565b604051610864919061334e565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906138b9565b61215e565b6040516108a19190612f77565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906135e1565b6121f2565b005b60006108de82612276565b806108ee57506108ed82612308565b5b806108fe57506108fd82612308565b5b9050919050565b600080336040516020016109199190613941565b6040516020818303038152906040529050600081805190602001209050600061094585600c5484612382565b9050809350505050919050565b6060600380546109619061398b565b80601f016020809104026020016040519081016040528092919081815260200182805461098d9061398b565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109ef82612399565b610a25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6e8261174d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8f6123f8565b73ffffffffffffffffffffffffffffffffffffffff1614610af257610abb81610ab66123f8565b61215e565b610af1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bb1612400565b6002546001540303905090565b600c5481565b6000610bcf82612409565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c42846124d7565b91509150610c588187610c536123f8565b6124fe565b610ca457610c6d86610c686123f8565b61215e565b610ca3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d0b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d188686866001612542565b8015610d2357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610df185610dcd888887612548565b7c020000000000000000000000000000000000000000000000000000000017612570565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e79576000600185019050600060056000838152602001908152602001600020541415610e77576001548114610e76578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee1868686600161259b565b505050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561107f5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006110896125a1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110b591906139ec565b6110bf9190613a75565b90508160000151819350935050509250929050565b6002600b54141561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613b5e565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000816111bb610ba7565b6111c59190613b7e565b1115611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c20565b60405180910390fd5b817f000000000000000000000000000000000000000000000000000000000000000081611232336125ab565b61123c9190613b7e565b111561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613c8c565b60405180910390fd5b826112883382612602565b3410156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190613cf8565b60405180910390fd5b6002808111156112dd576112dc6137cb565b5b600d60009054906101000a900460ff1660028111156112ff576112fe6137cb565b5b1461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613d64565b60405180910390fd5b61134933856126aa565b5050506001600b8190555050565b61135f612868565b6002600b5414156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290613b5e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161144190613db5565b60006040518083038185875af1925050503d806000811461147e576040519150601f19603f3d011682016040523d82523d6000602084013e611483565b606091505b50509050806114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613e16565b60405180910390fd5b506001600b8190555050565b6114db612868565b80600d60006101000a81548160ff02191690836002811115611500576114ff6137cb565b5b021790555050565b611510612868565b6002600b541415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613b5e565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000816115f7610ba7565b6116019190613b7e565b1115611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613c20565b60405180910390fd5b61164c83836126aa565b506001600b819055505050565b61167483838360405180602001604052806000815250611c8e565b505050565b600e80546116869061398b565b80601f01602080910402602001604051908101604052809291908181526020018280546116b29061398b565b80156116ff5780601f106116d4576101008083540402835291602001916116ff565b820191906000526020600020905b8154815290600101906020018083116116e257829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b611733612868565b80600f9080519060200190611749929190612e20565b5050565b600061175882612409565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611820612868565b61182a60006128e6565b565b611834612868565b80600c8190555050565b611846612868565b6002600b54141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613b5e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161192890613db5565b60006040518083038185875af1925050503d8060008114611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b50509050806119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a590613e16565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b606060048054611a399061398b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a659061398b565b8015611ab25780601f10611a8757610100808354040283529160200191611ab2565b820191906000526020600020905b815481529060010190602001808311611a9557829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000611b0f826125ab565b9050919050565b611b1e6123f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b83576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611b906123f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c3d6123f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c829190612f77565b60405180910390a35050565b611c99848484610bc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cfb57611cc4848484846129aa565b611cfa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff1681565b6060611d1f82612399565b611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613ea8565b60405180910390fd5b6000611d68612b0a565b90506000815111611d885760405180602001604052806000815250611db6565b80611d9284612b9c565b600e604051602001611da693929190613f98565b6040516020818303038152906040525b915050919050565b6002600b541415611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190613b5e565b60405180910390fd5b817f000000000000000000000000000000000000000000000000000000000000000081611ea5610ba7565b611eaf9190613b7e565b1115611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613c20565b60405180910390fd5b827f000000000000000000000000000000000000000000000000000000000000000081611f1c336125ab565b611f269190613b7e565b1115611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613c8c565b60405180910390fd5b83611f723382612602565b341015611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613cf8565b60405180910390fd5b60016002811115611fc857611fc76137cb565b5b600d60009054906101000a900460ff166002811115611fea57611fe96137cb565b5b1461202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613d64565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000085612054610ba7565b61205e9190613b7e565b111561209f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120969061403b565b60405180910390fd5b6120a884610905565b6120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de906140a7565b60405180910390fd5b6120f133866126aa565b5050506001600b819055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061212e610ba7565b7f000000000000000000000000000000000000000000000000000000000000000061215991906140c7565b905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121fa612868565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561226a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122619061416d565b60405180910390fd5b612273816128e6565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122d157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123015750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061237b575061237a82612cfd565b5b9050919050565b60008261238f8584612d67565b1490509392505050565b6000816123a4612400565b111580156123b3575060015482105b80156123f1575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612418612400565b116124a05760015481101561249f5760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561249d575b6000811415612493576005600083600190039350838152602001908152602001600020549050612468565b80925050506124d2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861255f868684612dbd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000806000612610856125ab565b11905080612674577f00000000000000000000000000000000000000000000000000000000000000008361264491906140c7565b7f000000000000000000000000000000000000000000000000000000000000000061266f91906139ec565b6126a1565b827f00000000000000000000000000000000000000000000000000000000000000006126a091906139ec565b5b91505092915050565b6000600154905060008214156126ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f96000848385612542565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612770836127616000866000612548565b61276a85612dc6565b17612570565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461281157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127d6565b50600082141561284d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612863600084838561259b565b505050565b612870612dd6565b73ffffffffffffffffffffffffffffffffffffffff1661288e6119dd565b73ffffffffffffffffffffffffffffffffffffffff16146128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db906141d9565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d06123f8565b8786866040518563ffffffff1660e01b81526004016129f2949392919061424e565b602060405180830381600087803b158015612a0c57600080fd5b505af1925050508015612a3d57506040513d601f19601f82011682018060405250810190612a3a91906142af565b60015b612ab7573d8060008114612a6d576040519150601f19603f3d011682016040523d82523d6000602084013e612a72565b606091505b50600081511415612aaf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612b199061398b565b80601f0160208091040260200160405190810160405280929190818152602001828054612b459061398b565b8015612b925780601f10612b6757610100808354040283529160200191612b92565b820191906000526020600020905b815481529060010190602001808311612b7557829003601f168201915b5050505050905090565b60606000821415612be4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cf8565b600082905060005b60008214612c16578080612bff906142dc565b915050600a82612c0f9190613a75565b9150612bec565b60008167ffffffffffffffff811115612c3257612c31612fa8565b5b6040519080825280601f01601f191660200182016040528015612c645781602001600182028036833780820191505090505b5090505b60008514612cf157600182612c7d91906140c7565b9150600a85612c8c9190614325565b6030612c989190613b7e565b60f81b818381518110612cae57612cad614356565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cea9190613a75565b9450612c68565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b8451811015612db257612d9d82868381518110612d9057612d8f614356565b5b6020026020010151612dde565b91508080612daa906142dc565b915050612d70565b508091505092915050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b6000818310612df657612df18284612e09565b612e01565b612e008383612e09565b5b905092915050565b600082600052816020526040600020905092915050565b828054612e2c9061398b565b90600052602060002090601f016020900481019282612e4e5760008555612e95565b82601f10612e6757805160ff1916838001178555612e95565b82800160010185558215612e95579182015b82811115612e94578251825591602001919060010190612e79565b5b509050612ea29190612ea6565b5090565b5b80821115612ebf576000816000905550600101612ea7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f0c81612ed7565b8114612f1757600080fd5b50565b600081359050612f2981612f03565b92915050565b600060208284031215612f4557612f44612ecd565b5b6000612f5384828501612f1a565b91505092915050565b60008115159050919050565b612f7181612f5c565b82525050565b6000602082019050612f8c6000830184612f68565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fe082612f97565b810181811067ffffffffffffffff82111715612fff57612ffe612fa8565b5b80604052505050565b6000613012612ec3565b905061301e8282612fd7565b919050565b600067ffffffffffffffff82111561303e5761303d612fa8565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61306781613054565b811461307257600080fd5b50565b6000813590506130848161305e565b92915050565b600061309d61309884613023565b613008565b905080838252602082019050602084028301858111156130c0576130bf61304f565b5b835b818110156130e957806130d58882613075565b8452602084019350506020810190506130c2565b5050509392505050565b600082601f83011261310857613107612f92565b5b813561311884826020860161308a565b91505092915050565b60006020828403121561313757613136612ecd565b5b600082013567ffffffffffffffff81111561315557613154612ed2565b5b613161848285016130f3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131a4578082015181840152602081019050613189565b838111156131b3576000848401525b50505050565b60006131c48261316a565b6131ce8185613175565b93506131de818560208601613186565b6131e781612f97565b840191505092915050565b6000602082019050818103600083015261320c81846131b9565b905092915050565b6000819050919050565b61322781613214565b811461323257600080fd5b50565b6000813590506132448161321e565b92915050565b6000602082840312156132605761325f612ecd565b5b600061326e84828501613235565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132a282613277565b9050919050565b6132b281613297565b82525050565b60006020820190506132cd60008301846132a9565b92915050565b6132dc81613297565b81146132e757600080fd5b50565b6000813590506132f9816132d3565b92915050565b6000806040838503121561331657613315612ecd565b5b6000613324858286016132ea565b925050602061333585828601613235565b9150509250929050565b61334881613214565b82525050565b6000602082019050613363600083018461333f565b92915050565b61337281613054565b82525050565b600060208201905061338d6000830184613369565b92915050565b6000806000606084860312156133ac576133ab612ecd565b5b60006133ba868287016132ea565b93505060206133cb868287016132ea565b92505060406133dc86828701613235565b9150509250925092565b600080604083850312156133fd576133fc612ecd565b5b600061340b85828601613235565b925050602061341c85828601613235565b9150509250929050565b600060408201905061343b60008301856132a9565b613448602083018461333f565b9392505050565b6003811061345c57600080fd5b50565b60008135905061346e8161344f565b92915050565b60006020828403121561348a57613489612ecd565b5b60006134988482850161345f565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b6134c2816134a1565b82525050565b60006020820190506134dd60008301846134b9565b92915050565b600080fd5b600067ffffffffffffffff82111561350357613502612fa8565b5b61350c82612f97565b9050602081019050919050565b82818337600083830152505050565b600061353b613536846134e8565b613008565b905082815260208101848484011115613557576135566134e3565b5b613562848285613519565b509392505050565b600082601f83011261357f5761357e612f92565b5b813561358f848260208601613528565b91505092915050565b6000602082840312156135ae576135ad612ecd565b5b600082013567ffffffffffffffff8111156135cc576135cb612ed2565b5b6135d88482850161356a565b91505092915050565b6000602082840312156135f7576135f6612ecd565b5b6000613605848285016132ea565b91505092915050565b60006020828403121561362457613623612ecd565b5b600061363284828501613075565b91505092915050565b61364481612f5c565b811461364f57600080fd5b50565b6000813590506136618161363b565b92915050565b6000806040838503121561367e5761367d612ecd565b5b600061368c858286016132ea565b925050602061369d85828601613652565b9150509250929050565b600067ffffffffffffffff8211156136c2576136c1612fa8565b5b6136cb82612f97565b9050602081019050919050565b60006136eb6136e6846136a7565b613008565b905082815260208101848484011115613707576137066134e3565b5b613712848285613519565b509392505050565b600082601f83011261372f5761372e612f92565b5b813561373f8482602086016136d8565b91505092915050565b6000806000806080858703121561376257613761612ecd565b5b6000613770878288016132ea565b9450506020613781878288016132ea565b935050604061379287828801613235565b925050606085013567ffffffffffffffff8111156137b3576137b2612ed2565b5b6137bf8782880161371a565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061380b5761380a6137cb565b5b50565b600081905061381c826137fa565b919050565b600061382c8261380e565b9050919050565b61383c81613821565b82525050565b60006020820190506138576000830184613833565b92915050565b6000806040838503121561387457613873612ecd565b5b600061388285828601613235565b925050602083013567ffffffffffffffff8111156138a3576138a2612ed2565b5b6138af858286016130f3565b9150509250929050565b600080604083850312156138d0576138cf612ecd565b5b60006138de858286016132ea565b92505060206138ef858286016132ea565b9150509250929050565b60008160601b9050919050565b6000613911826138f9565b9050919050565b600061392382613906565b9050919050565b61393b61393682613297565b613918565b82525050565b600061394d828461392a565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139a357607f821691505b602082108114156139b7576139b661395c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139f782613214565b9150613a0283613214565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3b57613a3a6139bd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a8082613214565b9150613a8b83613214565b925082613a9b57613a9a613a46565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613adc601f83613175565b9150613ae782613aa6565b602082019050919050565b60006020820190508181036000830152613b0b81613acf565b9050919050565b7f496e76616c696420557365720000000000000000000000000000000000000000600082015250565b6000613b48600c83613175565b9150613b5382613b12565b602082019050919050565b60006020820190508181036000830152613b7781613b3b565b9050919050565b6000613b8982613214565b9150613b9483613214565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bc957613bc86139bd565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613c0a601283613175565b9150613c1582613bd4565b602082019050919050565b60006020820190508181036000830152613c3981613bfd565b9050919050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b6000613c76601183613175565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613ce2601283613175565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e742073746167650000000000600082015250565b6000613d4e601b83613175565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b600081905092915050565b50565b6000613d9f600083613d84565b9150613daa82613d8f565b600082019050919050565b6000613dc082613d92565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613e00601083613175565b9150613e0b82613dca565b602082019050919050565b60006020820190508181036000830152613e2f81613df3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e92602f83613175565b9150613e9d82613e36565b604082019050919050565b60006020820190508181036000830152613ec181613e85565b9050919050565b600081905092915050565b6000613ede8261316a565b613ee88185613ec8565b9350613ef8818560208601613186565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613f268161398b565b613f308186613ec8565b94506001821660008114613f4b5760018114613f5c57613f8f565b60ff19831686528186019350613f8f565b613f6585613f04565b60005b83811015613f8757815481890152600182019150602081019050613f68565b838801955050505b50505092915050565b6000613fa48286613ed3565b9150613fb08285613ed3565b9150613fbc8284613f19565b9150819050949350505050565b7f4d61782077686974656c697374206d696e7420737570706c792072656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614025602183613175565b915061403082613fc9565b604082019050919050565b6000602082019050818103600083015261405481614018565b9050919050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b6000614091600d83613175565b915061409c8261405b565b602082019050919050565b600060208201905081810360008301526140c081614084565b9050919050565b60006140d282613214565b91506140dd83613214565b9250828210156140f0576140ef6139bd565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614157602683613175565b9150614162826140fb565b604082019050919050565b600060208201905081810360008301526141868161414a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141c3602083613175565b91506141ce8261418d565b602082019050919050565b600060208201905081810360008301526141f2816141b6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614220826141f9565b61422a8185614204565b935061423a818560208601613186565b61424381612f97565b840191505092915050565b600060808201905061426360008301876132a9565b61427060208301866132a9565b61427d604083018561333f565b818103606083015261428f8184614215565b905095945050505050565b6000815190506142a981612f03565b92915050565b6000602082840312156142c5576142c4612ecd565b5b60006142d38482850161429a565b91505092915050565b60006142e782613214565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431a576143196139bd565b5b600182019050919050565b600061433082613214565b915061433b83613214565b92508261434b5761434a613a46565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220848f1e1f46adb133c788896f21c272b533e51b9c6fa3a729eee3c9cfdc8e80c364736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a6116101235780639a9c1bb1116100ab578063d2cab0561161006f578063d2cab056146107fb578063d64150d214610817578063defcbacb14610842578063e985e9c51461086d578063f2fde38b146108aa57610225565b80639a9c1bb114610704578063a22cb46514610741578063b88d4fde1461076a578063bf7b779c14610793578063c87b56dd146107be57610225565b80638da5cb5b116100f25780638da5cb5b1461062d578063902d55a51461065857806395d89b4114610683578063975e840e146106ae57806398710d1e146106d957610225565b8063715018a6146105ab5780637cb64759146105c2578063853828b6146105eb5780638d859f3e1461060257610225565b80632db11544116101b15780635503a0e8116101755780635503a0e8146104b257806355850fe6146104dd57806355f804b3146105085780636352211e1461053157806370a082311461056e57610225565b80632db11544146103f25780632e1a7d4d1461040e5780632e49d78b1461043757806335001a1a1461046057806342842e0e1461048957610225565b8063095ea7b3116101f8578063095ea7b31461030c57806318160ddd146103355780631d80009a1461036057806323b872dd1461038b5780632a55205a146103b457610225565b806301ffc9a71461022a578063069824fb1461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612f2f565b6108d3565b60405161025e9190612f77565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613121565b610905565b60405161029b9190612f77565b60405180910390f35b3480156102b057600080fd5b506102b9610952565b6040516102c691906131f2565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061324a565b6109e4565b60405161030391906132b8565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906132ff565b610a63565b005b34801561034157600080fd5b5061034a610ba7565b604051610357919061334e565b60405180910390f35b34801561036c57600080fd5b50610375610bbe565b6040516103829190613378565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190613393565b610bc4565b005b3480156103c057600080fd5b506103db60048036038101906103d691906133e6565b610ee9565b6040516103e9929190613426565b60405180910390f35b61040c6004803603810190610407919061324a565b6110d4565b005b34801561041a57600080fd5b506104356004803603810190610430919061324a565b611357565b005b34801561044357600080fd5b5061045e60048036038101906104599190613474565b6114d3565b005b34801561046c57600080fd5b50610487600480360381019061048291906132ff565b611508565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613393565b611659565b005b3480156104be57600080fd5b506104c7611679565b6040516104d491906131f2565b60405180910390f35b3480156104e957600080fd5b506104f2611707565b6040516104ff91906134c8565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613598565b61172b565b005b34801561053d57600080fd5b506105586004803603810190610553919061324a565b61174d565b60405161056591906132b8565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906135e1565b61175f565b6040516105a2919061334e565b60405180910390f35b3480156105b757600080fd5b506105c0611818565b005b3480156105ce57600080fd5b506105e960048036038101906105e4919061360e565b61182c565b005b3480156105f757600080fd5b5061060061183e565b005b34801561060e57600080fd5b506106176119b9565b604051610624919061334e565b60405180910390f35b34801561063957600080fd5b506106426119dd565b60405161064f91906132b8565b60405180910390f35b34801561066457600080fd5b5061066d611a06565b60405161067a919061334e565b60405180910390f35b34801561068f57600080fd5b50610698611a2a565b6040516106a591906131f2565b60405180910390f35b3480156106ba57600080fd5b506106c3611abc565b6040516106d0919061334e565b60405180910390f35b3480156106e557600080fd5b506106ee611ae0565b6040516106fb919061334e565b60405180910390f35b34801561071057600080fd5b5061072b600480360381019061072691906135e1565b611b04565b604051610738919061334e565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613667565b611b16565b005b34801561077657600080fd5b50610791600480360381019061078c9190613748565b611c8e565b005b34801561079f57600080fd5b506107a8611d01565b6040516107b59190613842565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e0919061324a565b611d14565b6040516107f291906131f2565b60405180910390f35b6108156004803603810190610810919061385d565b611dbe565b005b34801561082357600080fd5b5061082c612100565b604051610839919061334e565b60405180910390f35b34801561084e57600080fd5b50610857612124565b604051610864919061334e565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906138b9565b61215e565b6040516108a19190612f77565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906135e1565b6121f2565b005b60006108de82612276565b806108ee57506108ed82612308565b5b806108fe57506108fd82612308565b5b9050919050565b600080336040516020016109199190613941565b6040516020818303038152906040529050600081805190602001209050600061094585600c5484612382565b9050809350505050919050565b6060600380546109619061398b565b80601f016020809104026020016040519081016040528092919081815260200182805461098d9061398b565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109ef82612399565b610a25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6e8261174d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8f6123f8565b73ffffffffffffffffffffffffffffffffffffffff1614610af257610abb81610ab66123f8565b61215e565b610af1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bb1612400565b6002546001540303905090565b600c5481565b6000610bcf82612409565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c42846124d7565b91509150610c588187610c536123f8565b6124fe565b610ca457610c6d86610c686123f8565b61215e565b610ca3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d0b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d188686866001612542565b8015610d2357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610df185610dcd888887612548565b7c020000000000000000000000000000000000000000000000000000000017612570565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e79576000600185019050600060056000838152602001908152602001600020541415610e77576001548114610e76578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee1868686600161259b565b505050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561107f5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006110896125a1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110b591906139ec565b6110bf9190613a75565b90508160000151819350935050509250929050565b6002600b54141561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613b5e565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000bb8816111bb610ba7565b6111c59190613b7e565b1115611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c20565b60405180910390fd5b817f000000000000000000000000000000000000000000000000000000000000000281611232336125ab565b61123c9190613b7e565b111561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613c8c565b60405180910390fd5b826112883382612602565b3410156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190613cf8565b60405180910390fd5b6002808111156112dd576112dc6137cb565b5b600d60009054906101000a900460ff1660028111156112ff576112fe6137cb565b5b1461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613d64565b60405180910390fd5b61134933856126aa565b5050506001600b8190555050565b61135f612868565b6002600b5414156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290613b5e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161144190613db5565b60006040518083038185875af1925050503d806000811461147e576040519150601f19603f3d011682016040523d82523d6000602084013e611483565b606091505b50509050806114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613e16565b60405180910390fd5b506001600b8190555050565b6114db612868565b80600d60006101000a81548160ff02191690836002811115611500576114ff6137cb565b5b021790555050565b611510612868565b6002600b541415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613b5e565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000bb8816115f7610ba7565b6116019190613b7e565b1115611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613c20565b60405180910390fd5b61164c83836126aa565b506001600b819055505050565b61167483838360405180602001604052806000815250611c8e565b505050565b600e80546116869061398b565b80601f01602080910402602001604051908101604052809291908181526020018280546116b29061398b565b80156116ff5780601f106116d4576101008083540402835291602001916116ff565b820191906000526020600020905b8154815290600101906020018083116116e257829003601f168201915b505050505081565b7f00000000000000000000000000000000000000000000000000000000000002ee81565b611733612868565b80600f9080519060200190611749929190612e20565b5050565b600061175882612409565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611820612868565b61182a60006128e6565b565b611834612868565b80600c8190555050565b611846612868565b6002600b54141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613b5e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161192890613db5565b60006040518083038185875af1925050503d8060008114611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b50509050806119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a590613e16565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000002aa1efb94e000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000000000000000000000000000000000000000000bb881565b606060048054611a399061398b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a659061398b565b8015611ab25780601f10611a8757610100808354040283529160200191611ab2565b820191906000526020600020905b815481529060010190602001808311611a9557829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000281565b7f000000000000000000000000000000000000000000000000000000000000000181565b6000611b0f826125ab565b9050919050565b611b1e6123f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b83576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611b906123f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c3d6123f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c829190612f77565b60405180910390a35050565b611c99848484610bc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cfb57611cc4848484846129aa565b611cfa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff1681565b6060611d1f82612399565b611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613ea8565b60405180910390fd5b6000611d68612b0a565b90506000815111611d885760405180602001604052806000815250611db6565b80611d9284612b9c565b600e604051602001611da693929190613f98565b6040516020818303038152906040525b915050919050565b6002600b541415611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90613af2565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190613b5e565b60405180910390fd5b817f0000000000000000000000000000000000000000000000000000000000000bb881611ea5610ba7565b611eaf9190613b7e565b1115611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613c20565b60405180910390fd5b827f000000000000000000000000000000000000000000000000000000000000000281611f1c336125ab565b611f269190613b7e565b1115611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613c8c565b60405180910390fd5b83611f723382612602565b341015611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613cf8565b60405180910390fd5b60016002811115611fc857611fc76137cb565b5b600d60009054906101000a900460ff166002811115611fea57611fe96137cb565b5b1461202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613d64565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000bb885612054610ba7565b61205e9190613b7e565b111561209f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120969061403b565b60405180910390fd5b6120a884610905565b6120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de906140a7565b60405180910390fd5b6120f133866126aa565b5050506001600b819055505050565b7f0000000000000000000000000000000000000000000000000000000000000bb881565b600061212e610ba7565b7f0000000000000000000000000000000000000000000000000000000000000bb861215991906140c7565b905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121fa612868565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561226a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122619061416d565b60405180910390fd5b612273816128e6565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122d157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123015750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061237b575061237a82612cfd565b5b9050919050565b60008261238f8584612d67565b1490509392505050565b6000816123a4612400565b111580156123b3575060015482105b80156123f1575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612418612400565b116124a05760015481101561249f5760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561249d575b6000811415612493576005600083600190039350838152602001908152602001600020549050612468565b80925050506124d2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861255f868684612dbd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000806000612610856125ab565b11905080612674577f00000000000000000000000000000000000000000000000000000000000000018361264491906140c7565b7f000000000000000000000000000000000000000000000000002aa1efb94e000061266f91906139ec565b6126a1565b827f000000000000000000000000000000000000000000000000002aa1efb94e00006126a091906139ec565b5b91505092915050565b6000600154905060008214156126ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f96000848385612542565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612770836127616000866000612548565b61276a85612dc6565b17612570565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461281157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127d6565b50600082141561284d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612863600084838561259b565b505050565b612870612dd6565b73ffffffffffffffffffffffffffffffffffffffff1661288e6119dd565b73ffffffffffffffffffffffffffffffffffffffff16146128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db906141d9565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d06123f8565b8786866040518563ffffffff1660e01b81526004016129f2949392919061424e565b602060405180830381600087803b158015612a0c57600080fd5b505af1925050508015612a3d57506040513d601f19601f82011682018060405250810190612a3a91906142af565b60015b612ab7573d8060008114612a6d576040519150601f19603f3d011682016040523d82523d6000602084013e612a72565b606091505b50600081511415612aaf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612b199061398b565b80601f0160208091040260200160405190810160405280929190818152602001828054612b459061398b565b8015612b925780601f10612b6757610100808354040283529160200191612b92565b820191906000526020600020905b815481529060010190602001808311612b7557829003601f168201915b5050505050905090565b60606000821415612be4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cf8565b600082905060005b60008214612c16578080612bff906142dc565b915050600a82612c0f9190613a75565b9150612bec565b60008167ffffffffffffffff811115612c3257612c31612fa8565b5b6040519080825280601f01601f191660200182016040528015612c645781602001600182028036833780820191505090505b5090505b60008514612cf157600182612c7d91906140c7565b9150600a85612c8c9190614325565b6030612c989190613b7e565b60f81b818381518110612cae57612cad614356565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cea9190613a75565b9450612c68565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b8451811015612db257612d9d82868381518110612d9057612d8f614356565b5b6020026020010151612dde565b91508080612daa906142dc565b915050612d70565b508091505092915050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b6000818310612df657612df18284612e09565b612e01565b612e008383612e09565b5b905092915050565b600082600052816020526040600020905092915050565b828054612e2c9061398b565b90600052602060002090601f016020900481019282612e4e5760008555612e95565b82601f10612e6757805160ff1916838001178555612e95565b82800160010185558215612e95579182015b82811115612e94578251825591602001919060010190612e79565b5b509050612ea29190612ea6565b5090565b5b80821115612ebf576000816000905550600101612ea7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f0c81612ed7565b8114612f1757600080fd5b50565b600081359050612f2981612f03565b92915050565b600060208284031215612f4557612f44612ecd565b5b6000612f5384828501612f1a565b91505092915050565b60008115159050919050565b612f7181612f5c565b82525050565b6000602082019050612f8c6000830184612f68565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fe082612f97565b810181811067ffffffffffffffff82111715612fff57612ffe612fa8565b5b80604052505050565b6000613012612ec3565b905061301e8282612fd7565b919050565b600067ffffffffffffffff82111561303e5761303d612fa8565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61306781613054565b811461307257600080fd5b50565b6000813590506130848161305e565b92915050565b600061309d61309884613023565b613008565b905080838252602082019050602084028301858111156130c0576130bf61304f565b5b835b818110156130e957806130d58882613075565b8452602084019350506020810190506130c2565b5050509392505050565b600082601f83011261310857613107612f92565b5b813561311884826020860161308a565b91505092915050565b60006020828403121561313757613136612ecd565b5b600082013567ffffffffffffffff81111561315557613154612ed2565b5b613161848285016130f3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131a4578082015181840152602081019050613189565b838111156131b3576000848401525b50505050565b60006131c48261316a565b6131ce8185613175565b93506131de818560208601613186565b6131e781612f97565b840191505092915050565b6000602082019050818103600083015261320c81846131b9565b905092915050565b6000819050919050565b61322781613214565b811461323257600080fd5b50565b6000813590506132448161321e565b92915050565b6000602082840312156132605761325f612ecd565b5b600061326e84828501613235565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132a282613277565b9050919050565b6132b281613297565b82525050565b60006020820190506132cd60008301846132a9565b92915050565b6132dc81613297565b81146132e757600080fd5b50565b6000813590506132f9816132d3565b92915050565b6000806040838503121561331657613315612ecd565b5b6000613324858286016132ea565b925050602061333585828601613235565b9150509250929050565b61334881613214565b82525050565b6000602082019050613363600083018461333f565b92915050565b61337281613054565b82525050565b600060208201905061338d6000830184613369565b92915050565b6000806000606084860312156133ac576133ab612ecd565b5b60006133ba868287016132ea565b93505060206133cb868287016132ea565b92505060406133dc86828701613235565b9150509250925092565b600080604083850312156133fd576133fc612ecd565b5b600061340b85828601613235565b925050602061341c85828601613235565b9150509250929050565b600060408201905061343b60008301856132a9565b613448602083018461333f565b9392505050565b6003811061345c57600080fd5b50565b60008135905061346e8161344f565b92915050565b60006020828403121561348a57613489612ecd565b5b60006134988482850161345f565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b6134c2816134a1565b82525050565b60006020820190506134dd60008301846134b9565b92915050565b600080fd5b600067ffffffffffffffff82111561350357613502612fa8565b5b61350c82612f97565b9050602081019050919050565b82818337600083830152505050565b600061353b613536846134e8565b613008565b905082815260208101848484011115613557576135566134e3565b5b613562848285613519565b509392505050565b600082601f83011261357f5761357e612f92565b5b813561358f848260208601613528565b91505092915050565b6000602082840312156135ae576135ad612ecd565b5b600082013567ffffffffffffffff8111156135cc576135cb612ed2565b5b6135d88482850161356a565b91505092915050565b6000602082840312156135f7576135f6612ecd565b5b6000613605848285016132ea565b91505092915050565b60006020828403121561362457613623612ecd565b5b600061363284828501613075565b91505092915050565b61364481612f5c565b811461364f57600080fd5b50565b6000813590506136618161363b565b92915050565b6000806040838503121561367e5761367d612ecd565b5b600061368c858286016132ea565b925050602061369d85828601613652565b9150509250929050565b600067ffffffffffffffff8211156136c2576136c1612fa8565b5b6136cb82612f97565b9050602081019050919050565b60006136eb6136e6846136a7565b613008565b905082815260208101848484011115613707576137066134e3565b5b613712848285613519565b509392505050565b600082601f83011261372f5761372e612f92565b5b813561373f8482602086016136d8565b91505092915050565b6000806000806080858703121561376257613761612ecd565b5b6000613770878288016132ea565b9450506020613781878288016132ea565b935050604061379287828801613235565b925050606085013567ffffffffffffffff8111156137b3576137b2612ed2565b5b6137bf8782880161371a565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061380b5761380a6137cb565b5b50565b600081905061381c826137fa565b919050565b600061382c8261380e565b9050919050565b61383c81613821565b82525050565b60006020820190506138576000830184613833565b92915050565b6000806040838503121561387457613873612ecd565b5b600061388285828601613235565b925050602083013567ffffffffffffffff8111156138a3576138a2612ed2565b5b6138af858286016130f3565b9150509250929050565b600080604083850312156138d0576138cf612ecd565b5b60006138de858286016132ea565b92505060206138ef858286016132ea565b9150509250929050565b60008160601b9050919050565b6000613911826138f9565b9050919050565b600061392382613906565b9050919050565b61393b61393682613297565b613918565b82525050565b600061394d828461392a565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139a357607f821691505b602082108114156139b7576139b661395c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139f782613214565b9150613a0283613214565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3b57613a3a6139bd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a8082613214565b9150613a8b83613214565b925082613a9b57613a9a613a46565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613adc601f83613175565b9150613ae782613aa6565b602082019050919050565b60006020820190508181036000830152613b0b81613acf565b9050919050565b7f496e76616c696420557365720000000000000000000000000000000000000000600082015250565b6000613b48600c83613175565b9150613b5382613b12565b602082019050919050565b60006020820190508181036000830152613b7781613b3b565b9050919050565b6000613b8982613214565b9150613b9483613214565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bc957613bc86139bd565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613c0a601283613175565b9150613c1582613bd4565b602082019050919050565b60006020820190508181036000830152613c3981613bfd565b9050919050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b6000613c76601183613175565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613ce2601283613175565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e742073746167650000000000600082015250565b6000613d4e601b83613175565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b600081905092915050565b50565b6000613d9f600083613d84565b9150613daa82613d8f565b600082019050919050565b6000613dc082613d92565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613e00601083613175565b9150613e0b82613dca565b602082019050919050565b60006020820190508181036000830152613e2f81613df3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e92602f83613175565b9150613e9d82613e36565b604082019050919050565b60006020820190508181036000830152613ec181613e85565b9050919050565b600081905092915050565b6000613ede8261316a565b613ee88185613ec8565b9350613ef8818560208601613186565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613f268161398b565b613f308186613ec8565b94506001821660008114613f4b5760018114613f5c57613f8f565b60ff19831686528186019350613f8f565b613f6585613f04565b60005b83811015613f8757815481890152600182019150602081019050613f68565b838801955050505b50505092915050565b6000613fa48286613ed3565b9150613fb08285613ed3565b9150613fbc8284613f19565b9150819050949350505050565b7f4d61782077686974656c697374206d696e7420737570706c792072656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614025602183613175565b915061403082613fc9565b604082019050919050565b6000602082019050818103600083015261405481614018565b9050919050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b6000614091600d83613175565b915061409c8261405b565b602082019050919050565b600060208201905081810360008301526140c081614084565b9050919050565b60006140d282613214565b91506140dd83613214565b9250828210156140f0576140ef6139bd565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614157602683613175565b9150614162826140fb565b604082019050919050565b600060208201905081810360008301526141868161414a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141c3602083613175565b91506141ce8261418d565b602082019050919050565b600060208201905081810360008301526141f2816141b6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614220826141f9565b61422a8185614204565b935061423a818560208601613186565b61424381612f97565b840191505092915050565b600060808201905061426360008301876132a9565b61427060208301866132a9565b61427d604083018561333f565b818103606083015261428f8184614215565b905095945050505050565b6000815190506142a981612f03565b92915050565b6000602082840312156142c5576142c4612ecd565b5b60006142d38482850161429a565b91505092915050565b60006142e782613214565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431a576143196139bd565b5b600182019050919050565b600061433082613214565b915061433b83613214565b92508261434b5761434a613a46565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220848f1e1f46adb133c788896f21c272b533e51b9c6fa3a729eee3c9cfdc8e80c364736f6c63430008090033

Deployed Bytecode Sourcemap

75072:5326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79302:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76793:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21384:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27867:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17135:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75143:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31574:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68857:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;77986:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79994:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78671:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77159:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34487:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75655:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75324:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78559:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22777:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18319:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74130:103;;;;;;;;;;;;;:::i;:::-;;76683:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80197:198;;;;;;;;;;;;;:::i;:::-;;75492:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73482:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75543:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21560:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75439:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75384:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78406:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28425:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35270:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75253:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78892:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77396:582;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75594:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76445:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28890:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74388:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79302:344;79450:4;79492:38;79518:11;79492:25;:38::i;:::-;:93;;;;79547:38;79573:11;79547:25;:38::i;:::-;79492:93;:146;;;;79602:36;79626:11;79602:23;:36::i;:::-;79492:146;79472:166;;79302:344;;;:::o;76793:358::-;76894:4;76916:31;76967:10;76950:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;76916:62;;76989:12;77014:18;77004:29;;;;;;76989:44;;77044:17;77064:47;77083:11;77096:8;;77106:4;77064:18;:47::i;:::-;77044:67;;77131:12;77124:19;;;;;76793:358;;;:::o;21384:100::-;21438:13;21471:5;21464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21384:100;:::o;27867:218::-;27943:7;27968:16;27976:7;27968;:16::i;:::-;27963:64;;27993:34;;;;;;;;;;;;;;27963:64;28047:15;:24;28063:7;28047:24;;;;;;;;;;;:30;;;;;;;;;;;;28040:37;;27867:218;;;:::o;27308:400::-;27389:13;27405:16;27413:7;27405;:16::i;:::-;27389:32;;27461:5;27438:28;;:19;:17;:19::i;:::-;:28;;;27434:175;;27486:44;27503:5;27510:19;:17;:19::i;:::-;27486:16;:44::i;:::-;27481:128;;27558:35;;;;;;;;;;;;;;27481:128;27434:175;27654:2;27621:15;:24;27637:7;27621:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27692:7;27688:2;27672:28;;27681:5;27672:28;;;;;;;;;;;;27378:330;27308:400;;:::o;17135:323::-;17196:7;17424:15;:13;:15::i;:::-;17409:12;;17393:13;;:28;:46;17386:53;;17135:323;:::o;75143:101::-;;;;:::o;31574:2817::-;31708:27;31738;31757:7;31738:18;:27::i;:::-;31708:57;;31823:4;31782:45;;31798:19;31782:45;;;31778:86;;31836:28;;;;;;;;;;;;;;31778:86;31878:27;31907:23;31934:35;31961:7;31934:26;:35::i;:::-;31877:92;;;;32069:68;32094:15;32111:4;32117:19;:17;:19::i;:::-;32069:24;:68::i;:::-;32064:180;;32157:43;32174:4;32180:19;:17;:19::i;:::-;32157:16;:43::i;:::-;32152:92;;32209:35;;;;;;;;;;;;;;32152:92;32064:180;32275:1;32261:16;;:2;:16;;;32257:52;;;32286:23;;;;;;;;;;;;;;32257:52;32322:43;32344:4;32350:2;32354:7;32363:1;32322:21;:43::i;:::-;32458:15;32455:160;;;32598:1;32577:19;32570:30;32455:160;32995:18;:24;33014:4;32995:24;;;;;;;;;;;;;;;;32993:26;;;;;;;;;;;;33064:18;:22;33083:2;33064:22;;;;;;;;;;;;;;;;33062:24;;;;;;;;;;;33386:146;33423:2;33472:45;33487:4;33493:2;33497:19;33472:14;:45::i;:::-;13534:8;33444:73;33386:18;:146::i;:::-;33357:17;:26;33375:7;33357:26;;;;;;;;;;;:175;;;;33703:1;13534:8;33652:19;:47;:52;33648:627;;;33725:19;33757:1;33747:7;:11;33725:33;;33914:1;33880:17;:30;33898:11;33880:30;;;;;;;;;;;;:35;33876:384;;;34018:13;;34003:11;:28;33999:242;;34198:19;34165:17;:30;34183:11;34165:30;;;;;;;;;;;:52;;;;33999:242;33876:384;33706:569;33648:627;34322:7;34318:2;34303:27;;34312:4;34303:27;;;;;;;;;;;;34341:42;34362:4;34368:2;34372:7;34381:1;34341:20;:42::i;:::-;31697:2694;;;31574:2817;;;:::o;68857:442::-;68954:7;68963;68983:26;69012:17;:27;69030:8;69012:27;;;;;;;;;;;68983:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69084:1;69056:30;;:7;:16;;;:30;;;69052:92;;;69113:19;69103:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69052:92;69156:21;69221:17;:15;:17::i;:::-;69180:58;;69194:7;:23;;;69181:36;;:10;:36;;;;:::i;:::-;69180:58;;;;:::i;:::-;69156:82;;69259:7;:16;;;69277:13;69251:40;;;;;;68857:442;;;;;:::o;77986:412::-;63410:1;64008:7;;:19;;64000:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63410:1;64141:7;:18;;;;76268:10:::1;76255:23;;:9;:23;;;76247:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;78141:8:::2;76155:12;76143:8;76127:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;76119:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78175:8:::3;75994:17;75982:8;75954:25;75968:10;75954:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;75946:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;78209:8:::4;75808:34;75821:10;75833:8;75808:12;:34::i;:::-;75795:9;:47;;75787:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;78276:19:::5;78257:38:::0;::::5;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:38;;;;;;;;:::i;:::-;;;78235:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;78363:27;78369:10;78381:8;78363:5;:27::i;:::-;76044:1:::4;76201::::3;76306::::2;63366::::0;64320:7;:22;;;;77986:412;:::o;79994:195::-;73368:13;:11;:13::i;:::-;63410:1:::1;64008:7;;:19;;64000:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63410:1;64141:7;:18;;;;76268:10:::2;76255:23;;:9;:23;;;76247:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;80079:12:::3;80097:10;:15;;80120:7;80097:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80078:54;;;80153:7;80145:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;80067:122;63366:1:::1;64320:7;:22;;;;79994:195:::0;:::o;78671:104::-;73368:13;:11;:13::i;:::-;78761:6:::1;78743:15;;:24;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;78671:104:::0;:::o;77159:229::-;73368:13;:11;:13::i;:::-;63410:1:::1;64008:7;;:19;;64000:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63410:1;64141:7;:18;;;;76268:10:::2;76255:23;;:9;:23;;;76247:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;77325:8:::3;76155:12;76143:8;76127:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;76119:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;77351:29:::4;77357:12;77371:8;77351:5;:29::i;:::-;76306:1:::3;63366::::1;64320:7;:22;;;;77159:229:::0;;:::o;34487:185::-;34625:39;34642:4;34648:2;34652:7;34625:39;;;;;;;;;;;;:16;:39::i;:::-;34487:185;;;:::o;75655:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75324:51::-;;;:::o;78559:104::-;73368:13;:11;:13::i;:::-;78649:6:::1;78639:7;:16;;;;;;;;;;;;:::i;:::-;;78559:104:::0;:::o;22777:152::-;22849:7;22892:27;22911:7;22892:18;:27::i;:::-;22869:52;;22777:152;;;:::o;18319:233::-;18391:7;18432:1;18415:19;;:5;:19;;;18411:60;;;18443:28;;;;;;;;;;;;;;18411:60;12478:13;18489:18;:25;18508:5;18489:25;;;;;;;;;;;;;;;;:55;18482:62;;18319:233;;;:::o;74130:103::-;73368:13;:11;:13::i;:::-;74195:30:::1;74222:1;74195:18;:30::i;:::-;74130:103::o:0;76683:102::-;73368:13;:11;:13::i;:::-;76766:11:::1;76755:8;:22;;;;76683:102:::0;:::o;80197:198::-;73368:13;:11;:13::i;:::-;63410:1:::1;64008:7;;:19;;64000:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63410:1;64141:7;:18;;;;76268:10:::2;76255:23;;:9;:23;;;76247:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;80271:12:::3;80289:10;:15;;80312:21;80289:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80270:68;;;80359:7;80351:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;80259:136;63366:1:::1;64320:7;:22;;;;80197:198::o:0;75492:44::-;;;:::o;73482:87::-;73528:7;73555:6;;;;;;;;;;;73548:13;;73482:87;:::o;75543:44::-;;;:::o;21560:104::-;21616:13;21649:7;21642:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21560:104;:::o;75439:46::-;;;:::o;75384:48::-;;;:::o;78406:145::-;78492:7;78524:19;78538:4;78524:13;:19::i;:::-;78517:26;;78406:145;;;:::o;28425:308::-;28536:19;:17;:19::i;:::-;28524:31;;:8;:31;;;28520:61;;;28564:17;;;;;;;;;;;;;;28520:61;28646:8;28594:18;:39;28613:19;:17;:19::i;:::-;28594:39;;;;;;;;;;;;;;;:49;28634:8;28594:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28706:8;28670:55;;28685:19;:17;:19::i;:::-;28670:55;;;28716:8;28670:55;;;;;;:::i;:::-;;;;;;;;28425:308;;:::o;35270:399::-;35437:31;35450:4;35456:2;35460:7;35437:12;:31::i;:::-;35501:1;35483:2;:14;;;:19;35479:183;;35522:56;35553:4;35559:2;35563:7;35572:5;35522:30;:56::i;:::-;35517:145;;35606:40;;;;;;;;;;;;;;35517:145;35479:183;35270:399;;;;:::o;75253:62::-;;;;;;;;;;;;;:::o;78892:402::-;78966:13;79000:17;79008:8;79000:7;:17::i;:::-;78992:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;79082:28;79113:10;:8;:10::i;:::-;79082:41;;79172:1;79147:14;79141:28;:32;:145;;;;;;;;;;;;;;;;;79213:14;79229:26;79246:8;79229:16;:26::i;:::-;79257:9;79196:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79141:145;79134:152;;;78892:402;;;:::o;77396:582::-;63410:1;64008:7;;:19;;64000:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63410:1;64141:7;:18;;;;76268:10:::1;76255:23;;:9;:23;;;76247:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;77584:8:::2;76155:12;76143:8;76127:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;76119:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;77618:8:::3;75994:17;75982:8;75954:25;75968:10;75954:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;75946:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;77652:8:::4;75808:34;75821:10;75833:8;75808:12;:34::i;:::-;75795:9;:47;;75787:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;77705:24:::5;77686:43;;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;77678:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;77807:22;77795:8;77779:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:50;;77771:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;77886:26;77900:11;77886:13;:26::i;:::-;77878:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;77943:27;77949:10;77961:8;77943:5;:27::i;:::-;76044:1:::4;76201::::3;76306::::2;63366::::0;64320:7;:22;;;;77396:582;;:::o;75594:54::-;;;:::o;76445:114::-;76496:7;76538:13;:11;:13::i;:::-;76523:12;:28;;;;:::i;:::-;76516:35;;76445:114;:::o;28890:164::-;28987:4;29011:18;:25;29030:5;29011:25;;;;;;;;;;;;;;;:35;29037:8;29011:35;;;;;;;;;;;;;;;;;;;;;;;;;29004:42;;28890:164;;;;:::o;74388:201::-;73368:13;:11;:13::i;:::-;74497:1:::1;74477:22;;:8;:22;;;;74469:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;74553:28;74572:8;74553:18;:28::i;:::-;74388:201:::0;:::o;20482:639::-;20567:4;20906:10;20891:25;;:11;:25;;;;:102;;;;20983:10;20968:25;;:11;:25;;;;20891:102;:179;;;;21060:10;21045:25;;:11;:25;;;;20891:179;20871:199;;20482:639;;;:::o;68587:215::-;68689:4;68728:26;68713:41;;;:11;:41;;;;:81;;;;68758:36;68782:11;68758:23;:36::i;:::-;68713:81;68706:88;;68587:215;;;:::o;54092:190::-;54217:4;54270;54241:25;54254:5;54261:4;54241:12;:25::i;:::-;:33;54234:40;;54092:190;;;;;:::o;29312:282::-;29377:4;29433:7;29414:15;:13;:15::i;:::-;:26;;:66;;;;;29467:13;;29457:7;:23;29414:66;:153;;;;;29566:1;13254:8;29518:17;:26;29536:7;29518:26;;;;;;;;;;;;:44;:49;29414:153;29394:173;;29312:282;;;:::o;51078:105::-;51138:7;51165:10;51158:17;;51078:105;:::o;78783:101::-;78848:7;78875:1;78868:8;;78783:101;:::o;23932:1275::-;23999:7;24019:12;24034:7;24019:22;;24102:4;24083:15;:13;:15::i;:::-;:23;24079:1061;;24136:13;;24129:4;:20;24125:1015;;;24174:14;24191:17;:23;24209:4;24191:23;;;;;;;;;;;;24174:40;;24308:1;13254:8;24280:6;:24;:29;24276:845;;;24945:113;24962:1;24952:6;:11;24945:113;;;25005:17;:25;25023:6;;;;;;;25005:25;;;;;;;;;;;;24996:34;;24945:113;;;25091:6;25084:13;;;;;;24276:845;24151:989;24125:1015;24079:1061;25168:31;;;;;;;;;;;;;;23932:1275;;;;:::o;30475:479::-;30577:27;30606:23;30647:38;30688:15;:24;30704:7;30688:24;;;;;;;;;;;30647:65;;30859:18;30836:41;;30916:19;30910:26;30891:45;;30821:126;30475:479;;;:::o;29703:659::-;29852:11;30017:16;30010:5;30006:28;29997:37;;30177:16;30166:9;30162:32;30149:45;;30327:15;30316:9;30313:30;30305:5;30294:9;30291:20;30288:56;30278:66;;29703:659;;;;;:::o;36331:159::-;;;;;:::o;50387:311::-;50522:7;50542:16;13658:3;50568:19;:41;;50542:68;;13658:3;50636:31;50647:4;50653:2;50657:9;50636:10;:31::i;:::-;50628:40;;:62;;50621:69;;;50387:311;;;;;:::o;25755:450::-;25835:14;26003:16;25996:5;25992:28;25983:37;;26180:5;26166:11;26141:23;26137:41;26134:52;26127:5;26124:63;26114:73;;25755:450;;;;:::o;37155:158::-;;;;;:::o;69581:97::-;69639:6;69665:5;69658:12;;69581:97;:::o;18634:178::-;18695:7;12478:13;12616:2;18723:18;:25;18742:5;18723:25;;;;;;;;;;;;;;;;:50;;18722:82;18715:89;;18634:178;;;:::o;79654:332::-;79759:7;79784:20;79831:1;79807:21;79821:6;79807:13;:21::i;:::-;:25;79784:48;;79865:15;:113;;79958:19;79947:8;:30;;;;:::i;:::-;79938:5;:40;;;;:::i;:::-;79865:113;;;79909:8;79900:5;:18;;;;:::i;:::-;79865:113;79845:133;;;79654:332;;;;:::o;38931:2454::-;39004:20;39027:13;;39004:36;;39067:1;39055:8;:13;39051:44;;;39077:18;;;;;;;;;;;;;;39051:44;39108:61;39138:1;39142:2;39146:12;39160:8;39108:21;:61::i;:::-;39652:1;12616:2;39622:1;:26;;39621:32;39609:8;:45;39583:18;:22;39602:2;39583:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39931:139;39968:2;40022:33;40045:1;40049:2;40053:1;40022:14;:33::i;:::-;39989:30;40010:8;39989:20;:30::i;:::-;:66;39931:18;:139::i;:::-;39897:17;:31;39915:12;39897:31;;;;;;;;;;;:173;;;;40087:16;40118:11;40147:8;40132:12;:23;40118:37;;40402:16;40398:2;40394:25;40382:37;;40774:12;40734:8;40693:1;40631:25;40572:1;40511;40484:335;40899:1;40885:12;40881:20;40839:346;40940:3;40931:7;40928:16;40839:346;;41158:7;41148:8;41145:1;41118:25;41115:1;41112;41107:59;40993:1;40984:7;40980:15;40969:26;;40839:346;;;40843:77;41230:1;41218:8;:13;41214:45;;;41240:19;;;;;;;;;;;;;;41214:45;41292:3;41276:13;:19;;;;39357:1950;;41317:60;41346:1;41350:2;41354:12;41368:8;41317:20;:60::i;:::-;38993:2392;38931:2454;;:::o;73647:132::-;73722:12;:10;:12::i;:::-;73711:23;;:7;:5;:7::i;:::-;:23;;;73703:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73647:132::o;74749:191::-;74823:16;74842:6;;;;;;;;;;;74823:25;;74868:8;74859:6;;:17;;;;;;;;;;;;;;;;;;74923:8;74892:40;;74913:8;74892:40;;;;;;;;;;;;74812:128;74749:191;:::o;37753:716::-;37916:4;37962:2;37937:45;;;37983:19;:17;:19::i;:::-;38004:4;38010:7;38019:5;37937:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37933:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:1;38220:6;:13;:18;38216:235;;;38266:40;;;;;;;;;;;;;;38216:235;38409:6;38403:13;38394:6;38390:2;38386:15;38379:38;37933:529;38106:54;;;38096:64;;;:6;:64;;;;38089:71;;;37753:716;;;;;;:::o;76567:108::-;76627:13;76660:7;76653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76567:108;:::o;288:723::-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;66139:157::-;66224:4;66263:25;66248:40;;;:11;:40;;;;66241:47;;66139:157;;;:::o;54959:296::-;55042:7;55062:20;55085:4;55062:27;;55105:9;55100:118;55124:5;:12;55120:1;:16;55100:118;;;55173:33;55183:12;55197:5;55203:1;55197:8;;;;;;;;:::i;:::-;;;;;;;;55173:9;:33::i;:::-;55158:48;;55138:3;;;;;:::i;:::-;;;;55100:118;;;;55235:12;55228:19;;;54959:296;;;;:::o;50088:147::-;50225:6;50088:147;;;;;:::o;26307:324::-;26377:14;26610:1;26600:8;26597:15;26571:24;26567:46;26557:56;;26307:324;;;:::o;72033:98::-;72086:7;72113:10;72106:17;;72033:98;:::o;61166:149::-;61229:7;61260:1;61256;:5;:51;;61287:20;61302:1;61305;61287:14;:20::i;:::-;61256:51;;;61264:20;61279:1;61282;61264:14;:20::i;:::-;61256:51;61249:58;;61166:149;;;;:::o;61323:268::-;61391:13;61498:1;61492:4;61485:15;61527:1;61521:4;61514:15;61568:4;61562;61552:21;61543:30;;61323:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:117::-;1627:1;1624;1617:12;1641:102;1682:6;1733:2;1729:7;1724:2;1717:5;1713:14;1709:28;1699:38;;1641:102;;;:::o;1749:180::-;1797:77;1794:1;1787:88;1894:4;1891:1;1884:15;1918:4;1915:1;1908:15;1935:281;2018:27;2040:4;2018:27;:::i;:::-;2010:6;2006:40;2148:6;2136:10;2133:22;2112:18;2100:10;2097:34;2094:62;2091:88;;;2159:18;;:::i;:::-;2091:88;2199:10;2195:2;2188:22;1978:238;1935:281;;:::o;2222:129::-;2256:6;2283:20;;:::i;:::-;2273:30;;2312:33;2340:4;2332:6;2312:33;:::i;:::-;2222:129;;;:::o;2357:311::-;2434:4;2524:18;2516:6;2513:30;2510:56;;;2546:18;;:::i;:::-;2510:56;2596:4;2588:6;2584:17;2576:25;;2656:4;2650;2646:15;2638:23;;2357:311;;;:::o;2674:117::-;2783:1;2780;2773:12;2797:77;2834:7;2863:5;2852:16;;2797:77;;;:::o;2880:122::-;2953:24;2971:5;2953:24;:::i;:::-;2946:5;2943:35;2933:63;;2992:1;2989;2982:12;2933:63;2880:122;:::o;3008:139::-;3054:5;3092:6;3079:20;3070:29;;3108:33;3135:5;3108:33;:::i;:::-;3008:139;;;;:::o;3170:710::-;3266:5;3291:81;3307:64;3364:6;3307:64;:::i;:::-;3291:81;:::i;:::-;3282:90;;3392:5;3421:6;3414:5;3407:21;3455:4;3448:5;3444:16;3437:23;;3508:4;3500:6;3496:17;3488:6;3484:30;3537:3;3529:6;3526:15;3523:122;;;3556:79;;:::i;:::-;3523:122;3671:6;3654:220;3688:6;3683:3;3680:15;3654:220;;;3763:3;3792:37;3825:3;3813:10;3792:37;:::i;:::-;3787:3;3780:50;3859:4;3854:3;3850:14;3843:21;;3730:144;3714:4;3709:3;3705:14;3698:21;;3654:220;;;3658:21;3272:608;;3170:710;;;;;:::o;3903:370::-;3974:5;4023:3;4016:4;4008:6;4004:17;4000:27;3990:122;;4031:79;;:::i;:::-;3990:122;4148:6;4135:20;4173:94;4263:3;4255:6;4248:4;4240:6;4236:17;4173:94;:::i;:::-;4164:103;;3980:293;3903:370;;;;:::o;4279:539::-;4363:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:119;;;4418:79;;:::i;:::-;4380:119;4566:1;4555:9;4551:17;4538:31;4596:18;4588:6;4585:30;4582:117;;;4618:79;;:::i;:::-;4582:117;4723:78;4793:7;4784:6;4773:9;4769:22;4723:78;:::i;:::-;4713:88;;4509:302;4279:539;;;;:::o;4824:99::-;4876:6;4910:5;4904:12;4894:22;;4824:99;;;:::o;4929:169::-;5013:11;5047:6;5042:3;5035:19;5087:4;5082:3;5078:14;5063:29;;4929:169;;;;:::o;5104:307::-;5172:1;5182:113;5196:6;5193:1;5190:13;5182:113;;;5281:1;5276:3;5272:11;5266:18;5262:1;5257:3;5253:11;5246:39;5218:2;5215:1;5211:10;5206:15;;5182:113;;;5313:6;5310:1;5307:13;5304:101;;;5393:1;5384:6;5379:3;5375:16;5368:27;5304:101;5153:258;5104:307;;;:::o;5417:364::-;5505:3;5533:39;5566:5;5533:39;:::i;:::-;5588:71;5652:6;5647:3;5588:71;:::i;:::-;5581:78;;5668:52;5713:6;5708:3;5701:4;5694:5;5690:16;5668:52;:::i;:::-;5745:29;5767:6;5745:29;:::i;:::-;5740:3;5736:39;5729:46;;5509:272;5417:364;;;;:::o;5787:313::-;5900:4;5938:2;5927:9;5923:18;5915:26;;5987:9;5981:4;5977:20;5973:1;5962:9;5958:17;5951:47;6015:78;6088:4;6079:6;6015:78;:::i;:::-;6007:86;;5787:313;;;;:::o;6106:77::-;6143:7;6172:5;6161:16;;6106:77;;;:::o;6189:122::-;6262:24;6280:5;6262:24;:::i;:::-;6255:5;6252:35;6242:63;;6301:1;6298;6291:12;6242:63;6189:122;:::o;6317:139::-;6363:5;6401:6;6388:20;6379:29;;6417:33;6444:5;6417:33;:::i;:::-;6317:139;;;;:::o;6462:329::-;6521:6;6570:2;6558:9;6549:7;6545:23;6541:32;6538:119;;;6576:79;;:::i;:::-;6538:119;6696:1;6721:53;6766:7;6757:6;6746:9;6742:22;6721:53;:::i;:::-;6711:63;;6667:117;6462:329;;;;:::o;6797:126::-;6834:7;6874:42;6867:5;6863:54;6852:65;;6797:126;;;:::o;6929:96::-;6966:7;6995:24;7013:5;6995:24;:::i;:::-;6984:35;;6929:96;;;:::o;7031:118::-;7118:24;7136:5;7118:24;:::i;:::-;7113:3;7106:37;7031:118;;:::o;7155:222::-;7248:4;7286:2;7275:9;7271:18;7263:26;;7299:71;7367:1;7356:9;7352:17;7343:6;7299:71;:::i;:::-;7155:222;;;;:::o;7383:122::-;7456:24;7474:5;7456:24;:::i;:::-;7449:5;7446:35;7436:63;;7495:1;7492;7485:12;7436:63;7383:122;:::o;7511:139::-;7557:5;7595:6;7582:20;7573:29;;7611:33;7638:5;7611:33;:::i;:::-;7511:139;;;;:::o;7656:474::-;7724:6;7732;7781:2;7769:9;7760:7;7756:23;7752:32;7749:119;;;7787:79;;:::i;:::-;7749:119;7907:1;7932:53;7977:7;7968:6;7957:9;7953:22;7932:53;:::i;:::-;7922:63;;7878:117;8034:2;8060:53;8105:7;8096:6;8085:9;8081:22;8060:53;:::i;:::-;8050:63;;8005:118;7656:474;;;;;:::o;8136:118::-;8223:24;8241:5;8223:24;:::i;:::-;8218:3;8211:37;8136:118;;:::o;8260:222::-;8353:4;8391:2;8380:9;8376:18;8368:26;;8404:71;8472:1;8461:9;8457:17;8448:6;8404:71;:::i;:::-;8260:222;;;;:::o;8488:118::-;8575:24;8593:5;8575:24;:::i;:::-;8570:3;8563:37;8488:118;;:::o;8612:222::-;8705:4;8743:2;8732:9;8728:18;8720:26;;8756:71;8824:1;8813:9;8809:17;8800:6;8756:71;:::i;:::-;8612:222;;;;:::o;8840:619::-;8917:6;8925;8933;8982:2;8970:9;8961:7;8957:23;8953:32;8950:119;;;8988:79;;:::i;:::-;8950:119;9108:1;9133:53;9178:7;9169:6;9158:9;9154:22;9133:53;:::i;:::-;9123:63;;9079:117;9235:2;9261:53;9306:7;9297:6;9286:9;9282:22;9261:53;:::i;:::-;9251:63;;9206:118;9363:2;9389:53;9434:7;9425:6;9414:9;9410:22;9389:53;:::i;:::-;9379:63;;9334:118;8840:619;;;;;:::o;9465:474::-;9533:6;9541;9590:2;9578:9;9569:7;9565:23;9561:32;9558:119;;;9596:79;;:::i;:::-;9558:119;9716:1;9741:53;9786:7;9777:6;9766:9;9762:22;9741:53;:::i;:::-;9731:63;;9687:117;9843:2;9869:53;9914:7;9905:6;9894:9;9890:22;9869:53;:::i;:::-;9859:63;;9814:118;9465:474;;;;;:::o;9945:332::-;10066:4;10104:2;10093:9;10089:18;10081:26;;10117:71;10185:1;10174:9;10170:17;10161:6;10117:71;:::i;:::-;10198:72;10266:2;10255:9;10251:18;10242:6;10198:72;:::i;:::-;9945:332;;;;;:::o;10283:118::-;10375:1;10368:5;10365:12;10355:40;;10391:1;10388;10381:12;10355:40;10283:118;:::o;10407:177::-;10472:5;10510:6;10497:20;10488:29;;10526:52;10572:5;10526:52;:::i;:::-;10407:177;;;;:::o;10590:367::-;10668:6;10717:2;10705:9;10696:7;10692:23;10688:32;10685:119;;;10723:79;;:::i;:::-;10685:119;10843:1;10868:72;10932:7;10923:6;10912:9;10908:22;10868:72;:::i;:::-;10858:82;;10814:136;10590:367;;;;:::o;10963:109::-;10999:7;11039:26;11032:5;11028:38;11017:49;;10963:109;;;:::o;11078:115::-;11163:23;11180:5;11163:23;:::i;:::-;11158:3;11151:36;11078:115;;:::o;11199:218::-;11290:4;11328:2;11317:9;11313:18;11305:26;;11341:69;11407:1;11396:9;11392:17;11383:6;11341:69;:::i;:::-;11199:218;;;;:::o;11423:117::-;11532:1;11529;11522:12;11546:308;11608:4;11698:18;11690:6;11687:30;11684:56;;;11720:18;;:::i;:::-;11684:56;11758:29;11780:6;11758:29;:::i;:::-;11750:37;;11842:4;11836;11832:15;11824:23;;11546:308;;;:::o;11860:154::-;11944:6;11939:3;11934;11921:30;12006:1;11997:6;11992:3;11988:16;11981:27;11860:154;;;:::o;12020:412::-;12098:5;12123:66;12139:49;12181:6;12139:49;:::i;:::-;12123:66;:::i;:::-;12114:75;;12212:6;12205:5;12198:21;12250:4;12243:5;12239:16;12288:3;12279:6;12274:3;12270:16;12267:25;12264:112;;;12295:79;;:::i;:::-;12264:112;12385:41;12419:6;12414:3;12409;12385:41;:::i;:::-;12104:328;12020:412;;;;;:::o;12452:340::-;12508:5;12557:3;12550:4;12542:6;12538:17;12534:27;12524:122;;12565:79;;:::i;:::-;12524:122;12682:6;12669:20;12707:79;12782:3;12774:6;12767:4;12759:6;12755:17;12707:79;:::i;:::-;12698:88;;12514:278;12452:340;;;;:::o;12798:509::-;12867:6;12916:2;12904:9;12895:7;12891:23;12887:32;12884:119;;;12922:79;;:::i;:::-;12884:119;13070:1;13059:9;13055:17;13042:31;13100:18;13092:6;13089:30;13086:117;;;13122:79;;:::i;:::-;13086:117;13227:63;13282:7;13273:6;13262:9;13258:22;13227:63;:::i;:::-;13217:73;;13013:287;12798:509;;;;:::o;13313:329::-;13372:6;13421:2;13409:9;13400:7;13396:23;13392:32;13389:119;;;13427:79;;:::i;:::-;13389:119;13547:1;13572:53;13617:7;13608:6;13597:9;13593:22;13572:53;:::i;:::-;13562:63;;13518:117;13313:329;;;;:::o;13648:::-;13707:6;13756:2;13744:9;13735:7;13731:23;13727:32;13724:119;;;13762:79;;:::i;:::-;13724:119;13882:1;13907:53;13952:7;13943:6;13932:9;13928:22;13907:53;:::i;:::-;13897:63;;13853:117;13648:329;;;;:::o;13983:116::-;14053:21;14068:5;14053:21;:::i;:::-;14046:5;14043:32;14033:60;;14089:1;14086;14079:12;14033:60;13983:116;:::o;14105:133::-;14148:5;14186:6;14173:20;14164:29;;14202:30;14226:5;14202:30;:::i;:::-;14105:133;;;;:::o;14244:468::-;14309:6;14317;14366:2;14354:9;14345:7;14341:23;14337:32;14334:119;;;14372:79;;:::i;:::-;14334:119;14492:1;14517:53;14562:7;14553:6;14542:9;14538:22;14517:53;:::i;:::-;14507:63;;14463:117;14619:2;14645:50;14687:7;14678:6;14667:9;14663:22;14645:50;:::i;:::-;14635:60;;14590:115;14244:468;;;;;:::o;14718:307::-;14779:4;14869:18;14861:6;14858:30;14855:56;;;14891:18;;:::i;:::-;14855:56;14929:29;14951:6;14929:29;:::i;:::-;14921:37;;15013:4;15007;15003:15;14995:23;;14718:307;;;:::o;15031:410::-;15108:5;15133:65;15149:48;15190:6;15149:48;:::i;:::-;15133:65;:::i;:::-;15124:74;;15221:6;15214:5;15207:21;15259:4;15252:5;15248:16;15297:3;15288:6;15283:3;15279:16;15276:25;15273:112;;;15304:79;;:::i;:::-;15273:112;15394:41;15428:6;15423:3;15418;15394:41;:::i;:::-;15114:327;15031:410;;;;;:::o;15460:338::-;15515:5;15564:3;15557:4;15549:6;15545:17;15541:27;15531:122;;15572:79;;:::i;:::-;15531:122;15689:6;15676:20;15714:78;15788:3;15780:6;15773:4;15765:6;15761:17;15714:78;:::i;:::-;15705:87;;15521:277;15460:338;;;;:::o;15804:943::-;15899:6;15907;15915;15923;15972:3;15960:9;15951:7;15947:23;15943:33;15940:120;;;15979:79;;:::i;:::-;15940:120;16099:1;16124:53;16169:7;16160:6;16149:9;16145:22;16124:53;:::i;:::-;16114:63;;16070:117;16226:2;16252:53;16297:7;16288:6;16277:9;16273:22;16252:53;:::i;:::-;16242:63;;16197:118;16354:2;16380:53;16425:7;16416:6;16405:9;16401:22;16380:53;:::i;:::-;16370:63;;16325:118;16510:2;16499:9;16495:18;16482:32;16541:18;16533:6;16530:30;16527:117;;;16563:79;;:::i;:::-;16527:117;16668:62;16722:7;16713:6;16702:9;16698:22;16668:62;:::i;:::-;16658:72;;16453:287;15804:943;;;;;;;:::o;16753:180::-;16801:77;16798:1;16791:88;16898:4;16895:1;16888:15;16922:4;16919:1;16912:15;16939:124;17031:1;17024:5;17021:12;17011:46;;17037:18;;:::i;:::-;17011:46;16939:124;:::o;17069:149::-;17125:7;17154:5;17143:16;;17160:52;17206:5;17160:52;:::i;:::-;17069:149;;;:::o;17224:::-;17291:9;17324:43;17361:5;17324:43;:::i;:::-;17311:56;;17224:149;;;:::o;17379:165::-;17483:54;17531:5;17483:54;:::i;:::-;17478:3;17471:67;17379:165;;:::o;17550:256::-;17660:4;17698:2;17687:9;17683:18;17675:26;;17711:88;17796:1;17785:9;17781:17;17772:6;17711:88;:::i;:::-;17550:256;;;;:::o;17812:684::-;17905:6;17913;17962:2;17950:9;17941:7;17937:23;17933:32;17930:119;;;17968:79;;:::i;:::-;17930:119;18088:1;18113:53;18158:7;18149:6;18138:9;18134:22;18113:53;:::i;:::-;18103:63;;18059:117;18243:2;18232:9;18228:18;18215:32;18274:18;18266:6;18263:30;18260:117;;;18296:79;;:::i;:::-;18260:117;18401:78;18471:7;18462:6;18451:9;18447:22;18401:78;:::i;:::-;18391:88;;18186:303;17812:684;;;;;:::o;18502:474::-;18570:6;18578;18627:2;18615:9;18606:7;18602:23;18598:32;18595:119;;;18633:79;;:::i;:::-;18595:119;18753:1;18778:53;18823:7;18814:6;18803:9;18799:22;18778:53;:::i;:::-;18768:63;;18724:117;18880:2;18906:53;18951:7;18942:6;18931:9;18927:22;18906:53;:::i;:::-;18896:63;;18851:118;18502:474;;;;;:::o;18982:94::-;19015:8;19063:5;19059:2;19055:14;19034:35;;18982:94;;;:::o;19082:::-;19121:7;19150:20;19164:5;19150:20;:::i;:::-;19139:31;;19082:94;;;:::o;19182:100::-;19221:7;19250:26;19270:5;19250:26;:::i;:::-;19239:37;;19182:100;;;:::o;19288:157::-;19393:45;19413:24;19431:5;19413:24;:::i;:::-;19393:45;:::i;:::-;19388:3;19381:58;19288:157;;:::o;19451:256::-;19563:3;19578:75;19649:3;19640:6;19578:75;:::i;:::-;19678:2;19673:3;19669:12;19662:19;;19698:3;19691:10;;19451:256;;;;:::o;19713:180::-;19761:77;19758:1;19751:88;19858:4;19855:1;19848:15;19882:4;19879:1;19872:15;19899:320;19943:6;19980:1;19974:4;19970:12;19960:22;;20027:1;20021:4;20017:12;20048:18;20038:81;;20104:4;20096:6;20092:17;20082:27;;20038:81;20166:2;20158:6;20155:14;20135:18;20132:38;20129:84;;;20185:18;;:::i;:::-;20129:84;19950:269;19899:320;;;:::o;20225:180::-;20273:77;20270:1;20263:88;20370:4;20367:1;20360:15;20394:4;20391:1;20384:15;20411:348;20451:7;20474:20;20492:1;20474:20;:::i;:::-;20469:25;;20508:20;20526:1;20508:20;:::i;:::-;20503:25;;20696:1;20628:66;20624:74;20621:1;20618:81;20613:1;20606:9;20599:17;20595:105;20592:131;;;20703:18;;:::i;:::-;20592:131;20751:1;20748;20744:9;20733:20;;20411:348;;;;:::o;20765:180::-;20813:77;20810:1;20803:88;20910:4;20907:1;20900:15;20934:4;20931:1;20924:15;20951:185;20991:1;21008:20;21026:1;21008:20;:::i;:::-;21003:25;;21042:20;21060:1;21042:20;:::i;:::-;21037:25;;21081:1;21071:35;;21086:18;;:::i;:::-;21071:35;21128:1;21125;21121:9;21116:14;;20951:185;;;;:::o;21142:181::-;21282:33;21278:1;21270:6;21266:14;21259:57;21142:181;:::o;21329:366::-;21471:3;21492:67;21556:2;21551:3;21492:67;:::i;:::-;21485:74;;21568:93;21657:3;21568:93;:::i;:::-;21686:2;21681:3;21677:12;21670:19;;21329:366;;;:::o;21701:419::-;21867:4;21905:2;21894:9;21890:18;21882:26;;21954:9;21948:4;21944:20;21940:1;21929:9;21925:17;21918:47;21982:131;22108:4;21982:131;:::i;:::-;21974:139;;21701:419;;;:::o;22126:162::-;22266:14;22262:1;22254:6;22250:14;22243:38;22126:162;:::o;22294:366::-;22436:3;22457:67;22521:2;22516:3;22457:67;:::i;:::-;22450:74;;22533:93;22622:3;22533:93;:::i;:::-;22651:2;22646:3;22642:12;22635:19;;22294:366;;;:::o;22666:419::-;22832:4;22870:2;22859:9;22855:18;22847:26;;22919:9;22913:4;22909:20;22905:1;22894:9;22890:17;22883:47;22947:131;23073:4;22947:131;:::i;:::-;22939:139;;22666:419;;;:::o;23091:305::-;23131:3;23150:20;23168:1;23150:20;:::i;:::-;23145:25;;23184:20;23202:1;23184:20;:::i;:::-;23179:25;;23338:1;23270:66;23266:74;23263:1;23260:81;23257:107;;;23344:18;;:::i;:::-;23257:107;23388:1;23385;23381:9;23374:16;;23091:305;;;;:::o;23402:168::-;23542:20;23538:1;23530:6;23526:14;23519:44;23402:168;:::o;23576:366::-;23718:3;23739:67;23803:2;23798:3;23739:67;:::i;:::-;23732:74;;23815:93;23904:3;23815:93;:::i;:::-;23933:2;23928:3;23924:12;23917:19;;23576:366;;;:::o;23948:419::-;24114:4;24152:2;24141:9;24137:18;24129:26;;24201:9;24195:4;24191:20;24187:1;24176:9;24172:17;24165:47;24229:131;24355:4;24229:131;:::i;:::-;24221:139;;23948:419;;;:::o;24373:167::-;24513:19;24509:1;24501:6;24497:14;24490:43;24373:167;:::o;24546:366::-;24688:3;24709:67;24773:2;24768:3;24709:67;:::i;:::-;24702:74;;24785:93;24874:3;24785:93;:::i;:::-;24903:2;24898:3;24894:12;24887:19;;24546:366;;;:::o;24918:419::-;25084:4;25122:2;25111:9;25107:18;25099:26;;25171:9;25165:4;25161:20;25157:1;25146:9;25142:17;25135:47;25199:131;25325:4;25199:131;:::i;:::-;25191:139;;24918:419;;;:::o;25343:168::-;25483:20;25479:1;25471:6;25467:14;25460:44;25343:168;:::o;25517:366::-;25659:3;25680:67;25744:2;25739:3;25680:67;:::i;:::-;25673:74;;25756:93;25845:3;25756:93;:::i;:::-;25874:2;25869:3;25865:12;25858:19;;25517:366;;;:::o;25889:419::-;26055:4;26093:2;26082:9;26078:18;26070:26;;26142:9;26136:4;26132:20;26128:1;26117:9;26113:17;26106:47;26170:131;26296:4;26170:131;:::i;:::-;26162:139;;25889:419;;;:::o;26314:177::-;26454:29;26450:1;26442:6;26438:14;26431:53;26314:177;:::o;26497:366::-;26639:3;26660:67;26724:2;26719:3;26660:67;:::i;:::-;26653:74;;26736:93;26825:3;26736:93;:::i;:::-;26854:2;26849:3;26845:12;26838:19;;26497:366;;;:::o;26869:419::-;27035:4;27073:2;27062:9;27058:18;27050:26;;27122:9;27116:4;27112:20;27108:1;27097:9;27093:17;27086:47;27150:131;27276:4;27150:131;:::i;:::-;27142:139;;26869:419;;;:::o;27294:147::-;27395:11;27432:3;27417:18;;27294:147;;;;:::o;27447:114::-;;:::o;27567:398::-;27726:3;27747:83;27828:1;27823:3;27747:83;:::i;:::-;27740:90;;27839:93;27928:3;27839:93;:::i;:::-;27957:1;27952:3;27948:11;27941:18;;27567:398;;;:::o;27971:379::-;28155:3;28177:147;28320:3;28177:147;:::i;:::-;28170:154;;28341:3;28334:10;;27971:379;;;:::o;28356:166::-;28496:18;28492:1;28484:6;28480:14;28473:42;28356:166;:::o;28528:366::-;28670:3;28691:67;28755:2;28750:3;28691:67;:::i;:::-;28684:74;;28767:93;28856:3;28767:93;:::i;:::-;28885:2;28880:3;28876:12;28869:19;;28528:366;;;:::o;28900:419::-;29066:4;29104:2;29093:9;29089:18;29081:26;;29153:9;29147:4;29143:20;29139:1;29128:9;29124:17;29117:47;29181:131;29307:4;29181:131;:::i;:::-;29173:139;;28900:419;;;:::o;29325:234::-;29465:34;29461:1;29453:6;29449:14;29442:58;29534:17;29529:2;29521:6;29517:15;29510:42;29325:234;:::o;29565:366::-;29707:3;29728:67;29792:2;29787:3;29728:67;:::i;:::-;29721:74;;29804:93;29893:3;29804:93;:::i;:::-;29922:2;29917:3;29913:12;29906:19;;29565:366;;;:::o;29937:419::-;30103:4;30141:2;30130:9;30126:18;30118:26;;30190:9;30184:4;30180:20;30176:1;30165:9;30161:17;30154:47;30218:131;30344:4;30218:131;:::i;:::-;30210:139;;29937:419;;;:::o;30362:148::-;30464:11;30501:3;30486:18;;30362:148;;;;:::o;30516:377::-;30622:3;30650:39;30683:5;30650:39;:::i;:::-;30705:89;30787:6;30782:3;30705:89;:::i;:::-;30698:96;;30803:52;30848:6;30843:3;30836:4;30829:5;30825:16;30803:52;:::i;:::-;30880:6;30875:3;30871:16;30864:23;;30626:267;30516:377;;;;:::o;30899:141::-;30948:4;30971:3;30963:11;;30994:3;30991:1;30984:14;31028:4;31025:1;31015:18;31007:26;;30899:141;;;:::o;31070:845::-;31173:3;31210:5;31204:12;31239:36;31265:9;31239:36;:::i;:::-;31291:89;31373:6;31368:3;31291:89;:::i;:::-;31284:96;;31411:1;31400:9;31396:17;31427:1;31422:137;;;;31573:1;31568:341;;;;31389:520;;31422:137;31506:4;31502:9;31491;31487:25;31482:3;31475:38;31542:6;31537:3;31533:16;31526:23;;31422:137;;31568:341;31635:38;31667:5;31635:38;:::i;:::-;31695:1;31709:154;31723:6;31720:1;31717:13;31709:154;;;31797:7;31791:14;31787:1;31782:3;31778:11;31771:35;31847:1;31838:7;31834:15;31823:26;;31745:4;31742:1;31738:12;31733:17;;31709:154;;;31892:6;31887:3;31883:16;31876:23;;31575:334;;31389:520;;31177:738;;31070:845;;;;:::o;31921:589::-;32146:3;32168:95;32259:3;32250:6;32168:95;:::i;:::-;32161:102;;32280:95;32371:3;32362:6;32280:95;:::i;:::-;32273:102;;32392:92;32480:3;32471:6;32392:92;:::i;:::-;32385:99;;32501:3;32494:10;;31921:589;;;;;;:::o;32516:220::-;32656:34;32652:1;32644:6;32640:14;32633:58;32725:3;32720:2;32712:6;32708:15;32701:28;32516:220;:::o;32742:366::-;32884:3;32905:67;32969:2;32964:3;32905:67;:::i;:::-;32898:74;;32981:93;33070:3;32981:93;:::i;:::-;33099:2;33094:3;33090:12;33083:19;;32742:366;;;:::o;33114:419::-;33280:4;33318:2;33307:9;33303:18;33295:26;;33367:9;33361:4;33357:20;33353:1;33342:9;33338:17;33331:47;33395:131;33521:4;33395:131;:::i;:::-;33387:139;;33114:419;;;:::o;33539:163::-;33679:15;33675:1;33667:6;33663:14;33656:39;33539:163;:::o;33708:366::-;33850:3;33871:67;33935:2;33930:3;33871:67;:::i;:::-;33864:74;;33947:93;34036:3;33947:93;:::i;:::-;34065:2;34060:3;34056:12;34049:19;;33708:366;;;:::o;34080:419::-;34246:4;34284:2;34273:9;34269:18;34261:26;;34333:9;34327:4;34323:20;34319:1;34308:9;34304:17;34297:47;34361:131;34487:4;34361:131;:::i;:::-;34353:139;;34080:419;;;:::o;34505:191::-;34545:4;34565:20;34583:1;34565:20;:::i;:::-;34560:25;;34599:20;34617:1;34599:20;:::i;:::-;34594:25;;34638:1;34635;34632:8;34629:34;;;34643:18;;:::i;:::-;34629:34;34688:1;34685;34681:9;34673:17;;34505:191;;;;:::o;34702:225::-;34842:34;34838:1;34830:6;34826:14;34819:58;34911:8;34906:2;34898:6;34894:15;34887:33;34702:225;:::o;34933:366::-;35075:3;35096:67;35160:2;35155:3;35096:67;:::i;:::-;35089:74;;35172:93;35261:3;35172:93;:::i;:::-;35290:2;35285:3;35281:12;35274:19;;34933:366;;;:::o;35305:419::-;35471:4;35509:2;35498:9;35494:18;35486:26;;35558:9;35552:4;35548:20;35544:1;35533:9;35529:17;35522:47;35586:131;35712:4;35586:131;:::i;:::-;35578:139;;35305:419;;;:::o;35730:182::-;35870:34;35866:1;35858:6;35854:14;35847:58;35730:182;:::o;35918:366::-;36060:3;36081:67;36145:2;36140:3;36081:67;:::i;:::-;36074:74;;36157:93;36246:3;36157:93;:::i;:::-;36275:2;36270:3;36266:12;36259:19;;35918:366;;;:::o;36290:419::-;36456:4;36494:2;36483:9;36479:18;36471:26;;36543:9;36537:4;36533:20;36529:1;36518:9;36514:17;36507:47;36571:131;36697:4;36571:131;:::i;:::-;36563:139;;36290:419;;;:::o;36715:98::-;36766:6;36800:5;36794:12;36784:22;;36715:98;;;:::o;36819:168::-;36902:11;36936:6;36931:3;36924:19;36976:4;36971:3;36967:14;36952:29;;36819:168;;;;:::o;36993:360::-;37079:3;37107:38;37139:5;37107:38;:::i;:::-;37161:70;37224:6;37219:3;37161:70;:::i;:::-;37154:77;;37240:52;37285:6;37280:3;37273:4;37266:5;37262:16;37240:52;:::i;:::-;37317:29;37339:6;37317:29;:::i;:::-;37312:3;37308:39;37301:46;;37083:270;36993:360;;;;:::o;37359:640::-;37554:4;37592:3;37581:9;37577:19;37569:27;;37606:71;37674:1;37663:9;37659:17;37650:6;37606:71;:::i;:::-;37687:72;37755:2;37744:9;37740:18;37731:6;37687:72;:::i;:::-;37769;37837:2;37826:9;37822:18;37813:6;37769:72;:::i;:::-;37888:9;37882:4;37878:20;37873:2;37862:9;37858:18;37851:48;37916:76;37987:4;37978:6;37916:76;:::i;:::-;37908:84;;37359:640;;;;;;;:::o;38005:141::-;38061:5;38092:6;38086:13;38077:22;;38108:32;38134:5;38108:32;:::i;:::-;38005:141;;;;:::o;38152:349::-;38221:6;38270:2;38258:9;38249:7;38245:23;38241:32;38238:119;;;38276:79;;:::i;:::-;38238:119;38396:1;38421:63;38476:7;38467:6;38456:9;38452:22;38421:63;:::i;:::-;38411:73;;38367:127;38152:349;;;;:::o;38507:233::-;38546:3;38569:24;38587:5;38569:24;:::i;:::-;38560:33;;38615:66;38608:5;38605:77;38602:103;;;38685:18;;:::i;:::-;38602:103;38732:1;38725:5;38721:13;38714:20;;38507:233;;;:::o;38746:176::-;38778:1;38795:20;38813:1;38795:20;:::i;:::-;38790:25;;38829:20;38847:1;38829:20;:::i;:::-;38824:25;;38868:1;38858:35;;38873:18;;:::i;:::-;38858:35;38914:1;38911;38907:9;38902:14;;38746:176;;;;:::o;38928:180::-;38976:77;38973:1;38966:88;39073:4;39070:1;39063:15;39097:4;39094:1;39087:15

Swarm Source

ipfs://848f1e1f46adb133c788896f21c272b533e51b9c6fa3a729eee3c9cfdc8e80c3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.