ETH Price: $3,342.01 (+0.62%)

Token

Yagiverse (YAGIVERSE)
 

Overview

Max Total Supply

584 YAGIVERSE

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
alienzhao.eth
Balance
9 YAGIVERSE
0xe18c0a57677b00b40f18276b3a5e82ed40c80571
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FreeMint

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-29
*/

// 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

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

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

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

// File: AllFree.sol


pragma solidity ^0.8.6;







contract FreeMint is ERC721A,Ownable,ReentrancyGuard {
    using Strings for uint256;

    
    uint256 public maxSupply = 3333;
    uint256 public maxMint = 10;

    string public _baseTokenURI;
    string public _baseTokenEXT;
    string public notRevealedUri = "ipfs://QmZMKu1WQFc22jjvofWmRwH7VWBQsUqiVBstJQidWUjsp5/";

    bool public revealed = false;
    bool public paused = false;

    mapping(address => uint256) public _totalMinted;

    constructor() ERC721A("Yagiverse","YAGIVERSE") {}

    function mint(uint256 _mintAmount) public nonReentrant {
        require(!paused,"Contract Minting Paused");
        require(_mintAmount <= maxMint,"You can't mint more than the amount specified.");
        require(_mintAmount+_totalMinted[msg.sender] <= maxMint,"You cant mint more,Decrease MintAmount or Wait For Opensea" );
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply ,": No more NFTs to mint,decrease the quantity or check out OpenSea.");
        _safeMint(msg.sender,_mintAmount);
        _totalMinted[msg.sender]+=_mintAmount;
    }


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


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
        if (revealed == false) {
            return notRevealedUri;
        } else {
            string memory currentBaseURI = _baseURI();
            return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,tokenId.toString(),_baseTokenEXT)) : "";
        }
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }


    function toogleReveal() public onlyOwner{
        revealed = !revealed;
    }

    function tooglePause() public onlyOwner{
        paused = !paused;
    }

    function changeURLParams(string memory _nURL,string memory _nBaseExt) public onlyOwner {
        _baseTokenURI = _nURL;
        _baseTokenEXT = _nBaseExt;
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (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":"_baseTokenEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMinted","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":"string","name":"_nURL","type":"string"},{"internalType":"string","name":"_nBaseExt","type":"string"}],"name":"changeURLParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":"tooglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toogleReveal","outputs":[],"stateMutability":"nonpayable","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d05600a55600a600b556040518060600160405280603681526020016200357160369139600e9080519060200190620000409291906200023c565b506000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600981526020017f59616769766572736500000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f59414749564552534500000000000000000000000000000000000000000000008152508160029080519060200190620001099291906200023c565b508060039080519060200190620001229291906200023c565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200016e60201b60201c565b6200017660201b60201c565b600160098190555062000351565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024a90620002ec565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b600060028204905060018216806200030557607f821691505b602082108114156200031c576200031b62000322565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61321080620003616000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806385fee1681161010f578063bbc27564116100a2578063d621a77611610071578063d621a77614610536578063e985e9c514610540578063f2c4ce1e14610570578063f2fde38b1461058c576101e5565b8063bbc275641461049a578063c87b56dd146104ca578063cfc86f7b146104fa578063d5abeb0114610518576101e5565b8063a22cb465116100de578063a22cb4651461044e578063a8edbdc51461046a578063ac44600214610474578063b88d4fde1461047e576101e5565b806385fee168146103d85780638da5cb5b146103f657806395d89b4114610414578063a0712d6814610432576101e5565b806342842e0e1161018757806370a082311161015657806370a0823114610364578063715018a6146103945780637501f7411461039e578063783fd922146103bc576101e5565b806342842e0e146102dc57806351830227146102f85780635c975abb146103165780636352211e14610334576101e5565b8063081c8c44116101c3578063081c8c4414610268578063095ea7b31461028657806318160ddd146102a257806323b872dd146102c0576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff91906124c4565b6105a8565b6040516102119190612966565b60405180910390f35b61022261063a565b60405161022f9190612981565b60405180910390f35b610252600480360381019061024d91906125df565b6106cc565b60405161025f91906128ff565b60405180910390f35b61027061074b565b60405161027d9190612981565b60405180910390f35b6102a0600480360381019061029b9190612484565b6107d9565b005b6102aa61091d565b6040516102b79190612ac3565b60405180910390f35b6102da60048036038101906102d5919061236e565b610934565b005b6102f660048036038101906102f1919061236e565b610c59565b005b610300610c79565b60405161030d9190612966565b60405180910390f35b61031e610c8c565b60405161032b9190612966565b60405180910390f35b61034e600480360381019061034991906125df565b610c9f565b60405161035b91906128ff565b60405180910390f35b61037e60048036038101906103799190612301565b610cb1565b60405161038b9190612ac3565b60405180910390f35b61039c610d6a565b005b6103a6610d7e565b6040516103b39190612ac3565b60405180910390f35b6103d660048036038101906103d19190612567565b610d84565b005b6103e0610dbe565b6040516103ed9190612981565b60405180910390f35b6103fe610e4c565b60405161040b91906128ff565b60405180910390f35b61041c610e76565b6040516104299190612981565b60405180910390f35b61044c600480360381019061044791906125df565b610f08565b005b61046860048036038101906104639190612444565b611142565b005b6104726112ba565b005b61047c6112ee565b005b610498600480360381019061049391906123c1565b6113fb565b005b6104b460048036038101906104af9190612301565b61146e565b6040516104c19190612ac3565b60405180910390f35b6104e460048036038101906104df91906125df565b611486565b6040516104f19190612981565b60405180910390f35b6105026115df565b60405161050f9190612981565b60405180910390f35b61052061166d565b60405161052d9190612ac3565b60405180910390f35b61053e611673565b005b61055a6004803603810190610555919061232e565b6116a7565b6040516105679190612966565b60405180910390f35b61058a6004803603810190610585919061251e565b61173b565b005b6105a660048036038101906105a19190612301565b61175d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461064990612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461067590612d39565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d7826117e1565b61070d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e805461075890612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461078490612d39565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b60006107e482610c9f565b90508073ffffffffffffffffffffffffffffffffffffffff16610805611840565b73ffffffffffffffffffffffffffffffffffffffff1614610868576108318161082c611840565b6116a7565b610867576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610927611848565b6001546000540303905090565b600061093f8261184d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109a6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109b28461191b565b915091506109c881876109c3611840565b611942565b610a14576109dd866109d8611840565b6116a7565b610a13576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a7b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a888686866001611986565b8015610a9357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b6185610b3d88888761198c565b7c0200000000000000000000000000000000000000000000000000000000176119b4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610be9576000600185019050600060046000838152602001908152602001600020541415610be7576000548114610be6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c5186868660016119df565b505050505050565b610c74838383604051806020016040528060008152506113fb565b505050565b600f60009054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b6000610caa8261184d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d19576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d726119e5565b610d7c6000611a63565b565b600b5481565b610d8c6119e5565b81600c9080519060200190610da2929190612115565b5080600d9080519060200190610db9929190612115565b505050565b600d8054610dcb90612d39565b80601f0160208091040260200160405190810160405280929190818152602001828054610df790612d39565b8015610e445780601f10610e1957610100808354040283529160200191610e44565b820191906000526020600020905b815481529060010190602001808311610e2757829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e8590612d39565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190612d39565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b60026009541415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612a83565b60405180910390fd5b6002600981905550600f60019054906101000a900460ff1615610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90612a23565b60405180910390fd5b600b54811115610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe2906129e3565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826110399190612bc8565b111561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612aa3565b60405180910390fd5b600061108461091d565b9050600a5482826110959190612bc8565b11156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612a63565b60405180910390fd5b6110e03383611b29565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112f9190612bc8565b9250508190555050600160098190555050565b61114a611840565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111bc611840565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611269611840565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ae9190612966565b60405180910390a35050565b6112c26119e5565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6112f66119e5565b6002600954141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612a83565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161136a906128ea565b60006040518083038185875af1925050503d80600081146113a7576040519150601f19603f3d011682016040523d82523d6000602084013e6113ac565b606091505b50509050806113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612a43565b60405180910390fd5b506001600981905550565b611406848484610934565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114685761143184848484611b47565b611467576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60106020528060005260406000206000915090505481565b6060611491826117e1565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790612a03565b60405180910390fd5b60001515600f60009054906101000a900460ff161515141561157e57600e80546114f990612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461152590612d39565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b505050505090506115da565b6000611588611ca7565b905060008151116115a857604051806020016040528060008152506115d6565b806115b284611d39565b600d6040516020016115c6939291906128b9565b6040516020818303038152906040525b9150505b919050565b600c80546115ec90612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461161890612d39565b80156116655780601f1061163a57610100808354040283529160200191611665565b820191906000526020600020905b81548152906001019060200180831161164857829003601f168201915b505050505081565b600a5481565b61167b6119e5565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117436119e5565b80600e9080519060200190611759929190612115565b5050565b6117656119e5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906129a3565b60405180910390fd5b6117de81611a63565b50565b6000816117ec611848565b111580156117fb575060005482105b8015611839575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061185c611848565b116118e4576000548110156118e35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118e1575b60008114156118d75760046000836001900393508381526020019081526020016000205490506118ac565b8092505050611916565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119a3868684611e9a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119ed611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611a0b610e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906129c3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b43828260405180602001604052806000815250611eab565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b6d611840565b8786866040518563ffffffff1660e01b8152600401611b8f949392919061291a565b602060405180830381600087803b158015611ba957600080fd5b505af1925050508015611bda57506040513d601f19601f82011682018060405250810190611bd791906124f1565b60015b611c54573d8060008114611c0a576040519150601f19603f3d011682016040523d82523d6000602084013e611c0f565b606091505b50600081511415611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611cb690612d39565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce290612d39565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b60606000821415611d81576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e95565b600082905060005b60008214611db3578080611d9c90612d9c565b915050600a82611dac9190612c1e565b9150611d89565b60008167ffffffffffffffff811115611dcf57611dce612ed2565b5b6040519080825280601f01601f191660200182016040528015611e015781602001600182028036833780820191505090505b5090505b60008514611e8e57600182611e1a9190612c4f565b9150600a85611e299190612de5565b6030611e359190612bc8565b60f81b818381518110611e4b57611e4a612ea3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e879190612c1e565b9450611e05565b8093505050505b919050565b60009392505050565b600033905090565b611eb58383611f48565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f4357600080549050600083820390505b611ef56000868380600101945086611b47565b611f2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ee2578160005414611f4057600080fd5b50505b505050565b6000805490506000821415611f89576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f966000848385611986565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061200d83611ffe600086600061198c565b61200785612105565b176119b4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612073565b5060008214156120ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061210060008483856119df565b505050565b60006001821460e11b9050919050565b82805461212190612d39565b90600052602060002090601f016020900481019282612143576000855561218a565b82601f1061215c57805160ff191683800117855561218a565b8280016001018555821561218a579182015b8281111561218957825182559160200191906001019061216e565b5b509050612197919061219b565b5090565b5b808211156121b457600081600090555060010161219c565b5090565b60006121cb6121c684612b03565b612ade565b9050828152602081018484840111156121e7576121e6612f06565b5b6121f2848285612cf7565b509392505050565b600061220d61220884612b34565b612ade565b90508281526020810184848401111561222957612228612f06565b5b612234848285612cf7565b509392505050565b60008135905061224b8161317e565b92915050565b60008135905061226081613195565b92915050565b600081359050612275816131ac565b92915050565b60008151905061228a816131ac565b92915050565b600082601f8301126122a5576122a4612f01565b5b81356122b58482602086016121b8565b91505092915050565b600082601f8301126122d3576122d2612f01565b5b81356122e38482602086016121fa565b91505092915050565b6000813590506122fb816131c3565b92915050565b60006020828403121561231757612316612f10565b5b60006123258482850161223c565b91505092915050565b6000806040838503121561234557612344612f10565b5b60006123538582860161223c565b92505060206123648582860161223c565b9150509250929050565b60008060006060848603121561238757612386612f10565b5b60006123958682870161223c565b93505060206123a68682870161223c565b92505060406123b7868287016122ec565b9150509250925092565b600080600080608085870312156123db576123da612f10565b5b60006123e98782880161223c565b94505060206123fa8782880161223c565b935050604061240b878288016122ec565b925050606085013567ffffffffffffffff81111561242c5761242b612f0b565b5b61243887828801612290565b91505092959194509250565b6000806040838503121561245b5761245a612f10565b5b60006124698582860161223c565b925050602061247a85828601612251565b9150509250929050565b6000806040838503121561249b5761249a612f10565b5b60006124a98582860161223c565b92505060206124ba858286016122ec565b9150509250929050565b6000602082840312156124da576124d9612f10565b5b60006124e884828501612266565b91505092915050565b60006020828403121561250757612506612f10565b5b60006125158482850161227b565b91505092915050565b60006020828403121561253457612533612f10565b5b600082013567ffffffffffffffff81111561255257612551612f0b565b5b61255e848285016122be565b91505092915050565b6000806040838503121561257e5761257d612f10565b5b600083013567ffffffffffffffff81111561259c5761259b612f0b565b5b6125a8858286016122be565b925050602083013567ffffffffffffffff8111156125c9576125c8612f0b565b5b6125d5858286016122be565b9150509250929050565b6000602082840312156125f5576125f4612f10565b5b6000612603848285016122ec565b91505092915050565b61261581612c83565b82525050565b61262481612c95565b82525050565b600061263582612b7a565b61263f8185612b90565b935061264f818560208601612d06565b61265881612f15565b840191505092915050565b600061266e82612b85565b6126788185612bac565b9350612688818560208601612d06565b61269181612f15565b840191505092915050565b60006126a782612b85565b6126b18185612bbd565b93506126c1818560208601612d06565b80840191505092915050565b600081546126da81612d39565b6126e48186612bbd565b945060018216600081146126ff576001811461271057612743565b60ff19831686528186019350612743565b61271985612b65565b60005b8381101561273b5781548189015260018201915060208101905061271c565b838801955050505b50505092915050565b6000612759602683612bac565b915061276482612f26565b604082019050919050565b600061277c602083612bac565b915061278782612f75565b602082019050919050565b600061279f602e83612bac565b91506127aa82612f9e565b604082019050919050565b60006127c2602f83612bac565b91506127cd82612fed565b604082019050919050565b60006127e5601783612bac565b91506127f08261303c565b602082019050919050565b6000612808600083612ba1565b915061281382613065565b600082019050919050565b600061282b601083612bac565b915061283682613068565b602082019050919050565b600061284e604283612bac565b915061285982613091565b606082019050919050565b6000612871601f83612bac565b915061287c82613106565b602082019050919050565b6000612894603a83612bac565b915061289f8261312f565b604082019050919050565b6128b381612ced565b82525050565b60006128c5828661269c565b91506128d1828561269c565b91506128dd82846126cd565b9150819050949350505050565b60006128f5826127fb565b9150819050919050565b6000602082019050612914600083018461260c565b92915050565b600060808201905061292f600083018761260c565b61293c602083018661260c565b61294960408301856128aa565b818103606083015261295b818461262a565b905095945050505050565b600060208201905061297b600083018461261b565b92915050565b6000602082019050818103600083015261299b8184612663565b905092915050565b600060208201905081810360008301526129bc8161274c565b9050919050565b600060208201905081810360008301526129dc8161276f565b9050919050565b600060208201905081810360008301526129fc81612792565b9050919050565b60006020820190508181036000830152612a1c816127b5565b9050919050565b60006020820190508181036000830152612a3c816127d8565b9050919050565b60006020820190508181036000830152612a5c8161281e565b9050919050565b60006020820190508181036000830152612a7c81612841565b9050919050565b60006020820190508181036000830152612a9c81612864565b9050919050565b60006020820190508181036000830152612abc81612887565b9050919050565b6000602082019050612ad860008301846128aa565b92915050565b6000612ae8612af9565b9050612af48282612d6b565b919050565b6000604051905090565b600067ffffffffffffffff821115612b1e57612b1d612ed2565b5b612b2782612f15565b9050602081019050919050565b600067ffffffffffffffff821115612b4f57612b4e612ed2565b5b612b5882612f15565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bd382612ced565b9150612bde83612ced565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1357612c12612e16565b5b828201905092915050565b6000612c2982612ced565b9150612c3483612ced565b925082612c4457612c43612e45565b5b828204905092915050565b6000612c5a82612ced565b9150612c6583612ced565b925082821015612c7857612c77612e16565b5b828203905092915050565b6000612c8e82612ccd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d24578082015181840152602081019050612d09565b83811115612d33576000848401525b50505050565b60006002820490506001821680612d5157607f821691505b60208210811415612d6557612d64612e74565b5b50919050565b612d7482612f15565b810181811067ffffffffffffffff82111715612d9357612d92612ed2565b5b80604052505050565b6000612da782612ced565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612dda57612dd9612e16565b5b600182019050919050565b6000612df082612ced565b9150612dfb83612ced565b925082612e0b57612e0a612e45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e2074686520616d6f60008201527f756e74207370656369666965642e000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374204d696e74696e6720506175736564000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c64656372656173652060008201527f746865207175616e74697479206f7220636865636b206f7574204f70656e536560208201527f612e000000000000000000000000000000000000000000000000000000000000604082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f752063616e74206d696e74206d6f72652c4465637265617365204d696e7460008201527f416d6f756e74206f72205761697420466f72204f70656e736561000000000000602082015250565b61318781612c83565b811461319257600080fd5b50565b61319e81612c95565b81146131a957600080fd5b50565b6131b581612ca1565b81146131c057600080fd5b50565b6131cc81612ced565b81146131d757600080fd5b5056fea264697066735822122006378c96b2e1820d43901845b00b8057f2e548bba2babf73798fd42a6d22396b64736f6c63430008070033697066733a2f2f516d5a4d4b75315751466332326a6a766f66576d527748375657425173557169564273744a51696457556a7370352f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806385fee1681161010f578063bbc27564116100a2578063d621a77611610071578063d621a77614610536578063e985e9c514610540578063f2c4ce1e14610570578063f2fde38b1461058c576101e5565b8063bbc275641461049a578063c87b56dd146104ca578063cfc86f7b146104fa578063d5abeb0114610518576101e5565b8063a22cb465116100de578063a22cb4651461044e578063a8edbdc51461046a578063ac44600214610474578063b88d4fde1461047e576101e5565b806385fee168146103d85780638da5cb5b146103f657806395d89b4114610414578063a0712d6814610432576101e5565b806342842e0e1161018757806370a082311161015657806370a0823114610364578063715018a6146103945780637501f7411461039e578063783fd922146103bc576101e5565b806342842e0e146102dc57806351830227146102f85780635c975abb146103165780636352211e14610334576101e5565b8063081c8c44116101c3578063081c8c4414610268578063095ea7b31461028657806318160ddd146102a257806323b872dd146102c0576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff91906124c4565b6105a8565b6040516102119190612966565b60405180910390f35b61022261063a565b60405161022f9190612981565b60405180910390f35b610252600480360381019061024d91906125df565b6106cc565b60405161025f91906128ff565b60405180910390f35b61027061074b565b60405161027d9190612981565b60405180910390f35b6102a0600480360381019061029b9190612484565b6107d9565b005b6102aa61091d565b6040516102b79190612ac3565b60405180910390f35b6102da60048036038101906102d5919061236e565b610934565b005b6102f660048036038101906102f1919061236e565b610c59565b005b610300610c79565b60405161030d9190612966565b60405180910390f35b61031e610c8c565b60405161032b9190612966565b60405180910390f35b61034e600480360381019061034991906125df565b610c9f565b60405161035b91906128ff565b60405180910390f35b61037e60048036038101906103799190612301565b610cb1565b60405161038b9190612ac3565b60405180910390f35b61039c610d6a565b005b6103a6610d7e565b6040516103b39190612ac3565b60405180910390f35b6103d660048036038101906103d19190612567565b610d84565b005b6103e0610dbe565b6040516103ed9190612981565b60405180910390f35b6103fe610e4c565b60405161040b91906128ff565b60405180910390f35b61041c610e76565b6040516104299190612981565b60405180910390f35b61044c600480360381019061044791906125df565b610f08565b005b61046860048036038101906104639190612444565b611142565b005b6104726112ba565b005b61047c6112ee565b005b610498600480360381019061049391906123c1565b6113fb565b005b6104b460048036038101906104af9190612301565b61146e565b6040516104c19190612ac3565b60405180910390f35b6104e460048036038101906104df91906125df565b611486565b6040516104f19190612981565b60405180910390f35b6105026115df565b60405161050f9190612981565b60405180910390f35b61052061166d565b60405161052d9190612ac3565b60405180910390f35b61053e611673565b005b61055a6004803603810190610555919061232e565b6116a7565b6040516105679190612966565b60405180910390f35b61058a6004803603810190610585919061251e565b61173b565b005b6105a660048036038101906105a19190612301565b61175d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461064990612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461067590612d39565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d7826117e1565b61070d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e805461075890612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461078490612d39565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b60006107e482610c9f565b90508073ffffffffffffffffffffffffffffffffffffffff16610805611840565b73ffffffffffffffffffffffffffffffffffffffff1614610868576108318161082c611840565b6116a7565b610867576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610927611848565b6001546000540303905090565b600061093f8261184d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109a6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109b28461191b565b915091506109c881876109c3611840565b611942565b610a14576109dd866109d8611840565b6116a7565b610a13576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a7b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a888686866001611986565b8015610a9357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b6185610b3d88888761198c565b7c0200000000000000000000000000000000000000000000000000000000176119b4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610be9576000600185019050600060046000838152602001908152602001600020541415610be7576000548114610be6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c5186868660016119df565b505050505050565b610c74838383604051806020016040528060008152506113fb565b505050565b600f60009054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b6000610caa8261184d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d19576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d726119e5565b610d7c6000611a63565b565b600b5481565b610d8c6119e5565b81600c9080519060200190610da2929190612115565b5080600d9080519060200190610db9929190612115565b505050565b600d8054610dcb90612d39565b80601f0160208091040260200160405190810160405280929190818152602001828054610df790612d39565b8015610e445780601f10610e1957610100808354040283529160200191610e44565b820191906000526020600020905b815481529060010190602001808311610e2757829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e8590612d39565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190612d39565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b60026009541415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612a83565b60405180910390fd5b6002600981905550600f60019054906101000a900460ff1615610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90612a23565b60405180910390fd5b600b54811115610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe2906129e3565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826110399190612bc8565b111561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612aa3565b60405180910390fd5b600061108461091d565b9050600a5482826110959190612bc8565b11156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612a63565b60405180910390fd5b6110e03383611b29565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112f9190612bc8565b9250508190555050600160098190555050565b61114a611840565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111bc611840565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611269611840565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ae9190612966565b60405180910390a35050565b6112c26119e5565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6112f66119e5565b6002600954141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612a83565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161136a906128ea565b60006040518083038185875af1925050503d80600081146113a7576040519150601f19603f3d011682016040523d82523d6000602084013e6113ac565b606091505b50509050806113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612a43565b60405180910390fd5b506001600981905550565b611406848484610934565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114685761143184848484611b47565b611467576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60106020528060005260406000206000915090505481565b6060611491826117e1565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790612a03565b60405180910390fd5b60001515600f60009054906101000a900460ff161515141561157e57600e80546114f990612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461152590612d39565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b505050505090506115da565b6000611588611ca7565b905060008151116115a857604051806020016040528060008152506115d6565b806115b284611d39565b600d6040516020016115c6939291906128b9565b6040516020818303038152906040525b9150505b919050565b600c80546115ec90612d39565b80601f016020809104026020016040519081016040528092919081815260200182805461161890612d39565b80156116655780601f1061163a57610100808354040283529160200191611665565b820191906000526020600020905b81548152906001019060200180831161164857829003601f168201915b505050505081565b600a5481565b61167b6119e5565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117436119e5565b80600e9080519060200190611759929190612115565b5050565b6117656119e5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906129a3565b60405180910390fd5b6117de81611a63565b50565b6000816117ec611848565b111580156117fb575060005482105b8015611839575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061185c611848565b116118e4576000548110156118e35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118e1575b60008114156118d75760046000836001900393508381526020019081526020016000205490506118ac565b8092505050611916565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119a3868684611e9a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119ed611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611a0b610e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906129c3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b43828260405180602001604052806000815250611eab565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b6d611840565b8786866040518563ffffffff1660e01b8152600401611b8f949392919061291a565b602060405180830381600087803b158015611ba957600080fd5b505af1925050508015611bda57506040513d601f19601f82011682018060405250810190611bd791906124f1565b60015b611c54573d8060008114611c0a576040519150601f19603f3d011682016040523d82523d6000602084013e611c0f565b606091505b50600081511415611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611cb690612d39565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce290612d39565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b60606000821415611d81576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e95565b600082905060005b60008214611db3578080611d9c90612d9c565b915050600a82611dac9190612c1e565b9150611d89565b60008167ffffffffffffffff811115611dcf57611dce612ed2565b5b6040519080825280601f01601f191660200182016040528015611e015781602001600182028036833780820191505090505b5090505b60008514611e8e57600182611e1a9190612c4f565b9150600a85611e299190612de5565b6030611e359190612bc8565b60f81b818381518110611e4b57611e4a612ea3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e879190612c1e565b9450611e05565b8093505050505b919050565b60009392505050565b600033905090565b611eb58383611f48565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f4357600080549050600083820390505b611ef56000868380600101945086611b47565b611f2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ee2578160005414611f4057600080fd5b50505b505050565b6000805490506000821415611f89576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f966000848385611986565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061200d83611ffe600086600061198c565b61200785612105565b176119b4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612073565b5060008214156120ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061210060008483856119df565b505050565b60006001821460e11b9050919050565b82805461212190612d39565b90600052602060002090601f016020900481019282612143576000855561218a565b82601f1061215c57805160ff191683800117855561218a565b8280016001018555821561218a579182015b8281111561218957825182559160200191906001019061216e565b5b509050612197919061219b565b5090565b5b808211156121b457600081600090555060010161219c565b5090565b60006121cb6121c684612b03565b612ade565b9050828152602081018484840111156121e7576121e6612f06565b5b6121f2848285612cf7565b509392505050565b600061220d61220884612b34565b612ade565b90508281526020810184848401111561222957612228612f06565b5b612234848285612cf7565b509392505050565b60008135905061224b8161317e565b92915050565b60008135905061226081613195565b92915050565b600081359050612275816131ac565b92915050565b60008151905061228a816131ac565b92915050565b600082601f8301126122a5576122a4612f01565b5b81356122b58482602086016121b8565b91505092915050565b600082601f8301126122d3576122d2612f01565b5b81356122e38482602086016121fa565b91505092915050565b6000813590506122fb816131c3565b92915050565b60006020828403121561231757612316612f10565b5b60006123258482850161223c565b91505092915050565b6000806040838503121561234557612344612f10565b5b60006123538582860161223c565b92505060206123648582860161223c565b9150509250929050565b60008060006060848603121561238757612386612f10565b5b60006123958682870161223c565b93505060206123a68682870161223c565b92505060406123b7868287016122ec565b9150509250925092565b600080600080608085870312156123db576123da612f10565b5b60006123e98782880161223c565b94505060206123fa8782880161223c565b935050604061240b878288016122ec565b925050606085013567ffffffffffffffff81111561242c5761242b612f0b565b5b61243887828801612290565b91505092959194509250565b6000806040838503121561245b5761245a612f10565b5b60006124698582860161223c565b925050602061247a85828601612251565b9150509250929050565b6000806040838503121561249b5761249a612f10565b5b60006124a98582860161223c565b92505060206124ba858286016122ec565b9150509250929050565b6000602082840312156124da576124d9612f10565b5b60006124e884828501612266565b91505092915050565b60006020828403121561250757612506612f10565b5b60006125158482850161227b565b91505092915050565b60006020828403121561253457612533612f10565b5b600082013567ffffffffffffffff81111561255257612551612f0b565b5b61255e848285016122be565b91505092915050565b6000806040838503121561257e5761257d612f10565b5b600083013567ffffffffffffffff81111561259c5761259b612f0b565b5b6125a8858286016122be565b925050602083013567ffffffffffffffff8111156125c9576125c8612f0b565b5b6125d5858286016122be565b9150509250929050565b6000602082840312156125f5576125f4612f10565b5b6000612603848285016122ec565b91505092915050565b61261581612c83565b82525050565b61262481612c95565b82525050565b600061263582612b7a565b61263f8185612b90565b935061264f818560208601612d06565b61265881612f15565b840191505092915050565b600061266e82612b85565b6126788185612bac565b9350612688818560208601612d06565b61269181612f15565b840191505092915050565b60006126a782612b85565b6126b18185612bbd565b93506126c1818560208601612d06565b80840191505092915050565b600081546126da81612d39565b6126e48186612bbd565b945060018216600081146126ff576001811461271057612743565b60ff19831686528186019350612743565b61271985612b65565b60005b8381101561273b5781548189015260018201915060208101905061271c565b838801955050505b50505092915050565b6000612759602683612bac565b915061276482612f26565b604082019050919050565b600061277c602083612bac565b915061278782612f75565b602082019050919050565b600061279f602e83612bac565b91506127aa82612f9e565b604082019050919050565b60006127c2602f83612bac565b91506127cd82612fed565b604082019050919050565b60006127e5601783612bac565b91506127f08261303c565b602082019050919050565b6000612808600083612ba1565b915061281382613065565b600082019050919050565b600061282b601083612bac565b915061283682613068565b602082019050919050565b600061284e604283612bac565b915061285982613091565b606082019050919050565b6000612871601f83612bac565b915061287c82613106565b602082019050919050565b6000612894603a83612bac565b915061289f8261312f565b604082019050919050565b6128b381612ced565b82525050565b60006128c5828661269c565b91506128d1828561269c565b91506128dd82846126cd565b9150819050949350505050565b60006128f5826127fb565b9150819050919050565b6000602082019050612914600083018461260c565b92915050565b600060808201905061292f600083018761260c565b61293c602083018661260c565b61294960408301856128aa565b818103606083015261295b818461262a565b905095945050505050565b600060208201905061297b600083018461261b565b92915050565b6000602082019050818103600083015261299b8184612663565b905092915050565b600060208201905081810360008301526129bc8161274c565b9050919050565b600060208201905081810360008301526129dc8161276f565b9050919050565b600060208201905081810360008301526129fc81612792565b9050919050565b60006020820190508181036000830152612a1c816127b5565b9050919050565b60006020820190508181036000830152612a3c816127d8565b9050919050565b60006020820190508181036000830152612a5c8161281e565b9050919050565b60006020820190508181036000830152612a7c81612841565b9050919050565b60006020820190508181036000830152612a9c81612864565b9050919050565b60006020820190508181036000830152612abc81612887565b9050919050565b6000602082019050612ad860008301846128aa565b92915050565b6000612ae8612af9565b9050612af48282612d6b565b919050565b6000604051905090565b600067ffffffffffffffff821115612b1e57612b1d612ed2565b5b612b2782612f15565b9050602081019050919050565b600067ffffffffffffffff821115612b4f57612b4e612ed2565b5b612b5882612f15565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bd382612ced565b9150612bde83612ced565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1357612c12612e16565b5b828201905092915050565b6000612c2982612ced565b9150612c3483612ced565b925082612c4457612c43612e45565b5b828204905092915050565b6000612c5a82612ced565b9150612c6583612ced565b925082821015612c7857612c77612e16565b5b828203905092915050565b6000612c8e82612ccd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d24578082015181840152602081019050612d09565b83811115612d33576000848401525b50505050565b60006002820490506001821680612d5157607f821691505b60208210811415612d6557612d64612e74565b5b50919050565b612d7482612f15565b810181811067ffffffffffffffff82111715612d9357612d92612ed2565b5b80604052505050565b6000612da782612ced565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612dda57612dd9612e16565b5b600182019050919050565b6000612df082612ced565b9150612dfb83612ced565b925082612e0b57612e0a612e45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e2074686520616d6f60008201527f756e74207370656369666965642e000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374204d696e74696e6720506175736564000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c64656372656173652060008201527f746865207175616e74697479206f7220636865636b206f7574204f70656e536560208201527f612e000000000000000000000000000000000000000000000000000000000000604082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f752063616e74206d696e74206d6f72652c4465637265617365204d696e7460008201527f416d6f756e74206f72205761697420466f72204f70656e736561000000000000602082015250565b61318781612c83565b811461319257600080fd5b50565b61319e81612c95565b81146131a957600080fd5b50565b6131b581612ca1565b81146131c057600080fd5b50565b6131cc81612ced565b81146131d757600080fd5b5056fea264697066735822122006378c96b2e1820d43901845b00b8057f2e548bba2babf73798fd42a6d22396b64736f6c63430008070033

Deployed Bytecode Sourcemap

60161:2397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27284:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28186:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34669:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60403:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34110:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23937:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38376:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41289:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60499:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60534:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29579:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25121:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;:::i;:::-;;60299:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62193:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60369:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7384:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28362:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60682:592;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35227:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62024:79;;;:::i;:::-;;62364:189;;;:::i;:::-;;42072:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60569:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61408:472;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60335:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60261:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62111:74;;;:::i;:::-;;35692:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61888:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8290:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27284:639;27369:4;27708:10;27693:25;;:11;:25;;;;:102;;;;27785:10;27770:25;;:11;:25;;;;27693:102;:179;;;;27862:10;27847:25;;:11;:25;;;;27693:179;27673:199;;27284:639;;;:::o;28186:100::-;28240:13;28273:5;28266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28186:100;:::o;34669:218::-;34745:7;34770:16;34778:7;34770;:16::i;:::-;34765:64;;34795:34;;;;;;;;;;;;;;34765:64;34849:15;:24;34865:7;34849:24;;;;;;;;;;;:30;;;;;;;;;;;;34842:37;;34669:218;;;:::o;60403:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34110:400::-;34191:13;34207:16;34215:7;34207;:16::i;:::-;34191:32;;34263:5;34240:28;;:19;:17;:19::i;:::-;:28;;;34236:175;;34288:44;34305:5;34312:19;:17;:19::i;:::-;34288:16;:44::i;:::-;34283:128;;34360:35;;;;;;;;;;;;;;34283:128;34236:175;34456:2;34423:15;:24;34439:7;34423:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34494:7;34490:2;34474:28;;34483:5;34474:28;;;;;;;;;;;;34180:330;34110:400;;:::o;23937:323::-;23998:7;24226:15;:13;:15::i;:::-;24211:12;;24195:13;;:28;:46;24188:53;;23937:323;:::o;38376:2817::-;38510:27;38540;38559:7;38540:18;:27::i;:::-;38510:57;;38625:4;38584:45;;38600:19;38584:45;;;38580:86;;38638:28;;;;;;;;;;;;;;38580:86;38680:27;38709:23;38736:35;38763:7;38736:26;:35::i;:::-;38679:92;;;;38871:68;38896:15;38913:4;38919:19;:17;:19::i;:::-;38871:24;:68::i;:::-;38866:180;;38959:43;38976:4;38982:19;:17;:19::i;:::-;38959:16;:43::i;:::-;38954:92;;39011:35;;;;;;;;;;;;;;38954:92;38866:180;39077:1;39063:16;;:2;:16;;;39059:52;;;39088:23;;;;;;;;;;;;;;39059:52;39124:43;39146:4;39152:2;39156:7;39165:1;39124:21;:43::i;:::-;39260:15;39257:160;;;39400:1;39379:19;39372:30;39257:160;39797:18;:24;39816:4;39797:24;;;;;;;;;;;;;;;;39795:26;;;;;;;;;;;;39866:18;:22;39885:2;39866:22;;;;;;;;;;;;;;;;39864:24;;;;;;;;;;;40188:146;40225:2;40274:45;40289:4;40295:2;40299:19;40274:14;:45::i;:::-;20336:8;40246:73;40188:18;:146::i;:::-;40159:17;:26;40177:7;40159:26;;;;;;;;;;;:175;;;;40505:1;20336:8;40454:19;:47;:52;40450:627;;;40527:19;40559:1;40549:7;:11;40527:33;;40716:1;40682:17;:30;40700:11;40682:30;;;;;;;;;;;;:35;40678:384;;;40820:13;;40805:11;:28;40801:242;;41000:19;40967:17;:30;40985:11;40967:30;;;;;;;;;;;:52;;;;40801:242;40678:384;40508:569;40450:627;41124:7;41120:2;41105:27;;41114:4;41105:27;;;;;;;;;;;;41143:42;41164:4;41170:2;41174:7;41183:1;41143:20;:42::i;:::-;38499:2694;;;38376:2817;;;:::o;41289:185::-;41427:39;41444:4;41450:2;41454:7;41427:39;;;;;;;;;;;;:16;:39::i;:::-;41289:185;;;:::o;60499:28::-;;;;;;;;;;;;;:::o;60534:26::-;;;;;;;;;;;;;:::o;29579:152::-;29651:7;29694:27;29713:7;29694:18;:27::i;:::-;29671:52;;29579:152;;;:::o;25121:233::-;25193:7;25234:1;25217:19;;:5;:19;;;25213:60;;;25245:28;;;;;;;;;;;;;;25213:60;19280:13;25291:18;:25;25310:5;25291:25;;;;;;;;;;;;;;;;:55;25284:62;;25121:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;60299:27::-;;;;:::o;62193:163::-;7270:13;:11;:13::i;:::-;62307:5:::1;62291:13;:21;;;;;;;;;;;;:::i;:::-;;62339:9;62323:13;:25;;;;;;;;;;;;:::i;:::-;;62193:163:::0;;:::o;60369:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;28362:104::-;28418:13;28451:7;28444:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28362:104;:::o;60682:592::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;60757:6:::1;;;;;;;;;;;60756:7;60748:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;60824:7;;60809:11;:22;;60801:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;60940:7;;60912:12;:24;60925:10;60912:24;;;;;;;;;;;;;;;;60900:11;:36;;;;:::i;:::-;:47;;60892:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;61021:14;61038:13;:11;:13::i;:::-;61021:30;;61094:9;;61079:11;61070:6;:20;;;;:::i;:::-;:33;;61062:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;61185:33;61195:10;61206:11;61185:9;:33::i;:::-;61255:11;61229:12;:24;61242:10;61229:24;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;60737:537;1768:1:::0;2722:7;:22;;;;60682:592;:::o;35227:308::-;35338:19;:17;:19::i;:::-;35326:31;;:8;:31;;;35322:61;;;35366:17;;;;;;;;;;;;;;35322:61;35448:8;35396:18;:39;35415:19;:17;:19::i;:::-;35396:39;;;;;;;;;;;;;;;:49;35436:8;35396:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35508:8;35472:55;;35487:19;:17;:19::i;:::-;35472:55;;;35518:8;35472:55;;;;;;:::i;:::-;;;;;;;;35227:308;;:::o;62024:79::-;7270:13;:11;:13::i;:::-;62087:8:::1;;;;;;;;;;;62086:9;62075:8;;:20;;;;;;;;;;;;;;;;;;62024:79::o:0;62364:189::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62433:12:::2;62450:10;:15;;62473:21;62450:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62432:67;;;62518:7;62510:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;62421:132;1768:1:::1;2722:7;:22;;;;62364:189::o:0;42072:399::-;42239:31;42252:4;42258:2;42262:7;42239:12;:31::i;:::-;42303:1;42285:2;:14;;;:19;42281:183;;42324:56;42355:4;42361:2;42365:7;42374:5;42324:30;:56::i;:::-;42319:145;;42408:40;;;;;;;;;;;;;;42319:145;42281:183;42072:399;;;;:::o;60569:47::-;;;;;;;;;;;;;;;;;:::o;61408:472::-;61481:13;61515:16;61523:7;61515;:16::i;:::-;61507:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;61609:5;61597:17;;:8;;;;;;;;;;;:17;;;61593:280;;;61638:14;61631:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61593:280;61685:28;61716:10;:8;:10::i;:::-;61685:41;;61779:1;61754:14;61748:28;:32;:113;;;;;;;;;;;;;;;;;61807:14;61822:18;:7;:16;:18::i;:::-;61841:13;61790:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61748:113;61741:120;;;61408:472;;;;:::o;60335:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60261:31::-;;;;:::o;62111:74::-;7270:13;:11;:13::i;:::-;62171:6:::1;;;;;;;;;;;62170:7;62161:6;;:16;;;;;;;;;;;;;;;;;;62111:74::o:0;35692:164::-;35789:4;35813:18;:25;35832:5;35813:25;;;;;;;;;;;;;;;:35;35839:8;35813:35;;;;;;;;;;;;;;;;;;;;;;;;;35806:42;;35692:164;;;;:::o;61888:126::-;7270:13;:11;:13::i;:::-;61991:15:::1;61974:14;:32;;;;;;;;;;;;:::i;:::-;;61888:126:::0;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;;;8371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;36114:282::-;36179:4;36235:7;36216:15;:13;:15::i;:::-;:26;;:66;;;;;36269:13;;36259:7;:23;36216:66;:153;;;;;36368:1;20056:8;36320:17;:26;36338:7;36320:26;;;;;;;;;;;;:44;:49;36216:153;36196:173;;36114:282;;;:::o;57880:105::-;57940:7;57967:10;57960:17;;57880:105;:::o;23453:92::-;23509:7;23453:92;:::o;30734:1275::-;30801:7;30821:12;30836:7;30821:22;;30904:4;30885:15;:13;:15::i;:::-;:23;30881:1061;;30938:13;;30931:4;:20;30927:1015;;;30976:14;30993:17;:23;31011:4;30993:23;;;;;;;;;;;;30976:40;;31110:1;20056:8;31082:6;:24;:29;31078:845;;;31747:113;31764:1;31754:6;:11;31747:113;;;31807:17;:25;31825:6;;;;;;;31807:25;;;;;;;;;;;;31798:34;;31747:113;;;31893:6;31886:13;;;;;;31078:845;30953:989;30927:1015;30881:1061;31970:31;;;;;;;;;;;;;;30734:1275;;;;:::o;37277:479::-;37379:27;37408:23;37449:38;37490:15;:24;37506:7;37490:24;;;;;;;;;;;37449:65;;37661:18;37638:41;;37718:19;37712:26;37693:45;;37623:126;37277:479;;;:::o;36505:659::-;36654:11;36819:16;36812:5;36808:28;36799:37;;36979:16;36968:9;36964:32;36951:45;;37129:15;37118:9;37115:30;37107:5;37096:9;37093:20;37090:56;37080:66;;36505:659;;;;;:::o;43133:159::-;;;;;:::o;57189:311::-;57324:7;57344:16;20460:3;57370:19;:41;;57344:68;;20460:3;57438:31;57449:4;57455:2;57459:9;57438:10;:31::i;:::-;57430:40;;:62;;57423:69;;;57189:311;;;;;:::o;32557:450::-;32637:14;32805:16;32798:5;32794:28;32785:37;;32982:5;32968:11;32943:23;32939:41;32936:52;32929:5;32926:63;32916:73;;32557:450;;;;:::o;43957:158::-;;;;;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;51712:112::-;51789:27;51799:2;51803:8;51789:27;;;;;;;;;;;;:9;:27::i;:::-;51712:112;;:::o;44555:716::-;44718:4;44764:2;44739:45;;;44785:19;:17;:19::i;:::-;44806:4;44812:7;44821:5;44739:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44735:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45039:1;45022:6;:13;:18;45018:235;;;45068:40;;;;;;;;;;;;;;45018:235;45211:6;45205:13;45196:6;45192:2;45188:15;45181:38;44735:529;44908:54;;;44898:64;;;:6;:64;;;;44891:71;;;44555:716;;;;;;:::o;61284:114::-;61344:13;61377;61370:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61284:114;:::o;3189:723::-;3245:13;3475:1;3466:5;:10;3462:53;;;3493:10;;;;;;;;;;;;;;;;;;;;;3462:53;3525:12;3540:5;3525:20;;3556:14;3581:78;3596:1;3588:4;:9;3581:78;;3614:8;;;;;:::i;:::-;;;;3645:2;3637:10;;;;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:39;;3719:154;3735:1;3726:5;:10;3719:154;;3763:1;3753:11;;;;;:::i;:::-;;;3830:2;3822:5;:10;;;;:::i;:::-;3809:2;:24;;;;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3859:2;3850:11;;;;;:::i;:::-;;;3719:154;;;3897:6;3883:21;;;;;3189:723;;;;:::o;56890:147::-;57027:6;56890:147;;;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;50939:689::-;51070:19;51076:2;51080:8;51070:5;:19::i;:::-;51149:1;51131:2;:14;;;:19;51127:483;;51171:11;51185:13;;51171:27;;51217:13;51239:8;51233:3;:14;51217:30;;51266:233;51297:62;51336:1;51340:2;51344:7;;;;;;51353:5;51297:30;:62::i;:::-;51292:167;;51395:40;;;;;;;;;;;;;;51292:167;51494:3;51486:5;:11;51266:233;;51581:3;51564:13;;:20;51560:34;;51586:8;;;51560:34;51152:458;;51127:483;50939:689;;;:::o;45733:2454::-;45806:20;45829:13;;45806:36;;45869:1;45857:8;:13;45853:44;;;45879:18;;;;;;;;;;;;;;45853:44;45910:61;45940:1;45944:2;45948:12;45962:8;45910:21;:61::i;:::-;46454:1;19418:2;46424:1;:26;;46423:32;46411:8;:45;46385:18;:22;46404:2;46385:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46733:139;46770:2;46824:33;46847:1;46851:2;46855:1;46824:14;:33::i;:::-;46791:30;46812:8;46791:20;:30::i;:::-;:66;46733:18;:139::i;:::-;46699:17;:31;46717:12;46699:31;;;;;;;;;;;:173;;;;46889:16;46920:11;46949:8;46934:12;:23;46920:37;;47204:16;47200:2;47196:25;47184:37;;47576:12;47536:8;47495:1;47433:25;47374:1;47313;47286:335;47701:1;47687:12;47683:20;47641:346;47742:3;47733:7;47730:16;47641:346;;47960:7;47950:8;47947:1;47920:25;47917:1;47914;47909:59;47795:1;47786:7;47782:15;47771:26;;47641:346;;;47645:77;48032:1;48020:8;:13;48016:45;;;48042:19;;;;;;;;;;;;;;48016:45;48094:3;48078:13;:19;;;;46159:1950;;48119:60;48148:1;48152:2;48156:12;48170:8;48119:20;:60::i;:::-;45795:2392;45733:2454;;:::o;33109:324::-;33179:14;33412:1;33402:8;33399:15;33373:24;33369:46;33359:56;;33109:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:834::-;6911:6;6919;6968:2;6956:9;6947:7;6943:23;6939:32;6936:119;;;6974:79;;:::i;:::-;6936:119;7122:1;7111:9;7107:17;7094:31;7152:18;7144:6;7141:30;7138:117;;;7174:79;;:::i;:::-;7138:117;7279:63;7334:7;7325:6;7314:9;7310:22;7279:63;:::i;:::-;7269:73;;7065:287;7419:2;7408:9;7404:18;7391:32;7450:18;7442:6;7439:30;7436:117;;;7472:79;;:::i;:::-;7436:117;7577:63;7632:7;7623:6;7612:9;7608:22;7577:63;:::i;:::-;7567:73;;7362:288;6823:834;;;;;:::o;7663:329::-;7722:6;7771:2;7759:9;7750:7;7746:23;7742:32;7739:119;;;7777:79;;:::i;:::-;7739:119;7897:1;7922:53;7967:7;7958:6;7947:9;7943:22;7922:53;:::i;:::-;7912:63;;7868:117;7663:329;;;;:::o;7998:118::-;8085:24;8103:5;8085:24;:::i;:::-;8080:3;8073:37;7998:118;;:::o;8122:109::-;8203:21;8218:5;8203:21;:::i;:::-;8198:3;8191:34;8122:109;;:::o;8237:360::-;8323:3;8351:38;8383:5;8351:38;:::i;:::-;8405:70;8468:6;8463:3;8405:70;:::i;:::-;8398:77;;8484:52;8529:6;8524:3;8517:4;8510:5;8506:16;8484:52;:::i;:::-;8561:29;8583:6;8561:29;:::i;:::-;8556:3;8552:39;8545:46;;8327:270;8237:360;;;;:::o;8603:364::-;8691:3;8719:39;8752:5;8719:39;:::i;:::-;8774:71;8838:6;8833:3;8774:71;:::i;:::-;8767:78;;8854:52;8899:6;8894:3;8887:4;8880:5;8876:16;8854:52;:::i;:::-;8931:29;8953:6;8931:29;:::i;:::-;8926:3;8922:39;8915:46;;8695:272;8603:364;;;;:::o;8973:377::-;9079:3;9107:39;9140:5;9107:39;:::i;:::-;9162:89;9244:6;9239:3;9162:89;:::i;:::-;9155:96;;9260:52;9305:6;9300:3;9293:4;9286:5;9282:16;9260:52;:::i;:::-;9337:6;9332:3;9328:16;9321:23;;9083:267;8973:377;;;;:::o;9380:845::-;9483:3;9520:5;9514:12;9549:36;9575:9;9549:36;:::i;:::-;9601:89;9683:6;9678:3;9601:89;:::i;:::-;9594:96;;9721:1;9710:9;9706:17;9737:1;9732:137;;;;9883:1;9878:341;;;;9699:520;;9732:137;9816:4;9812:9;9801;9797:25;9792:3;9785:38;9852:6;9847:3;9843:16;9836:23;;9732:137;;9878:341;9945:38;9977:5;9945:38;:::i;:::-;10005:1;10019:154;10033:6;10030:1;10027:13;10019:154;;;10107:7;10101:14;10097:1;10092:3;10088:11;10081:35;10157:1;10148:7;10144:15;10133:26;;10055:4;10052:1;10048:12;10043:17;;10019:154;;;10202:6;10197:3;10193:16;10186:23;;9885:334;;9699:520;;9487:738;;9380:845;;;;:::o;10231:366::-;10373:3;10394:67;10458:2;10453:3;10394:67;:::i;:::-;10387:74;;10470:93;10559:3;10470:93;:::i;:::-;10588:2;10583:3;10579:12;10572:19;;10231:366;;;:::o;10603:::-;10745:3;10766:67;10830:2;10825:3;10766:67;:::i;:::-;10759:74;;10842:93;10931:3;10842:93;:::i;:::-;10960:2;10955:3;10951:12;10944:19;;10603:366;;;:::o;10975:::-;11117:3;11138:67;11202:2;11197:3;11138:67;:::i;:::-;11131:74;;11214:93;11303:3;11214:93;:::i;:::-;11332:2;11327:3;11323:12;11316:19;;10975:366;;;:::o;11347:::-;11489:3;11510:67;11574:2;11569:3;11510:67;:::i;:::-;11503:74;;11586:93;11675:3;11586:93;:::i;:::-;11704:2;11699:3;11695:12;11688:19;;11347:366;;;:::o;11719:::-;11861:3;11882:67;11946:2;11941:3;11882:67;:::i;:::-;11875:74;;11958:93;12047:3;11958:93;:::i;:::-;12076:2;12071:3;12067:12;12060:19;;11719:366;;;:::o;12091:398::-;12250:3;12271:83;12352:1;12347:3;12271:83;:::i;:::-;12264:90;;12363:93;12452:3;12363:93;:::i;:::-;12481:1;12476:3;12472:11;12465:18;;12091:398;;;:::o;12495:366::-;12637:3;12658:67;12722:2;12717:3;12658:67;:::i;:::-;12651:74;;12734:93;12823:3;12734:93;:::i;:::-;12852:2;12847:3;12843:12;12836:19;;12495:366;;;:::o;12867:::-;13009:3;13030:67;13094:2;13089:3;13030:67;:::i;:::-;13023:74;;13106:93;13195:3;13106:93;:::i;:::-;13224:2;13219:3;13215:12;13208:19;;12867:366;;;:::o;13239:::-;13381:3;13402:67;13466:2;13461:3;13402:67;:::i;:::-;13395:74;;13478:93;13567:3;13478:93;:::i;:::-;13596:2;13591:3;13587:12;13580:19;;13239:366;;;:::o;13611:::-;13753:3;13774:67;13838:2;13833:3;13774:67;:::i;:::-;13767:74;;13850:93;13939:3;13850:93;:::i;:::-;13968:2;13963:3;13959:12;13952:19;;13611:366;;;:::o;13983:118::-;14070:24;14088:5;14070:24;:::i;:::-;14065:3;14058:37;13983:118;;:::o;14107:589::-;14332:3;14354:95;14445:3;14436:6;14354:95;:::i;:::-;14347:102;;14466:95;14557:3;14548:6;14466:95;:::i;:::-;14459:102;;14578:92;14666:3;14657:6;14578:92;:::i;:::-;14571:99;;14687:3;14680:10;;14107:589;;;;;;:::o;14702:379::-;14886:3;14908:147;15051:3;14908:147;:::i;:::-;14901:154;;15072:3;15065:10;;14702:379;;;:::o;15087:222::-;15180:4;15218:2;15207:9;15203:18;15195:26;;15231:71;15299:1;15288:9;15284:17;15275:6;15231:71;:::i;:::-;15087:222;;;;:::o;15315:640::-;15510:4;15548:3;15537:9;15533:19;15525:27;;15562:71;15630:1;15619:9;15615:17;15606:6;15562:71;:::i;:::-;15643:72;15711:2;15700:9;15696:18;15687:6;15643:72;:::i;:::-;15725;15793:2;15782:9;15778:18;15769:6;15725:72;:::i;:::-;15844:9;15838:4;15834:20;15829:2;15818:9;15814:18;15807:48;15872:76;15943:4;15934:6;15872:76;:::i;:::-;15864:84;;15315:640;;;;;;;:::o;15961:210::-;16048:4;16086:2;16075:9;16071:18;16063:26;;16099:65;16161:1;16150:9;16146:17;16137:6;16099:65;:::i;:::-;15961:210;;;;:::o;16177:313::-;16290:4;16328:2;16317:9;16313:18;16305:26;;16377:9;16371:4;16367:20;16363:1;16352:9;16348:17;16341:47;16405:78;16478:4;16469:6;16405:78;:::i;:::-;16397:86;;16177:313;;;;:::o;16496:419::-;16662:4;16700:2;16689:9;16685:18;16677:26;;16749:9;16743:4;16739:20;16735:1;16724:9;16720:17;16713:47;16777:131;16903:4;16777:131;:::i;:::-;16769:139;;16496:419;;;:::o;16921:::-;17087:4;17125:2;17114:9;17110:18;17102:26;;17174:9;17168:4;17164:20;17160:1;17149:9;17145:17;17138:47;17202:131;17328:4;17202:131;:::i;:::-;17194:139;;16921:419;;;:::o;17346:::-;17512:4;17550:2;17539:9;17535:18;17527:26;;17599:9;17593:4;17589:20;17585:1;17574:9;17570:17;17563:47;17627:131;17753:4;17627:131;:::i;:::-;17619:139;;17346:419;;;:::o;17771:::-;17937:4;17975:2;17964:9;17960:18;17952:26;;18024:9;18018:4;18014:20;18010:1;17999:9;17995:17;17988:47;18052:131;18178:4;18052:131;:::i;:::-;18044:139;;17771:419;;;:::o;18196:::-;18362:4;18400:2;18389:9;18385:18;18377:26;;18449:9;18443:4;18439:20;18435:1;18424:9;18420:17;18413:47;18477:131;18603:4;18477:131;:::i;:::-;18469:139;;18196:419;;;:::o;18621:::-;18787:4;18825:2;18814:9;18810:18;18802:26;;18874:9;18868:4;18864:20;18860:1;18849:9;18845:17;18838:47;18902:131;19028:4;18902:131;:::i;:::-;18894:139;;18621:419;;;:::o;19046:::-;19212:4;19250:2;19239:9;19235:18;19227:26;;19299:9;19293:4;19289:20;19285:1;19274:9;19270:17;19263:47;19327:131;19453:4;19327:131;:::i;:::-;19319:139;;19046:419;;;:::o;19471:::-;19637:4;19675:2;19664:9;19660:18;19652:26;;19724:9;19718:4;19714:20;19710:1;19699:9;19695:17;19688:47;19752:131;19878:4;19752:131;:::i;:::-;19744:139;;19471:419;;;:::o;19896:::-;20062:4;20100:2;20089:9;20085:18;20077:26;;20149:9;20143:4;20139:20;20135:1;20124:9;20120:17;20113:47;20177:131;20303:4;20177:131;:::i;:::-;20169:139;;19896:419;;;:::o;20321:222::-;20414:4;20452:2;20441:9;20437:18;20429:26;;20465:71;20533:1;20522:9;20518:17;20509:6;20465:71;:::i;:::-;20321:222;;;;:::o;20549:129::-;20583:6;20610:20;;:::i;:::-;20600:30;;20639:33;20667:4;20659:6;20639:33;:::i;:::-;20549:129;;;:::o;20684:75::-;20717:6;20750:2;20744:9;20734:19;;20684:75;:::o;20765:307::-;20826:4;20916:18;20908:6;20905:30;20902:56;;;20938:18;;:::i;:::-;20902:56;20976:29;20998:6;20976:29;:::i;:::-;20968:37;;21060:4;21054;21050:15;21042:23;;20765:307;;;:::o;21078:308::-;21140:4;21230:18;21222:6;21219:30;21216:56;;;21252:18;;:::i;:::-;21216:56;21290:29;21312:6;21290:29;:::i;:::-;21282:37;;21374:4;21368;21364:15;21356:23;;21078:308;;;:::o;21392:141::-;21441:4;21464:3;21456:11;;21487:3;21484:1;21477:14;21521:4;21518:1;21508:18;21500:26;;21392:141;;;:::o;21539:98::-;21590:6;21624:5;21618:12;21608:22;;21539:98;;;:::o;21643:99::-;21695:6;21729:5;21723:12;21713:22;;21643:99;;;:::o;21748:168::-;21831:11;21865:6;21860:3;21853:19;21905:4;21900:3;21896:14;21881:29;;21748:168;;;;:::o;21922:147::-;22023:11;22060:3;22045:18;;21922:147;;;;:::o;22075:169::-;22159:11;22193:6;22188:3;22181:19;22233:4;22228:3;22224:14;22209:29;;22075:169;;;;:::o;22250:148::-;22352:11;22389:3;22374:18;;22250:148;;;;:::o;22404:305::-;22444:3;22463:20;22481:1;22463:20;:::i;:::-;22458:25;;22497:20;22515:1;22497:20;:::i;:::-;22492:25;;22651:1;22583:66;22579:74;22576:1;22573:81;22570:107;;;22657:18;;:::i;:::-;22570:107;22701:1;22698;22694:9;22687:16;;22404:305;;;;:::o;22715:185::-;22755:1;22772:20;22790:1;22772:20;:::i;:::-;22767:25;;22806:20;22824:1;22806:20;:::i;:::-;22801:25;;22845:1;22835:35;;22850:18;;:::i;:::-;22835:35;22892:1;22889;22885:9;22880:14;;22715:185;;;;:::o;22906:191::-;22946:4;22966:20;22984:1;22966:20;:::i;:::-;22961:25;;23000:20;23018:1;23000:20;:::i;:::-;22995:25;;23039:1;23036;23033:8;23030:34;;;23044:18;;:::i;:::-;23030:34;23089:1;23086;23082:9;23074:17;;22906:191;;;;:::o;23103:96::-;23140:7;23169:24;23187:5;23169:24;:::i;:::-;23158:35;;23103:96;;;:::o;23205:90::-;23239:7;23282:5;23275:13;23268:21;23257:32;;23205:90;;;:::o;23301:149::-;23337:7;23377:66;23370:5;23366:78;23355:89;;23301:149;;;:::o;23456:126::-;23493:7;23533:42;23526:5;23522:54;23511:65;;23456:126;;;:::o;23588:77::-;23625:7;23654:5;23643:16;;23588:77;;;:::o;23671:154::-;23755:6;23750:3;23745;23732:30;23817:1;23808:6;23803:3;23799:16;23792:27;23671:154;;;:::o;23831:307::-;23899:1;23909:113;23923:6;23920:1;23917:13;23909:113;;;24008:1;24003:3;23999:11;23993:18;23989:1;23984:3;23980:11;23973:39;23945:2;23942:1;23938:10;23933:15;;23909:113;;;24040:6;24037:1;24034:13;24031:101;;;24120:1;24111:6;24106:3;24102:16;24095:27;24031:101;23880:258;23831:307;;;:::o;24144:320::-;24188:6;24225:1;24219:4;24215:12;24205:22;;24272:1;24266:4;24262:12;24293:18;24283:81;;24349:4;24341:6;24337:17;24327:27;;24283:81;24411:2;24403:6;24400:14;24380:18;24377:38;24374:84;;;24430:18;;:::i;:::-;24374:84;24195:269;24144:320;;;:::o;24470:281::-;24553:27;24575:4;24553:27;:::i;:::-;24545:6;24541:40;24683:6;24671:10;24668:22;24647:18;24635:10;24632:34;24629:62;24626:88;;;24694:18;;:::i;:::-;24626:88;24734:10;24730:2;24723:22;24513:238;24470:281;;:::o;24757:233::-;24796:3;24819:24;24837:5;24819:24;:::i;:::-;24810:33;;24865:66;24858:5;24855:77;24852:103;;;24935:18;;:::i;:::-;24852:103;24982:1;24975:5;24971:13;24964:20;;24757:233;;;:::o;24996:176::-;25028:1;25045:20;25063:1;25045:20;:::i;:::-;25040:25;;25079:20;25097:1;25079:20;:::i;:::-;25074:25;;25118:1;25108:35;;25123:18;;:::i;:::-;25108:35;25164:1;25161;25157:9;25152:14;;24996:176;;;;:::o;25178:180::-;25226:77;25223:1;25216:88;25323:4;25320:1;25313:15;25347:4;25344:1;25337:15;25364:180;25412:77;25409:1;25402:88;25509:4;25506:1;25499:15;25533:4;25530:1;25523:15;25550:180;25598:77;25595:1;25588:88;25695:4;25692:1;25685:15;25719:4;25716:1;25709:15;25736:180;25784:77;25781:1;25774:88;25881:4;25878:1;25871:15;25905:4;25902:1;25895:15;25922:180;25970:77;25967:1;25960:88;26067:4;26064:1;26057:15;26091:4;26088:1;26081:15;26108:117;26217:1;26214;26207:12;26231:117;26340:1;26337;26330:12;26354:117;26463:1;26460;26453:12;26477:117;26586:1;26583;26576:12;26600:102;26641:6;26692:2;26688:7;26683:2;26676:5;26672:14;26668:28;26658:38;;26600:102;;;:::o;26708:225::-;26848:34;26844:1;26836:6;26832:14;26825:58;26917:8;26912:2;26904:6;26900:15;26893:33;26708:225;:::o;26939:182::-;27079:34;27075:1;27067:6;27063:14;27056:58;26939:182;:::o;27127:233::-;27267:34;27263:1;27255:6;27251:14;27244:58;27336:16;27331:2;27323:6;27319:15;27312:41;27127:233;:::o;27366:234::-;27506:34;27502:1;27494:6;27490:14;27483:58;27575:17;27570:2;27562:6;27558:15;27551:42;27366:234;:::o;27606:173::-;27746:25;27742:1;27734:6;27730:14;27723:49;27606:173;:::o;27785:114::-;;:::o;27905:166::-;28045:18;28041:1;28033:6;28029:14;28022:42;27905:166;:::o;28077:290::-;28217:34;28213:1;28205:6;28201:14;28194:58;28286:34;28281:2;28273:6;28269:15;28262:59;28355:4;28350:2;28342:6;28338:15;28331:29;28077:290;:::o;28373:181::-;28513:33;28509:1;28501:6;28497:14;28490:57;28373:181;:::o;28560:245::-;28700:34;28696:1;28688:6;28684:14;28677:58;28769:28;28764:2;28756:6;28752:15;28745:53;28560:245;:::o;28811:122::-;28884:24;28902:5;28884:24;:::i;:::-;28877:5;28874:35;28864:63;;28923:1;28920;28913:12;28864:63;28811:122;:::o;28939:116::-;29009:21;29024:5;29009:21;:::i;:::-;29002:5;28999:32;28989:60;;29045:1;29042;29035:12;28989:60;28939:116;:::o;29061:120::-;29133:23;29150:5;29133:23;:::i;:::-;29126:5;29123:34;29113:62;;29171:1;29168;29161:12;29113:62;29061:120;:::o;29187:122::-;29260:24;29278:5;29260:24;:::i;:::-;29253:5;29250:35;29240:63;;29299:1;29296;29289:12;29240:63;29187:122;:::o

Swarm Source

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