ETH Price: $3,710.18 (+3.10%)

Token

ERC-20: Legendary Star on 0x (LSOX)
 

Overview

Max Total Supply

414 LSOX

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 LSOX
0xba053268b8753cab07fadecdc844f04979e7587a
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:
LSOX

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-09-26
*/

// File: LSOX.sol

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


pragma solidity ^0.8.0;

 
abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    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.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: bun.sol





pragma solidity >=0.7.0 <0.9.0;




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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.006 ether;
  uint256 public maxSupply = 555;
  uint256 public MaxperWallet = 5;
  bool public paused = false;
  bool public revealed = false;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("Legendary Star on 0x", "LSOX") {  
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

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

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
  }
  

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

 

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }


 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  /// @dev set base extension(default is .json)
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"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":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000051929190620003c3565b50661550f7dca70000600d5561022b600e556005600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000ab57600080fd5b5060405162004052380380620040528339818101604052810190620000d19190620004f1565b6040518060400160405280601481526020017f4c6567656e646172792053746172206f6e2030780000000000000000000000008152506040518060400160405280600481526020017f4c534f5800000000000000000000000000000000000000000000000000000000815250816002908051906020019062000155929190620003c3565b5080600390805190602001906200016e929190620003c3565b506200017f620001d960201b60201c565b6000819055505050620001a76200019b620001e260201b60201c565b620001ea60201b60201c565b6001600981905550620001c082620002b060201b60201c565b620001d181620002dc60201b60201c565b50506200077d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c06200030860201b60201c565b80600a9080519060200190620002d8929190620003c3565b5050565b620002ec6200030860201b60201c565b80600c908051906020019062000304929190620003c3565b5050565b62000318620001e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200033e6200039960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038e906200059d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d19062000665565b90600052602060002090601f016020900481019282620003f5576000855562000441565b82601f106200041057805160ff191683800117855562000441565b8280016001018555821562000441579182015b828111156200044057825182559160200191906001019062000423565b5b50905062000450919062000454565b5090565b5b808211156200046f57600081600090555060010162000455565b5090565b60006200048a6200048484620005e8565b620005bf565b905082815260208101848484011115620004a957620004a862000734565b5b620004b68482856200062f565b509392505050565b600082601f830112620004d657620004d56200072f565b5b8151620004e884826020860162000473565b91505092915050565b600080604083850312156200050b576200050a6200073e565b5b600083015167ffffffffffffffff8111156200052c576200052b62000739565b5b6200053a85828601620004be565b925050602083015167ffffffffffffffff8111156200055e576200055d62000739565b5b6200056c85828601620004be565b9150509250929050565b6000620005856020836200061e565b9150620005928262000754565b602082019050919050565b60006020820190508181036000830152620005b88162000576565b9050919050565b6000620005cb620005de565b9050620005d982826200069b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000606576200060562000700565b5b620006118262000743565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200064f57808201518184015260208101905062000632565b838111156200065f576000848401525b50505050565b600060028204905060018216806200067e57607f821691505b60208210811415620006955762000694620006d1565b5b50919050565b620006a68262000743565b810181811067ffffffffffffffff82111715620006c857620006c762000700565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6138c5806200078d6000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063bd7a1998116100ab578063dc33e6811161006f578063dc33e68114610791578063e268e4d3146107ce578063e985e9c5146107f7578063f2c4ce1e14610834578063f2fde38b1461085d5761021a565b8063bd7a1998146106aa578063c6682862146106d5578063c87b56dd14610700578063d5abeb011461073d578063da3ef23f146107685761021a565b806395d89b41116100f257806395d89b41146105e8578063a0712d6814610613578063a22cb4651461062f578063b88d4fde14610658578063bc63f02e146106815761021a565b8063715018a6146105405780638462151c146105575780638da5cb5b14610594578063940cd05b146105bf5761021a565b80633ccfd60b116101a657806355f804b31161017557806355f804b3146104475780635c975abb146104705780636352211e1461049b5780636c0360eb146104d857806370a08231146105035761021a565b80633ccfd60b146103c057806342842e0e146103ca57806344a0d68a146103f3578063518302271461041c5761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612ae9565b610886565b6040516102539190612fe5565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612abc565b610918565b005b34801561029157600080fd5b5061029a61093d565b6040516102a79190613000565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612b8c565b6109cf565b6040516102e49190612f5c565b60405180910390f35b3480156102f957600080fd5b50610302610a4e565b60405161030f9190613000565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612a7c565b610adc565b005b34801561034d57600080fd5b50610356610c20565b6040516103639190613162565b60405180910390f35b34801561037857600080fd5b50610381610c26565b60405161038e9190613162565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612966565b610c3d565b005b6103c8610f62565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612966565b611016565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612b8c565b611036565b005b34801561042857600080fd5b50610431611048565b60405161043e9190612fe5565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612b43565b61105b565b005b34801561047c57600080fd5b5061048561107d565b6040516104929190612fe5565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612b8c565b611090565b6040516104cf9190612f5c565b60405180910390f35b3480156104e457600080fd5b506104ed6110a2565b6040516104fa9190613000565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906128f9565b611130565b6040516105379190613162565b60405180910390f35b34801561054c57600080fd5b506105556111e9565b005b34801561056357600080fd5b5061057e600480360381019061057991906128f9565b6111fd565b60405161058b9190612fc3565b60405180910390f35b3480156105a057600080fd5b506105a9611347565b6040516105b69190612f5c565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612abc565b611371565b005b3480156105f457600080fd5b506105fd611396565b60405161060a9190613000565b60405180910390f35b61062d60048036038101906106289190612b8c565b611428565b005b34801561063b57600080fd5b5061065660048036038101906106519190612a3c565b61162d565b005b34801561066457600080fd5b5061067f600480360381019061067a91906129b9565b6117a5565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612bb9565b611818565b005b3480156106b657600080fd5b506106bf6118db565b6040516106cc9190613162565b60405180910390f35b3480156106e157600080fd5b506106ea6118e1565b6040516106f79190613000565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612b8c565b61196f565b6040516107349190613000565b60405180910390f35b34801561074957600080fd5b50610752611ac8565b60405161075f9190613162565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190612b43565b611ace565b005b34801561079d57600080fd5b506107b860048036038101906107b391906128f9565b611af0565b6040516107c59190613162565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612b8c565b611b02565b005b34801561080357600080fd5b5061081e60048036038101906108199190612926565b611b14565b60405161082b9190612fe5565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190612b43565b611ba8565b005b34801561086957600080fd5b50610884600480360381019061087f91906128f9565b611bca565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610920611c4e565b80601060006101000a81548160ff02191690831515021790555050565b60606002805461094c90613460565b80601f016020809104026020016040519081016040528092919081815260200182805461097890613460565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b5050505050905090565b60006109da82611ccc565b610a10576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610a5b90613460565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790613460565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b505050505081565b6000610ae782611090565b90508073ffffffffffffffffffffffffffffffffffffffff16610b08611d2b565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b57610b3481610b2f611d2b565b611b14565b610b6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b6000610c30611d33565b6001546000540303905090565b6000610c4882611d3c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610caf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cbb84611e0a565b91509150610cd18187610ccc611d2b565b611e31565b610d1d57610ce686610ce1611d2b565b611b14565b610d1c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d84576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d918686866001611e75565b8015610d9c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e6a85610e46888887611e7b565b7c020000000000000000000000000000000000000000000000000000000017611ea3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ef2576000600185019050600060046000838152602001908152602001600020541415610ef0576000548114610eef578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f5a8686866001611ece565b505050505050565b610f6a611c4e565b60026009541415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790613122565b60405180910390fd5b60026009819055506000479050610fc5611d2b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100a573d6000803e3d6000fd5b50506001600981905550565b611031838383604051806020016040528060008152506117a5565b505050565b61103e611c4e565b80600d8190555050565b601060019054906101000a900460ff1681565b611063611c4e565b80600a90805190602001906110799291906126be565b5050565b601060009054906101000a900460ff1681565b600061109b82611d3c565b9050919050565b600a80546110af90613460565b80601f01602080910402602001604051908101604052809291908181526020018280546110db90613460565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611198576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f1611c4e565b6111fb6000611ed4565b565b6060600080600061120d85611130565b905060008167ffffffffffffffff81111561122b5761122a6135f9565b5b6040519080825280602002602001820160405280156112595781602001602082028036833780820191505090505b509050611264612744565b600061126e611d33565b90505b8386146113395761128181611f9a565b91508160400151156112925761132e565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146112d257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561132d57808387806001019850815181106113205761131f6135ca565b5b6020026020010181815250505b5b806001019050611271565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611379611c4e565b80601060016101000a81548160ff02191690831515021790555050565b6060600380546113a590613460565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613460565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b5050505050905090565b6002600954141561146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613122565b60405180910390fd5b6002600981905550601060009054906101000a900460ff16156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90613082565b60405180910390fd5b600f5481111561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613142565b60405180910390fd5b600e5481611517610c26565b6115219190613295565b1115611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613062565b60405180910390fd5b600f5481611576611571611d2b565b611fc5565b6115809190613295565b11156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613102565b60405180910390fd5b80600d546115cf919061331c565b341015611611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611608906130e2565b60405180910390fd5b61162261161c611d2b565b8261201c565b600160098190555050565b611635611d2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116a7611d2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611754611d2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117999190612fe5565b60405180910390a35050565b6117b0848484610c3d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611812576117db8484848461203a565b611811576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611820611c4e565b60026009541415611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613122565b60405180910390fd5b6002600981905550600e548261187a610c26565b6118849190613295565b11156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906130a2565b60405180910390fd5b6118cf818361201c565b60016009819055505050565b600f5481565b600b80546118ee90613460565b80601f016020809104026020016040519081016040528092919081815260200182805461191a90613460565b80156119675780601f1061193c57610100808354040283529160200191611967565b820191906000526020600020905b81548152906001019060200180831161194a57829003601f168201915b505050505081565b606061197a82611ccc565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090613022565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a6757600c80546119e290613460565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0e90613460565b8015611a5b5780601f10611a3057610100808354040283529160200191611a5b565b820191906000526020600020905b815481529060010190602001808311611a3e57829003601f168201915b50505050509050611ac3565b6000611a7161219a565b90506000815111611a915760405180602001604052806000815250611abf565b80611a9b8461222c565b600b604051602001611aaf93929190612f2b565b6040516020818303038152906040525b9150505b919050565b600e5481565b611ad6611c4e565b80600b9080519060200190611aec9291906126be565b5050565b6000611afb82611fc5565b9050919050565b611b0a611c4e565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bb0611c4e565b80600c9080519060200190611bc69291906126be565b5050565b611bd2611c4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990613042565b60405180910390fd5b611c4b81611ed4565b50565b611c5661238d565b73ffffffffffffffffffffffffffffffffffffffff16611c74611347565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc1906130c2565b60405180910390fd5b565b600081611cd7611d33565b11158015611ce6575060005482105b8015611d24575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d4b611d33565b11611dd357600054811015611dd25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dd0575b6000811415611dc6576004600083600190039350838152602001908152602001600020549050611d9b565b8092505050611e05565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e92868684612395565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fa2612744565b611fbe600460008481526020019081526020016000205461239e565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612036828260405180602001604052806000815250612454565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612060611d2b565b8786866040518563ffffffff1660e01b81526004016120829493929190612f77565b602060405180830381600087803b15801561209c57600080fd5b505af19250505080156120cd57506040513d601f19601f820116820180604052508101906120ca9190612b16565b60015b612147573d80600081146120fd576040519150601f19603f3d011682016040523d82523d6000602084013e612102565b606091505b5060008151141561213f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121a990613460565b80601f01602080910402602001604051908101604052809291908181526020018280546121d590613460565b80156122225780601f106121f757610100808354040283529160200191612222565b820191906000526020600020905b81548152906001019060200180831161220557829003601f168201915b5050505050905090565b60606000821415612274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612388565b600082905060005b600082146122a657808061228f906134c3565b915050600a8261229f91906132eb565b915061227c565b60008167ffffffffffffffff8111156122c2576122c16135f9565b5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123815760018261230d9190613376565b9150600a8561231c919061350c565b60306123289190613295565b60f81b81838151811061233e5761233d6135ca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237a91906132eb565b94506122f8565b8093505050505b919050565b600033905090565b60009392505050565b6123a6612744565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61245e83836124f1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124ec57600080549050600083820390505b61249e600086838060010194508661203a565b6124d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061248b5781600054146124e957600080fd5b50505b505050565b6000805490506000821415612532576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61253f6000848385611e75565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125b6836125a76000866000611e7b565b6125b0856126ae565b17611ea3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461265757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061261c565b506000821415612693576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126a96000848385611ece565b505050565b60006001821460e11b9050919050565b8280546126ca90613460565b90600052602060002090601f0160209004810192826126ec5760008555612733565b82601f1061270557805160ff1916838001178555612733565b82800160010185558215612733579182015b82811115612732578251825591602001919060010190612717565b5b5090506127409190612793565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156127ac576000816000905550600101612794565b5090565b60006127c36127be846131a2565b61317d565b9050828152602081018484840111156127df576127de61362d565b5b6127ea84828561341e565b509392505050565b6000612805612800846131d3565b61317d565b9050828152602081018484840111156128215761282061362d565b5b61282c84828561341e565b509392505050565b60008135905061284381613833565b92915050565b6000813590506128588161384a565b92915050565b60008135905061286d81613861565b92915050565b60008151905061288281613861565b92915050565b600082601f83011261289d5761289c613628565b5b81356128ad8482602086016127b0565b91505092915050565b600082601f8301126128cb576128ca613628565b5b81356128db8482602086016127f2565b91505092915050565b6000813590506128f381613878565b92915050565b60006020828403121561290f5761290e613637565b5b600061291d84828501612834565b91505092915050565b6000806040838503121561293d5761293c613637565b5b600061294b85828601612834565b925050602061295c85828601612834565b9150509250929050565b60008060006060848603121561297f5761297e613637565b5b600061298d86828701612834565b935050602061299e86828701612834565b92505060406129af868287016128e4565b9150509250925092565b600080600080608085870312156129d3576129d2613637565b5b60006129e187828801612834565b94505060206129f287828801612834565b9350506040612a03878288016128e4565b925050606085013567ffffffffffffffff811115612a2457612a23613632565b5b612a3087828801612888565b91505092959194509250565b60008060408385031215612a5357612a52613637565b5b6000612a6185828601612834565b9250506020612a7285828601612849565b9150509250929050565b60008060408385031215612a9357612a92613637565b5b6000612aa185828601612834565b9250506020612ab2858286016128e4565b9150509250929050565b600060208284031215612ad257612ad1613637565b5b6000612ae084828501612849565b91505092915050565b600060208284031215612aff57612afe613637565b5b6000612b0d8482850161285e565b91505092915050565b600060208284031215612b2c57612b2b613637565b5b6000612b3a84828501612873565b91505092915050565b600060208284031215612b5957612b58613637565b5b600082013567ffffffffffffffff811115612b7757612b76613632565b5b612b83848285016128b6565b91505092915050565b600060208284031215612ba257612ba1613637565b5b6000612bb0848285016128e4565b91505092915050565b60008060408385031215612bd057612bcf613637565b5b6000612bde858286016128e4565b9250506020612bef85828601612834565b9150509250929050565b6000612c058383612f0d565b60208301905092915050565b612c1a816133aa565b82525050565b6000612c2b82613229565b612c358185613257565b9350612c4083613204565b8060005b83811015612c71578151612c588882612bf9565b9750612c638361324a565b925050600181019050612c44565b5085935050505092915050565b612c87816133bc565b82525050565b6000612c9882613234565b612ca28185613268565b9350612cb281856020860161342d565b612cbb8161363c565b840191505092915050565b6000612cd18261323f565b612cdb8185613279565b9350612ceb81856020860161342d565b612cf48161363c565b840191505092915050565b6000612d0a8261323f565b612d14818561328a565b9350612d2481856020860161342d565b80840191505092915050565b60008154612d3d81613460565b612d47818661328a565b94506001821660008114612d625760018114612d7357612da6565b60ff19831686528186019350612da6565b612d7c85613214565b60005b83811015612d9e57815481890152600182019150602081019050612d7f565b838801955050505b50505092915050565b6000612dbc603083613279565b9150612dc78261364d565b604082019050919050565b6000612ddf602683613279565b9150612dea8261369c565b604082019050919050565b6000612e02600a83613279565b9150612e0d826136eb565b602082019050919050565b6000612e25601783613279565b9150612e3082613714565b602082019050919050565b6000612e48601683613279565b9150612e538261373d565b602082019050919050565b6000612e6b602083613279565b9150612e7682613766565b602082019050919050565b6000612e8e601283613279565b9150612e998261378f565b602082019050919050565b6000612eb1601b83613279565b9150612ebc826137b8565b602082019050919050565b6000612ed4601f83613279565b9150612edf826137e1565b602082019050919050565b6000612ef7601f83613279565b9150612f028261380a565b602082019050919050565b612f1681613414565b82525050565b612f2581613414565b82525050565b6000612f378286612cff565b9150612f438285612cff565b9150612f4f8284612d30565b9150819050949350505050565b6000602082019050612f716000830184612c11565b92915050565b6000608082019050612f8c6000830187612c11565b612f996020830186612c11565b612fa66040830185612f1c565b8181036060830152612fb88184612c8d565b905095945050505050565b60006020820190508181036000830152612fdd8184612c20565b905092915050565b6000602082019050612ffa6000830184612c7e565b92915050565b6000602082019050818103600083015261301a8184612cc6565b905092915050565b6000602082019050818103600083015261303b81612daf565b9050919050565b6000602082019050818103600083015261305b81612dd2565b9050919050565b6000602082019050818103600083015261307b81612df5565b9050919050565b6000602082019050818103600083015261309b81612e18565b9050919050565b600060208201905081810360008301526130bb81612e3b565b9050919050565b600060208201905081810360008301526130db81612e5e565b9050919050565b600060208201905081810360008301526130fb81612e81565b9050919050565b6000602082019050818103600083015261311b81612ea4565b9050919050565b6000602082019050818103600083015261313b81612ec7565b9050919050565b6000602082019050818103600083015261315b81612eea565b9050919050565b60006020820190506131776000830184612f1c565b92915050565b6000613187613198565b90506131938282613492565b919050565b6000604051905090565b600067ffffffffffffffff8211156131bd576131bc6135f9565b5b6131c68261363c565b9050602081019050919050565b600067ffffffffffffffff8211156131ee576131ed6135f9565b5b6131f78261363c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132a082613414565b91506132ab83613414565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e0576132df61353d565b5b828201905092915050565b60006132f682613414565b915061330183613414565b9250826133115761331061356c565b5b828204905092915050565b600061332782613414565b915061333283613414565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336b5761336a61353d565b5b828202905092915050565b600061338182613414565b915061338c83613414565b92508282101561339f5761339e61353d565b5b828203905092915050565b60006133b5826133f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561344b578082015181840152602081019050613430565b8381111561345a576000848401525b50505050565b6000600282049050600182168061347857607f821691505b6020821081141561348c5761348b61359b565b5b50919050565b61349b8261363c565b810181811067ffffffffffffffff821117156134ba576134b96135f9565b5b80604052505050565b60006134ce82613414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135015761350061353d565b5b600182019050919050565b600061351782613414565b915061352283613414565b9250826135325761353161356c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b61383c816133aa565b811461384757600080fd5b50565b613853816133bc565b811461385e57600080fd5b50565b61386a816133c8565b811461387557600080fd5b50565b61388181613414565b811461388c57600080fd5b5056fea2646970667358221220a2d3c8cfc67800c13b5253138db91947dacea89f5d9ff13be6a38734768ab6a264736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063bd7a1998116100ab578063dc33e6811161006f578063dc33e68114610791578063e268e4d3146107ce578063e985e9c5146107f7578063f2c4ce1e14610834578063f2fde38b1461085d5761021a565b8063bd7a1998146106aa578063c6682862146106d5578063c87b56dd14610700578063d5abeb011461073d578063da3ef23f146107685761021a565b806395d89b41116100f257806395d89b41146105e8578063a0712d6814610613578063a22cb4651461062f578063b88d4fde14610658578063bc63f02e146106815761021a565b8063715018a6146105405780638462151c146105575780638da5cb5b14610594578063940cd05b146105bf5761021a565b80633ccfd60b116101a657806355f804b31161017557806355f804b3146104475780635c975abb146104705780636352211e1461049b5780636c0360eb146104d857806370a08231146105035761021a565b80633ccfd60b146103c057806342842e0e146103ca57806344a0d68a146103f3578063518302271461041c5761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612ae9565b610886565b6040516102539190612fe5565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612abc565b610918565b005b34801561029157600080fd5b5061029a61093d565b6040516102a79190613000565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612b8c565b6109cf565b6040516102e49190612f5c565b60405180910390f35b3480156102f957600080fd5b50610302610a4e565b60405161030f9190613000565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612a7c565b610adc565b005b34801561034d57600080fd5b50610356610c20565b6040516103639190613162565b60405180910390f35b34801561037857600080fd5b50610381610c26565b60405161038e9190613162565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612966565b610c3d565b005b6103c8610f62565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612966565b611016565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612b8c565b611036565b005b34801561042857600080fd5b50610431611048565b60405161043e9190612fe5565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612b43565b61105b565b005b34801561047c57600080fd5b5061048561107d565b6040516104929190612fe5565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612b8c565b611090565b6040516104cf9190612f5c565b60405180910390f35b3480156104e457600080fd5b506104ed6110a2565b6040516104fa9190613000565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906128f9565b611130565b6040516105379190613162565b60405180910390f35b34801561054c57600080fd5b506105556111e9565b005b34801561056357600080fd5b5061057e600480360381019061057991906128f9565b6111fd565b60405161058b9190612fc3565b60405180910390f35b3480156105a057600080fd5b506105a9611347565b6040516105b69190612f5c565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612abc565b611371565b005b3480156105f457600080fd5b506105fd611396565b60405161060a9190613000565b60405180910390f35b61062d60048036038101906106289190612b8c565b611428565b005b34801561063b57600080fd5b5061065660048036038101906106519190612a3c565b61162d565b005b34801561066457600080fd5b5061067f600480360381019061067a91906129b9565b6117a5565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612bb9565b611818565b005b3480156106b657600080fd5b506106bf6118db565b6040516106cc9190613162565b60405180910390f35b3480156106e157600080fd5b506106ea6118e1565b6040516106f79190613000565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612b8c565b61196f565b6040516107349190613000565b60405180910390f35b34801561074957600080fd5b50610752611ac8565b60405161075f9190613162565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190612b43565b611ace565b005b34801561079d57600080fd5b506107b860048036038101906107b391906128f9565b611af0565b6040516107c59190613162565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612b8c565b611b02565b005b34801561080357600080fd5b5061081e60048036038101906108199190612926565b611b14565b60405161082b9190612fe5565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190612b43565b611ba8565b005b34801561086957600080fd5b50610884600480360381019061087f91906128f9565b611bca565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610920611c4e565b80601060006101000a81548160ff02191690831515021790555050565b60606002805461094c90613460565b80601f016020809104026020016040519081016040528092919081815260200182805461097890613460565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b5050505050905090565b60006109da82611ccc565b610a10576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610a5b90613460565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790613460565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b505050505081565b6000610ae782611090565b90508073ffffffffffffffffffffffffffffffffffffffff16610b08611d2b565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b57610b3481610b2f611d2b565b611b14565b610b6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b6000610c30611d33565b6001546000540303905090565b6000610c4882611d3c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610caf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cbb84611e0a565b91509150610cd18187610ccc611d2b565b611e31565b610d1d57610ce686610ce1611d2b565b611b14565b610d1c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d84576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d918686866001611e75565b8015610d9c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e6a85610e46888887611e7b565b7c020000000000000000000000000000000000000000000000000000000017611ea3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ef2576000600185019050600060046000838152602001908152602001600020541415610ef0576000548114610eef578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f5a8686866001611ece565b505050505050565b610f6a611c4e565b60026009541415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790613122565b60405180910390fd5b60026009819055506000479050610fc5611d2b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100a573d6000803e3d6000fd5b50506001600981905550565b611031838383604051806020016040528060008152506117a5565b505050565b61103e611c4e565b80600d8190555050565b601060019054906101000a900460ff1681565b611063611c4e565b80600a90805190602001906110799291906126be565b5050565b601060009054906101000a900460ff1681565b600061109b82611d3c565b9050919050565b600a80546110af90613460565b80601f01602080910402602001604051908101604052809291908181526020018280546110db90613460565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611198576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f1611c4e565b6111fb6000611ed4565b565b6060600080600061120d85611130565b905060008167ffffffffffffffff81111561122b5761122a6135f9565b5b6040519080825280602002602001820160405280156112595781602001602082028036833780820191505090505b509050611264612744565b600061126e611d33565b90505b8386146113395761128181611f9a565b91508160400151156112925761132e565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146112d257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561132d57808387806001019850815181106113205761131f6135ca565b5b6020026020010181815250505b5b806001019050611271565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611379611c4e565b80601060016101000a81548160ff02191690831515021790555050565b6060600380546113a590613460565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613460565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b5050505050905090565b6002600954141561146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613122565b60405180910390fd5b6002600981905550601060009054906101000a900460ff16156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90613082565b60405180910390fd5b600f5481111561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613142565b60405180910390fd5b600e5481611517610c26565b6115219190613295565b1115611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613062565b60405180910390fd5b600f5481611576611571611d2b565b611fc5565b6115809190613295565b11156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613102565b60405180910390fd5b80600d546115cf919061331c565b341015611611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611608906130e2565b60405180910390fd5b61162261161c611d2b565b8261201c565b600160098190555050565b611635611d2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116a7611d2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611754611d2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117999190612fe5565b60405180910390a35050565b6117b0848484610c3d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611812576117db8484848461203a565b611811576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611820611c4e565b60026009541415611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613122565b60405180910390fd5b6002600981905550600e548261187a610c26565b6118849190613295565b11156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906130a2565b60405180910390fd5b6118cf818361201c565b60016009819055505050565b600f5481565b600b80546118ee90613460565b80601f016020809104026020016040519081016040528092919081815260200182805461191a90613460565b80156119675780601f1061193c57610100808354040283529160200191611967565b820191906000526020600020905b81548152906001019060200180831161194a57829003601f168201915b505050505081565b606061197a82611ccc565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090613022565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a6757600c80546119e290613460565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0e90613460565b8015611a5b5780601f10611a3057610100808354040283529160200191611a5b565b820191906000526020600020905b815481529060010190602001808311611a3e57829003601f168201915b50505050509050611ac3565b6000611a7161219a565b90506000815111611a915760405180602001604052806000815250611abf565b80611a9b8461222c565b600b604051602001611aaf93929190612f2b565b6040516020818303038152906040525b9150505b919050565b600e5481565b611ad6611c4e565b80600b9080519060200190611aec9291906126be565b5050565b6000611afb82611fc5565b9050919050565b611b0a611c4e565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bb0611c4e565b80600c9080519060200190611bc69291906126be565b5050565b611bd2611c4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990613042565b60405180910390fd5b611c4b81611ed4565b50565b611c5661238d565b73ffffffffffffffffffffffffffffffffffffffff16611c74611347565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc1906130c2565b60405180910390fd5b565b600081611cd7611d33565b11158015611ce6575060005482105b8015611d24575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d4b611d33565b11611dd357600054811015611dd25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dd0575b6000811415611dc6576004600083600190039350838152602001908152602001600020549050611d9b565b8092505050611e05565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e92868684612395565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fa2612744565b611fbe600460008481526020019081526020016000205461239e565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612036828260405180602001604052806000815250612454565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612060611d2b565b8786866040518563ffffffff1660e01b81526004016120829493929190612f77565b602060405180830381600087803b15801561209c57600080fd5b505af19250505080156120cd57506040513d601f19601f820116820180604052508101906120ca9190612b16565b60015b612147573d80600081146120fd576040519150601f19603f3d011682016040523d82523d6000602084013e612102565b606091505b5060008151141561213f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121a990613460565b80601f01602080910402602001604051908101604052809291908181526020018280546121d590613460565b80156122225780601f106121f757610100808354040283529160200191612222565b820191906000526020600020905b81548152906001019060200180831161220557829003601f168201915b5050505050905090565b60606000821415612274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612388565b600082905060005b600082146122a657808061228f906134c3565b915050600a8261229f91906132eb565b915061227c565b60008167ffffffffffffffff8111156122c2576122c16135f9565b5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123815760018261230d9190613376565b9150600a8561231c919061350c565b60306123289190613295565b60f81b81838151811061233e5761233d6135ca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237a91906132eb565b94506122f8565b8093505050505b919050565b600033905090565b60009392505050565b6123a6612744565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61245e83836124f1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124ec57600080549050600083820390505b61249e600086838060010194508661203a565b6124d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061248b5781600054146124e957600080fd5b50505b505050565b6000805490506000821415612532576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61253f6000848385611e75565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125b6836125a76000866000611e7b565b6125b0856126ae565b17611ea3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461265757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061261c565b506000821415612693576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126a96000848385611ece565b505050565b60006001821460e11b9050919050565b8280546126ca90613460565b90600052602060002090601f0160209004810192826126ec5760008555612733565b82601f1061270557805160ff1916838001178555612733565b82800160010185558215612733579182015b82811115612732578251825591602001919060010190612717565b5b5090506127409190612793565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156127ac576000816000905550600101612794565b5090565b60006127c36127be846131a2565b61317d565b9050828152602081018484840111156127df576127de61362d565b5b6127ea84828561341e565b509392505050565b6000612805612800846131d3565b61317d565b9050828152602081018484840111156128215761282061362d565b5b61282c84828561341e565b509392505050565b60008135905061284381613833565b92915050565b6000813590506128588161384a565b92915050565b60008135905061286d81613861565b92915050565b60008151905061288281613861565b92915050565b600082601f83011261289d5761289c613628565b5b81356128ad8482602086016127b0565b91505092915050565b600082601f8301126128cb576128ca613628565b5b81356128db8482602086016127f2565b91505092915050565b6000813590506128f381613878565b92915050565b60006020828403121561290f5761290e613637565b5b600061291d84828501612834565b91505092915050565b6000806040838503121561293d5761293c613637565b5b600061294b85828601612834565b925050602061295c85828601612834565b9150509250929050565b60008060006060848603121561297f5761297e613637565b5b600061298d86828701612834565b935050602061299e86828701612834565b92505060406129af868287016128e4565b9150509250925092565b600080600080608085870312156129d3576129d2613637565b5b60006129e187828801612834565b94505060206129f287828801612834565b9350506040612a03878288016128e4565b925050606085013567ffffffffffffffff811115612a2457612a23613632565b5b612a3087828801612888565b91505092959194509250565b60008060408385031215612a5357612a52613637565b5b6000612a6185828601612834565b9250506020612a7285828601612849565b9150509250929050565b60008060408385031215612a9357612a92613637565b5b6000612aa185828601612834565b9250506020612ab2858286016128e4565b9150509250929050565b600060208284031215612ad257612ad1613637565b5b6000612ae084828501612849565b91505092915050565b600060208284031215612aff57612afe613637565b5b6000612b0d8482850161285e565b91505092915050565b600060208284031215612b2c57612b2b613637565b5b6000612b3a84828501612873565b91505092915050565b600060208284031215612b5957612b58613637565b5b600082013567ffffffffffffffff811115612b7757612b76613632565b5b612b83848285016128b6565b91505092915050565b600060208284031215612ba257612ba1613637565b5b6000612bb0848285016128e4565b91505092915050565b60008060408385031215612bd057612bcf613637565b5b6000612bde858286016128e4565b9250506020612bef85828601612834565b9150509250929050565b6000612c058383612f0d565b60208301905092915050565b612c1a816133aa565b82525050565b6000612c2b82613229565b612c358185613257565b9350612c4083613204565b8060005b83811015612c71578151612c588882612bf9565b9750612c638361324a565b925050600181019050612c44565b5085935050505092915050565b612c87816133bc565b82525050565b6000612c9882613234565b612ca28185613268565b9350612cb281856020860161342d565b612cbb8161363c565b840191505092915050565b6000612cd18261323f565b612cdb8185613279565b9350612ceb81856020860161342d565b612cf48161363c565b840191505092915050565b6000612d0a8261323f565b612d14818561328a565b9350612d2481856020860161342d565b80840191505092915050565b60008154612d3d81613460565b612d47818661328a565b94506001821660008114612d625760018114612d7357612da6565b60ff19831686528186019350612da6565b612d7c85613214565b60005b83811015612d9e57815481890152600182019150602081019050612d7f565b838801955050505b50505092915050565b6000612dbc603083613279565b9150612dc78261364d565b604082019050919050565b6000612ddf602683613279565b9150612dea8261369c565b604082019050919050565b6000612e02600a83613279565b9150612e0d826136eb565b602082019050919050565b6000612e25601783613279565b9150612e3082613714565b602082019050919050565b6000612e48601683613279565b9150612e538261373d565b602082019050919050565b6000612e6b602083613279565b9150612e7682613766565b602082019050919050565b6000612e8e601283613279565b9150612e998261378f565b602082019050919050565b6000612eb1601b83613279565b9150612ebc826137b8565b602082019050919050565b6000612ed4601f83613279565b9150612edf826137e1565b602082019050919050565b6000612ef7601f83613279565b9150612f028261380a565b602082019050919050565b612f1681613414565b82525050565b612f2581613414565b82525050565b6000612f378286612cff565b9150612f438285612cff565b9150612f4f8284612d30565b9150819050949350505050565b6000602082019050612f716000830184612c11565b92915050565b6000608082019050612f8c6000830187612c11565b612f996020830186612c11565b612fa66040830185612f1c565b8181036060830152612fb88184612c8d565b905095945050505050565b60006020820190508181036000830152612fdd8184612c20565b905092915050565b6000602082019050612ffa6000830184612c7e565b92915050565b6000602082019050818103600083015261301a8184612cc6565b905092915050565b6000602082019050818103600083015261303b81612daf565b9050919050565b6000602082019050818103600083015261305b81612dd2565b9050919050565b6000602082019050818103600083015261307b81612df5565b9050919050565b6000602082019050818103600083015261309b81612e18565b9050919050565b600060208201905081810360008301526130bb81612e3b565b9050919050565b600060208201905081810360008301526130db81612e5e565b9050919050565b600060208201905081810360008301526130fb81612e81565b9050919050565b6000602082019050818103600083015261311b81612ea4565b9050919050565b6000602082019050818103600083015261313b81612ec7565b9050919050565b6000602082019050818103600083015261315b81612eea565b9050919050565b60006020820190506131776000830184612f1c565b92915050565b6000613187613198565b90506131938282613492565b919050565b6000604051905090565b600067ffffffffffffffff8211156131bd576131bc6135f9565b5b6131c68261363c565b9050602081019050919050565b600067ffffffffffffffff8211156131ee576131ed6135f9565b5b6131f78261363c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132a082613414565b91506132ab83613414565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e0576132df61353d565b5b828201905092915050565b60006132f682613414565b915061330183613414565b9250826133115761331061356c565b5b828204905092915050565b600061332782613414565b915061333283613414565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336b5761336a61353d565b5b828202905092915050565b600061338182613414565b915061338c83613414565b92508282101561339f5761339e61353d565b5b828203905092915050565b60006133b5826133f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561344b578082015181840152602081019050613430565b8381111561345a576000848401525b50505050565b6000600282049050600182168061347857607f821691505b6020821081141561348c5761348b61359b565b5b50919050565b61349b8261363c565b810181811067ffffffffffffffff821117156134ba576134b96135f9565b5b80604052505050565b60006134ce82613414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135015761350061353d565b5b600182019050919050565b600061351782613414565b915061352283613414565b9250826135325761353161356c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b61383c816133aa565b811461384757600080fd5b50565b613853816133bc565b811461385e57600080fd5b50565b61386a816133c8565b811461387557600080fd5b50565b61388181613414565b811461388c57600080fd5b5056fea2646970667358221220a2d3c8cfc67800c13b5253138db91947dacea89f5d9ff13be6a38734768ab6a264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _notRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57799:4501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25339:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62008:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26241:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32724:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57955:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32165:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57988:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21992:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36431:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62130:167;;;:::i;:::-;;39344:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61383:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58128:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61499:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58097:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27634:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57887:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23176:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6087:103;;;;;;;;;;;;;:::i;:::-;;60185:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5439:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61088:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26417:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58645:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33282:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40127:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59175:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58061:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57913:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59450:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58026:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61652:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60013:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61217:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33747:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61808:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6345:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25339:639;25424:4;25763:10;25748:25;;:11;:25;;;;:102;;;;25840:10;25825:25;;:11;:25;;;;25748:102;:179;;;;25917:10;25902:25;;:11;:25;;;;25748:179;25728:199;;25339:639;;;:::o;62008:73::-;5325:13;:11;:13::i;:::-;62069:6:::1;62060;;:15;;;;;;;;;;;;;;;;;;62008:73:::0;:::o;26241:100::-;26295:13;26328:5;26321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26241:100;:::o;32724:218::-;32800:7;32825:16;32833:7;32825;:16::i;:::-;32820:64;;32850:34;;;;;;;;;;;;;;32820:64;32904:15;:24;32920:7;32904:24;;;;;;;;;;;:30;;;;;;;;;;;;32897:37;;32724:218;;;:::o;57955:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32165:400::-;32246:13;32262:16;32270:7;32262;:16::i;:::-;32246:32;;32318:5;32295:28;;:19;:17;:19::i;:::-;:28;;;32291:175;;32343:44;32360:5;32367:19;:17;:19::i;:::-;32343:16;:44::i;:::-;32338:128;;32415:35;;;;;;;;;;;;;;32338:128;32291:175;32511:2;32478:15;:24;32494:7;32478:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32549:7;32545:2;32529:28;;32538:5;32529:28;;;;;;;;;;;;32235:330;32165:400;;:::o;57988:33::-;;;;:::o;21992:323::-;22053:7;22281:15;:13;:15::i;:::-;22266:12;;22250:13;;:28;:46;22243:53;;21992:323;:::o;36431:2817::-;36565:27;36595;36614:7;36595:18;:27::i;:::-;36565:57;;36680:4;36639:45;;36655:19;36639:45;;;36635:86;;36693:28;;;;;;;;;;;;;;36635:86;36735:27;36764:23;36791:35;36818:7;36791:26;:35::i;:::-;36734:92;;;;36926:68;36951:15;36968:4;36974:19;:17;:19::i;:::-;36926:24;:68::i;:::-;36921:180;;37014:43;37031:4;37037:19;:17;:19::i;:::-;37014:16;:43::i;:::-;37009:92;;37066:35;;;;;;;;;;;;;;37009:92;36921:180;37132:1;37118:16;;:2;:16;;;37114:52;;;37143:23;;;;;;;;;;;;;;37114:52;37179:43;37201:4;37207:2;37211:7;37220:1;37179:21;:43::i;:::-;37315:15;37312:160;;;37455:1;37434:19;37427:30;37312:160;37852:18;:24;37871:4;37852:24;;;;;;;;;;;;;;;;37850:26;;;;;;;;;;;;37921:18;:22;37940:2;37921:22;;;;;;;;;;;;;;;;37919:24;;;;;;;;;;;38243:146;38280:2;38329:45;38344:4;38350:2;38354:19;38329:14;:45::i;:::-;18391:8;38301:73;38243:18;:146::i;:::-;38214:17;:26;38232:7;38214:26;;;;;;;;;;;:175;;;;38560:1;18391:8;38509:19;:47;:52;38505:627;;;38582:19;38614:1;38604:7;:11;38582:33;;38771:1;38737:17;:30;38755:11;38737:30;;;;;;;;;;;;:35;38733:384;;;38875:13;;38860:11;:28;38856:242;;39055:19;39022:17;:30;39040:11;39022:30;;;;;;;;;;;:52;;;;38856:242;38733:384;38563:569;38505:627;39179:7;39175:2;39160:27;;39169:4;39160:27;;;;;;;;;;;;39198:42;39219:4;39225:2;39229:7;39238:1;39198:20;:42::i;:::-;36554:2694;;;36431:2817;;;:::o;62130:167::-;5325:13;:11;:13::i;:::-;245:1:::1;465:7;;:19;;457:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;245:1;598:7;:18;;;;62197:15:::2;62215:21;62197:39;;62253:19;:17;:19::i;:::-;62245:37;;:46;62283:7;62245:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;62188:109;201:1:::1;777:7;:22;;;;62130:167::o:0;39344:185::-;39482:39;39499:4;39505:2;39509:7;39482:39;;;;;;;;;;;;:16;:39::i;:::-;39344:185;;;:::o;61383:80::-;5325:13;:11;:13::i;:::-;61449:8:::1;61442:4;:15;;;;61383:80:::0;:::o;58128:28::-;;;;;;;;;;;;;:::o;61499:98::-;5325:13;:11;:13::i;:::-;61580:11:::1;61570:7;:21;;;;;;;;;;;;:::i;:::-;;61499:98:::0;:::o;58097:26::-;;;;;;;;;;;;;:::o;27634:152::-;27706:7;27749:27;27768:7;27749:18;:27::i;:::-;27726:52;;27634:152;;;:::o;57887:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23176:233::-;23248:7;23289:1;23272:19;;:5;:19;;;23268:60;;;23300:28;;;;;;;;;;;;;;23268:60;17335:13;23346:18;:25;23365:5;23346:25;;;;;;;;;;;;;;;;:55;23339:62;;23176:233;;;:::o;6087:103::-;5325:13;:11;:13::i;:::-;6152:30:::1;6179:1;6152:18;:30::i;:::-;6087:103::o:0;60185:881::-;60244:16;60298:19;60332:25;60372:22;60397:16;60407:5;60397:9;:16::i;:::-;60372:41;;60428:25;60470:14;60456:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60428:57;;60500:31;;:::i;:::-;60551:9;60563:15;:13;:15::i;:::-;60551:27;;60546:472;60595:14;60580:11;:29;60546:472;;60647:15;60660:1;60647:12;:15::i;:::-;60635:27;;60685:9;:16;;;60681:73;;;60726:8;;60681:73;60802:1;60776:28;;:9;:14;;;:28;;;60772:111;;60849:9;:14;;;60829:34;;60772:111;60926:5;60905:26;;:17;:26;;;60901:102;;;60982:1;60956:8;60965:13;;;;;;60956:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;60901:102;60546:472;60611:3;;;;;60546:472;;;;61039:8;61032:15;;;;;;;60185:881;;;:::o;5439:87::-;5485:7;5512:6;;;;;;;;;;;5505:13;;5439:87;:::o;61088:78::-;5325:13;:11;:13::i;:::-;61154:6:::1;61143:8;;:17;;;;;;;;;;;;;;;;;;61088:78:::0;:::o;26417:104::-;26473:13;26506:7;26499:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26417:104;:::o;58645:471::-;245:1;465:7;;:19;;457:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;245:1;598:7;:18;;;;58719:6:::1;;;;;;;;;;;58718:7;58710:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58778:12;;58768:6;:22;;58760:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58867:9;;58857:6;58841:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;58833:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58953:12;;58943:6;58906:34;58920:19;:17;:19::i;:::-;58906:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;58898:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;59032:6;59025:4;;:13;;;;:::i;:::-;59012:9;:26;;59004:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;59072:38;59082:19;:17;:19::i;:::-;59103:6;59072:9;:38::i;:::-;201:1:::0;777:7;:22;;;;58645:471;:::o;33282:308::-;33393:19;:17;:19::i;:::-;33381:31;;:8;:31;;;33377:61;;;33421:17;;;;;;;;;;;;;;33377:61;33503:8;33451:18;:39;33470:19;:17;:19::i;:::-;33451:39;;;;;;;;;;;;;;;:49;33491:8;33451:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33563:8;33527:55;;33542:19;:17;:19::i;:::-;33527:55;;;33573:8;33527:55;;;;;;:::i;:::-;;;;;;;;33282:308;;:::o;40127:399::-;40294:31;40307:4;40313:2;40317:7;40294:12;:31::i;:::-;40358:1;40340:2;:14;;;:19;40336:183;;40379:56;40410:4;40416:2;40420:7;40429:5;40379:30;:56::i;:::-;40374:145;;40463:40;;;;;;;;;;;;;;40374:145;40336:183;40127:399;;;;:::o;59175:223::-;5325:13;:11;:13::i;:::-;245:1:::1;465:7;;:19;;457:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;245:1;598:7;:18;;;;59310:9:::2;;59295:11;59279:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;59271:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;59357:35;59367:11;59380;59357:9;:35::i;:::-;201:1:::1;777:7;:22;;;;59175:223:::0;;:::o;58061:31::-;;;;:::o;57913:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59450:498::-;59548:13;59589:16;59597:7;59589;:16::i;:::-;59573:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;59699:5;59687:17;;:8;;;;;;;;;;;:17;;;59684:62;;;59724:14;59717:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59684:62;59754:28;59785:10;:8;:10::i;:::-;59754:41;;59840:1;59815:14;59809:28;:32;:133;;;;;;;;;;;;;;;;;59877:14;59893:18;:7;:16;:18::i;:::-;59913:13;59860:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59809:133;59802:140;;;59450:498;;;;:::o;58026:30::-;;;;:::o;61652:122::-;5325:13;:11;:13::i;:::-;61751:17:::1;61735:13;:33;;;;;;;;;;;;:::i;:::-;;61652:122:::0;:::o;60013:107::-;60071:7;60094:20;60108:5;60094:13;:20::i;:::-;60087:27;;60013:107;;;:::o;61217:92::-;5325:13;:11;:13::i;:::-;61297:6:::1;61282:12;:21;;;;61217:92:::0;:::o;33747:164::-;33844:4;33868:18;:25;33887:5;33868:25;;;;;;;;;;;;;;;:35;33894:8;33868:35;;;;;;;;;;;;;;;;;;;;;;;;;33861:42;;33747:164;;;;:::o;61808:120::-;5325:13;:11;:13::i;:::-;61907:15:::1;61890:14;:32;;;;;;;;;;;;:::i;:::-;;61808:120:::0;:::o;6345:201::-;5325:13;:11;:13::i;:::-;6454:1:::1;6434:22;;:8;:22;;;;6426:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6510:28;6529:8;6510:18;:28::i;:::-;6345:201:::0;:::o;5604:132::-;5679:12;:10;:12::i;:::-;5668:23;;:7;:5;:7::i;:::-;:23;;;5660:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5604:132::o;34169:282::-;34234:4;34290:7;34271:15;:13;:15::i;:::-;:26;;:66;;;;;34324:13;;34314:7;:23;34271:66;:153;;;;;34423:1;18111:8;34375:17;:26;34393:7;34375:26;;;;;;;;;;;;:44;:49;34271:153;34251:173;;34169:282;;;:::o;55935:105::-;55995:7;56022:10;56015:17;;55935:105;:::o;58500:101::-;58565:7;58592:1;58585:8;;58500:101;:::o;28789:1275::-;28856:7;28876:12;28891:7;28876:22;;28959:4;28940:15;:13;:15::i;:::-;:23;28936:1061;;28993:13;;28986:4;:20;28982:1015;;;29031:14;29048:17;:23;29066:4;29048:23;;;;;;;;;;;;29031:40;;29165:1;18111:8;29137:6;:24;:29;29133:845;;;29802:113;29819:1;29809:6;:11;29802:113;;;29862:17;:25;29880:6;;;;;;;29862:25;;;;;;;;;;;;29853:34;;29802:113;;;29948:6;29941:13;;;;;;29133:845;29008:989;28982:1015;28936:1061;30025:31;;;;;;;;;;;;;;28789:1275;;;;:::o;35332:479::-;35434:27;35463:23;35504:38;35545:15;:24;35561:7;35545:24;;;;;;;;;;;35504:65;;35716:18;35693:41;;35773:19;35767:26;35748:45;;35678:126;35332:479;;;:::o;34560:659::-;34709:11;34874:16;34867:5;34863:28;34854:37;;35034:16;35023:9;35019:32;35006:45;;35184:15;35173:9;35170:30;35162:5;35151:9;35148:20;35145:56;35135:66;;34560:659;;;;;:::o;41188:159::-;;;;;:::o;55244:311::-;55379:7;55399:16;18515:3;55425:19;:41;;55399:68;;18515:3;55493:31;55504:4;55510:2;55514:9;55493:10;:31::i;:::-;55485:40;;:62;;55478:69;;;55244:311;;;;;:::o;30612:450::-;30692:14;30860:16;30853:5;30849:28;30840:37;;31037:5;31023:11;30998:23;30994:41;30991:52;30984:5;30981:63;30971:73;;30612:450;;;;:::o;42012:158::-;;;;;:::o;6706:191::-;6780:16;6799:6;;;;;;;;;;;6780:25;;6825:8;6816:6;;:17;;;;;;;;;;;;;;;;;;6880:8;6849:40;;6870:8;6849:40;;;;;;;;;;;;6769:128;6706:191;:::o;28237:161::-;28305:21;;:::i;:::-;28346:44;28365:17;:24;28383:5;28365:24;;;;;;;;;;;;28346:18;:44::i;:::-;28339:51;;28237:161;;;:::o;23491:178::-;23552:7;17335:13;17473:2;23580:18;:25;23599:5;23580:25;;;;;;;;;;;;;;;;:50;;23579:82;23572:89;;23491:178;;;:::o;49767:112::-;49844:27;49854:2;49858:8;49844:27;;;;;;;;;;;;:9;:27::i;:::-;49767:112;;:::o;42610:716::-;42773:4;42819:2;42794:45;;;42840:19;:17;:19::i;:::-;42861:4;42867:7;42876:5;42794:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42790:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43094:1;43077:6;:13;:18;43073:235;;;43123:40;;;;;;;;;;;;;;43073:235;43266:6;43260:13;43251:6;43247:2;43243:15;43236:38;42790:529;42963:54;;;42953:64;;;:6;:64;;;;42946:71;;;42610:716;;;;;;:::o;58390:102::-;58450:13;58479:7;58472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58390:102;:::o;1244:723::-;1300:13;1530:1;1521:5;:10;1517:53;;;1548:10;;;;;;;;;;;;;;;;;;;;;1517:53;1580:12;1595:5;1580:20;;1611:14;1636:78;1651:1;1643:4;:9;1636:78;;1669:8;;;;;:::i;:::-;;;;1700:2;1692:10;;;;;:::i;:::-;;;1636:78;;;1724:19;1756:6;1746:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1724:39;;1774:154;1790:1;1781:5;:10;1774:154;;1818:1;1808:11;;;;;:::i;:::-;;;1885:2;1877:5;:10;;;;:::i;:::-;1864:2;:24;;;;:::i;:::-;1851:39;;1834:6;1841;1834:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1914:2;1905:11;;;;;:::i;:::-;;;1774:154;;;1952:6;1938:21;;;;;1244:723;;;;:::o;3990:98::-;4043:7;4070:10;4063:17;;3990:98;:::o;54945:147::-;55082:6;54945:147;;;;;:::o;30163:366::-;30229:31;;:::i;:::-;30306:6;30273:9;:14;;:41;;;;;;;;;;;17994:3;30359:6;:33;;30325:9;:24;;:68;;;;;;;;;;;30451:1;18111:8;30423:6;:24;:29;;30404:9;:16;;:48;;;;;;;;;;;18515:3;30492:6;:28;;30463:9;:19;;:58;;;;;;;;;;;30163:366;;;:::o;48994:689::-;49125:19;49131:2;49135:8;49125:5;:19::i;:::-;49204:1;49186:2;:14;;;:19;49182:483;;49226:11;49240:13;;49226:27;;49272:13;49294:8;49288:3;:14;49272:30;;49321:233;49352:62;49391:1;49395:2;49399:7;;;;;;49408:5;49352:30;:62::i;:::-;49347:167;;49450:40;;;;;;;;;;;;;;49347:167;49549:3;49541:5;:11;49321:233;;49636:3;49619:13;;:20;49615:34;;49641:8;;;49615:34;49207:458;;49182:483;48994:689;;;:::o;43788:2454::-;43861:20;43884:13;;43861:36;;43924:1;43912:8;:13;43908:44;;;43934:18;;;;;;;;;;;;;;43908:44;43965:61;43995:1;43999:2;44003:12;44017:8;43965:21;:61::i;:::-;44509:1;17473:2;44479:1;:26;;44478:32;44466:8;:45;44440:18;:22;44459:2;44440:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44788:139;44825:2;44879:33;44902:1;44906:2;44910:1;44879:14;:33::i;:::-;44846:30;44867:8;44846:20;:30::i;:::-;:66;44788:18;:139::i;:::-;44754:17;:31;44772:12;44754:31;;;;;;;;;;;:173;;;;44944:16;44975:11;45004:8;44989:12;:23;44975:37;;45259:16;45255:2;45251:25;45239:37;;45631:12;45591:8;45550:1;45488:25;45429:1;45368;45341:335;45756:1;45742:12;45738:20;45696:346;45797:3;45788:7;45785:16;45696:346;;46015:7;46005:8;46002:1;45975:25;45972:1;45969;45964:59;45850:1;45841:7;45837:15;45826:26;;45696:346;;;45700:77;46087:1;46075:8;:13;46071:45;;;46097:19;;;;;;;;;;;;;;46071:45;46149:3;46133:13;:19;;;;44214:1950;;46174:60;46203:1;46207:2;46211:12;46225:8;46174:20;:60::i;:::-;43850:2392;43788:2454;;:::o;31164:324::-;31234:14;31467:1;31457:8;31454:15;31428:24;31424:46;31414:56;;31164:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:108::-;14950:24;14968:5;14950:24;:::i;:::-;14945:3;14938:37;14873:108;;:::o;14987:118::-;15074:24;15092:5;15074:24;:::i;:::-;15069:3;15062:37;14987:118;;:::o;15111:589::-;15336:3;15358:95;15449:3;15440:6;15358:95;:::i;:::-;15351:102;;15470:95;15561:3;15552:6;15470:95;:::i;:::-;15463:102;;15582:92;15670:3;15661:6;15582:92;:::i;:::-;15575:99;;15691:3;15684:10;;15111:589;;;;;;:::o;15706:222::-;15799:4;15837:2;15826:9;15822:18;15814:26;;15850:71;15918:1;15907:9;15903:17;15894:6;15850:71;:::i;:::-;15706:222;;;;:::o;15934:640::-;16129:4;16167:3;16156:9;16152:19;16144:27;;16181:71;16249:1;16238:9;16234:17;16225:6;16181:71;:::i;:::-;16262:72;16330:2;16319:9;16315:18;16306:6;16262:72;:::i;:::-;16344;16412:2;16401:9;16397:18;16388:6;16344:72;:::i;:::-;16463:9;16457:4;16453:20;16448:2;16437:9;16433:18;16426:48;16491:76;16562:4;16553:6;16491:76;:::i;:::-;16483:84;;15934:640;;;;;;;:::o;16580:373::-;16723:4;16761:2;16750:9;16746:18;16738:26;;16810:9;16804:4;16800:20;16796:1;16785:9;16781:17;16774:47;16838:108;16941:4;16932:6;16838:108;:::i;:::-;16830:116;;16580:373;;;;:::o;16959:210::-;17046:4;17084:2;17073:9;17069:18;17061:26;;17097:65;17159:1;17148:9;17144:17;17135:6;17097:65;:::i;:::-;16959:210;;;;:::o;17175:313::-;17288:4;17326:2;17315:9;17311:18;17303:26;;17375:9;17369:4;17365:20;17361:1;17350:9;17346:17;17339:47;17403:78;17476:4;17467:6;17403:78;:::i;:::-;17395:86;;17175:313;;;;:::o;17494:419::-;17660:4;17698:2;17687:9;17683:18;17675:26;;17747:9;17741:4;17737:20;17733:1;17722:9;17718:17;17711:47;17775:131;17901:4;17775:131;:::i;:::-;17767:139;;17494:419;;;:::o;17919:::-;18085:4;18123:2;18112:9;18108:18;18100:26;;18172:9;18166:4;18162:20;18158:1;18147:9;18143:17;18136:47;18200:131;18326:4;18200:131;:::i;:::-;18192:139;;17919:419;;;:::o;18344:::-;18510:4;18548:2;18537:9;18533:18;18525:26;;18597:9;18591:4;18587:20;18583:1;18572:9;18568:17;18561:47;18625:131;18751:4;18625:131;:::i;:::-;18617:139;;18344:419;;;:::o;18769:::-;18935:4;18973:2;18962:9;18958:18;18950:26;;19022:9;19016:4;19012:20;19008:1;18997:9;18993:17;18986:47;19050:131;19176:4;19050:131;:::i;:::-;19042:139;;18769:419;;;:::o;19194:::-;19360:4;19398:2;19387:9;19383:18;19375:26;;19447:9;19441:4;19437:20;19433:1;19422:9;19418:17;19411:47;19475:131;19601:4;19475:131;:::i;:::-;19467:139;;19194:419;;;:::o;19619:::-;19785:4;19823:2;19812:9;19808:18;19800:26;;19872:9;19866:4;19862:20;19858:1;19847:9;19843:17;19836:47;19900:131;20026:4;19900:131;:::i;:::-;19892:139;;19619:419;;;:::o;20044:::-;20210:4;20248:2;20237:9;20233:18;20225:26;;20297:9;20291:4;20287:20;20283:1;20272:9;20268:17;20261:47;20325:131;20451:4;20325:131;:::i;:::-;20317:139;;20044:419;;;:::o;20469:::-;20635:4;20673:2;20662:9;20658:18;20650:26;;20722:9;20716:4;20712:20;20708:1;20697:9;20693:17;20686:47;20750:131;20876:4;20750:131;:::i;:::-;20742:139;;20469:419;;;:::o;20894:::-;21060:4;21098:2;21087:9;21083:18;21075:26;;21147:9;21141:4;21137:20;21133:1;21122:9;21118:17;21111:47;21175:131;21301:4;21175:131;:::i;:::-;21167:139;;20894:419;;;:::o;21319:::-;21485:4;21523:2;21512:9;21508:18;21500:26;;21572:9;21566:4;21562:20;21558:1;21547:9;21543:17;21536:47;21600:131;21726:4;21600:131;:::i;:::-;21592:139;;21319:419;;;:::o;21744:222::-;21837:4;21875:2;21864:9;21860:18;21852:26;;21888:71;21956:1;21945:9;21941:17;21932:6;21888:71;:::i;:::-;21744:222;;;;:::o;21972:129::-;22006:6;22033:20;;:::i;:::-;22023:30;;22062:33;22090:4;22082:6;22062:33;:::i;:::-;21972:129;;;:::o;22107:75::-;22140:6;22173:2;22167:9;22157:19;;22107:75;:::o;22188:307::-;22249:4;22339:18;22331:6;22328:30;22325:56;;;22361:18;;:::i;:::-;22325:56;22399:29;22421:6;22399:29;:::i;:::-;22391:37;;22483:4;22477;22473:15;22465:23;;22188:307;;;:::o;22501:308::-;22563:4;22653:18;22645:6;22642:30;22639:56;;;22675:18;;:::i;:::-;22639:56;22713:29;22735:6;22713:29;:::i;:::-;22705:37;;22797:4;22791;22787:15;22779:23;;22501:308;;;:::o;22815:132::-;22882:4;22905:3;22897:11;;22935:4;22930:3;22926:14;22918:22;;22815:132;;;:::o;22953:141::-;23002:4;23025:3;23017:11;;23048:3;23045:1;23038:14;23082:4;23079:1;23069:18;23061:26;;22953:141;;;:::o;23100:114::-;23167:6;23201:5;23195:12;23185:22;;23100:114;;;:::o;23220:98::-;23271:6;23305:5;23299:12;23289:22;;23220:98;;;:::o;23324:99::-;23376:6;23410:5;23404:12;23394:22;;23324:99;;;:::o;23429:113::-;23499:4;23531;23526:3;23522:14;23514:22;;23429:113;;;:::o;23548:184::-;23647:11;23681:6;23676:3;23669:19;23721:4;23716:3;23712:14;23697:29;;23548:184;;;;:::o;23738:168::-;23821:11;23855:6;23850:3;23843:19;23895:4;23890:3;23886:14;23871:29;;23738:168;;;;:::o;23912:169::-;23996:11;24030:6;24025:3;24018:19;24070:4;24065:3;24061:14;24046:29;;23912:169;;;;:::o;24087:148::-;24189:11;24226:3;24211:18;;24087:148;;;;:::o;24241:305::-;24281:3;24300:20;24318:1;24300:20;:::i;:::-;24295:25;;24334:20;24352:1;24334:20;:::i;:::-;24329:25;;24488:1;24420:66;24416:74;24413:1;24410:81;24407:107;;;24494:18;;:::i;:::-;24407:107;24538:1;24535;24531:9;24524:16;;24241:305;;;;:::o;24552:185::-;24592:1;24609:20;24627:1;24609:20;:::i;:::-;24604:25;;24643:20;24661:1;24643:20;:::i;:::-;24638:25;;24682:1;24672:35;;24687:18;;:::i;:::-;24672:35;24729:1;24726;24722:9;24717:14;;24552:185;;;;:::o;24743:348::-;24783:7;24806:20;24824:1;24806:20;:::i;:::-;24801:25;;24840:20;24858:1;24840:20;:::i;:::-;24835:25;;25028:1;24960:66;24956:74;24953:1;24950:81;24945:1;24938:9;24931:17;24927:105;24924:131;;;25035:18;;:::i;:::-;24924:131;25083:1;25080;25076:9;25065:20;;24743:348;;;;:::o;25097:191::-;25137:4;25157:20;25175:1;25157:20;:::i;:::-;25152:25;;25191:20;25209:1;25191:20;:::i;:::-;25186:25;;25230:1;25227;25224:8;25221:34;;;25235:18;;:::i;:::-;25221:34;25280:1;25277;25273:9;25265:17;;25097:191;;;;:::o;25294:96::-;25331:7;25360:24;25378:5;25360:24;:::i;:::-;25349:35;;25294:96;;;:::o;25396:90::-;25430:7;25473:5;25466:13;25459:21;25448:32;;25396:90;;;:::o;25492:149::-;25528:7;25568:66;25561:5;25557:78;25546:89;;25492:149;;;:::o;25647:126::-;25684:7;25724:42;25717:5;25713:54;25702:65;;25647:126;;;:::o;25779:77::-;25816:7;25845:5;25834:16;;25779:77;;;:::o;25862:154::-;25946:6;25941:3;25936;25923:30;26008:1;25999:6;25994:3;25990:16;25983:27;25862:154;;;:::o;26022:307::-;26090:1;26100:113;26114:6;26111:1;26108:13;26100:113;;;26199:1;26194:3;26190:11;26184:18;26180:1;26175:3;26171:11;26164:39;26136:2;26133:1;26129:10;26124:15;;26100:113;;;26231:6;26228:1;26225:13;26222:101;;;26311:1;26302:6;26297:3;26293:16;26286:27;26222:101;26071:258;26022:307;;;:::o;26335:320::-;26379:6;26416:1;26410:4;26406:12;26396:22;;26463:1;26457:4;26453:12;26484:18;26474:81;;26540:4;26532:6;26528:17;26518:27;;26474:81;26602:2;26594:6;26591:14;26571:18;26568:38;26565:84;;;26621:18;;:::i;:::-;26565:84;26386:269;26335:320;;;:::o;26661:281::-;26744:27;26766:4;26744:27;:::i;:::-;26736:6;26732:40;26874:6;26862:10;26859:22;26838:18;26826:10;26823:34;26820:62;26817:88;;;26885:18;;:::i;:::-;26817:88;26925:10;26921:2;26914:22;26704:238;26661:281;;:::o;26948:233::-;26987:3;27010:24;27028:5;27010:24;:::i;:::-;27001:33;;27056:66;27049:5;27046:77;27043:103;;;27126:18;;:::i;:::-;27043:103;27173:1;27166:5;27162:13;27155:20;;26948:233;;;:::o;27187:176::-;27219:1;27236:20;27254:1;27236:20;:::i;:::-;27231:25;;27270:20;27288:1;27270:20;:::i;:::-;27265:25;;27309:1;27299:35;;27314:18;;:::i;:::-;27299:35;27355:1;27352;27348:9;27343:14;;27187:176;;;;:::o;27369:180::-;27417:77;27414:1;27407:88;27514:4;27511:1;27504:15;27538:4;27535:1;27528:15;27555:180;27603:77;27600:1;27593:88;27700:4;27697:1;27690:15;27724:4;27721:1;27714:15;27741:180;27789:77;27786:1;27779:88;27886:4;27883:1;27876:15;27910:4;27907:1;27900:15;27927:180;27975:77;27972:1;27965:88;28072:4;28069:1;28062:15;28096:4;28093:1;28086:15;28113:180;28161:77;28158:1;28151:88;28258:4;28255:1;28248:15;28282:4;28279:1;28272:15;28299:117;28408:1;28405;28398:12;28422:117;28531:1;28528;28521:12;28545:117;28654:1;28651;28644:12;28668:117;28777:1;28774;28767:12;28791:102;28832:6;28883:2;28879:7;28874:2;28867:5;28863:14;28859:28;28849:38;;28791:102;;;:::o;28899:235::-;29039:34;29035:1;29027:6;29023:14;29016:58;29108:18;29103:2;29095:6;29091:15;29084:43;28899:235;:::o;29140:225::-;29280:34;29276:1;29268:6;29264:14;29257:58;29349:8;29344:2;29336:6;29332:15;29325:33;29140:225;:::o;29371:160::-;29511:12;29507:1;29499:6;29495:14;29488:36;29371:160;:::o;29537:173::-;29677:25;29673:1;29665:6;29661:14;29654:49;29537:173;:::o;29716:172::-;29856:24;29852:1;29844:6;29840:14;29833:48;29716:172;:::o;29894:182::-;30034:34;30030:1;30022:6;30018:14;30011:58;29894:182;:::o;30082:168::-;30222:20;30218:1;30210:6;30206:14;30199:44;30082:168;:::o;30256:177::-;30396:29;30392:1;30384:6;30380:14;30373:53;30256:177;:::o;30439:181::-;30579:33;30575:1;30567:6;30563:14;30556:57;30439:181;:::o;30626:::-;30766:33;30762:1;30754:6;30750:14;30743:57;30626:181;:::o;30813:122::-;30886:24;30904:5;30886:24;:::i;:::-;30879:5;30876:35;30866:63;;30925:1;30922;30915:12;30866:63;30813:122;:::o;30941:116::-;31011:21;31026:5;31011:21;:::i;:::-;31004:5;31001:32;30991:60;;31047:1;31044;31037:12;30991:60;30941:116;:::o;31063:120::-;31135:23;31152:5;31135:23;:::i;:::-;31128:5;31125:34;31115:62;;31173:1;31170;31163:12;31115:62;31063:120;:::o;31189:122::-;31262:24;31280:5;31262:24;:::i;:::-;31255:5;31252:35;31242:63;;31301:1;31298;31291:12;31242:63;31189:122;:::o

Swarm Source

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