ETH Price: $3,115.70 (+1.54%)
Gas: 7 Gwei

Token

FreeNFT.xyz OG Ticket (FreeNFTOG)
 

Overview

Max Total Supply

189 FreeNFTOG

Holders

159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
stolenhistory.eth
Balance
1 FreeNFTOG
0x272fcde0475981d2ae5fa60ff23df30c4602b2af
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The FreeNFT OG Ticket guarantees access to all of our future NFT drops. Claimable only with an NXC Genesis Pass.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FreeNFTOGTicket

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-16
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

    function _nonReentrantAfter() private {
        // 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/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.3
// 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();

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

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

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

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

    /**
     * @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.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // 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: contracts/OGTicket.sol



pragma solidity 0.8.17;





contract FreeNFTOGTicket is ERC721A, Ownable, ReentrancyGuard {
  string private baseURI = "ipfs://QmZoKexHWdnK5iX4aHBE7kn4jGaEQy7yYBAwcE7SHjAu6s";

  uint256 public constant maxSupply = 200;

  address NXCOGPass = 0x0c36B53e86bFFF3D24292AC79145ed4a962E64D5;
  ERC721A NXC = ERC721A(NXCOGPass);

  address private _manager;

  mapping(uint256 => bool) public tokenClaimed;

  constructor() ERC721A("FreeNFT.xyz OG Ticket", "FreeNFTOG") {}

  modifier onlyOwnerOrManager() {
    require(
      owner() == _msgSender() || _manager == _msgSender(),
      "Caller is not the owner or manager"
    );
    _;
  }

  function nxcOwnerOf(uint256 tokenId) public view returns (address) {
    return NXC.ownerOf(tokenId);
  }

  function claim(uint256 _genesisTokenId) public nonReentrant {
    require(
      nxcOwnerOf(_genesisTokenId) == _msgSender(),
      "You do not own the genesis token."
    );
    require(
      !tokenClaimed[_genesisTokenId],
      "You have already claimed your OG Ticket."
    );

    tokenClaimed[_genesisTokenId] = true;
    _mint(msg.sender, 1);
  }

  function setManager(address manager) external onlyOwnerOrManager {
    _manager = manager;
  }

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

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

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

    return baseURI;
  }

  function _startTokenId()
    internal
    pure
    override(ERC721A)
    returns (uint256 startId)
  {
    return 1;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_genesisTokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"nxcOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"name":"setManager","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":"","type":"uint256"}],"name":"tokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806035815260200162002f4060359139600a90816200002e91906200051c565b50730c36b53e86bfff3d24292ac79145ed4a962e64d5600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f457600080fd5b506040518060400160405280601581526020017f467265654e46542e78797a204f47205469636b657400000000000000000000008152506040518060400160405280600981526020017f467265654e46544f47000000000000000000000000000000000000000000000081525081600290816200017291906200051c565b5080600390816200018491906200051c565b5062000195620001cb60201b60201c565b6000819055505050620001bd620001b1620001d460201b60201c565b620001dc60201b60201c565b600160098190555062000603565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032457607f821691505b6020821081036200033a5762000339620002dc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000365565b620003b0868362000365565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003fd620003f7620003f184620003c8565b620003d2565b620003c8565b9050919050565b6000819050919050565b6200041983620003dc565b62000431620004288262000404565b84845462000372565b825550505050565b600090565b6200044862000439565b620004558184846200040e565b505050565b5b818110156200047d57620004716000826200043e565b6001810190506200045b565b5050565b601f821115620004cc57620004968162000340565b620004a18462000355565b81016020851015620004b1578190505b620004c9620004c08562000355565b8301826200045a565b50505b505050565b600082821c905092915050565b6000620004f160001984600802620004d1565b1980831691505092915050565b60006200050c8383620004de565b9150826002028217905092915050565b6200052782620002a2565b67ffffffffffffffff811115620005435762000542620002ad565b5b6200054f82546200030b565b6200055c82828562000481565b600060209050601f8311600181146200059457600084156200057f578287015190505b6200058b8582620004fe565b865550620005fb565b601f198416620005a48662000340565b60005b82811015620005ce57848901518255600182019150602085019450602081019050620005a7565b86831015620005ee5784890151620005ea601f891682620004de565b8355505b6001600288020188555050505b505050505050565b61292d80620006136000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b6578063b88d4fde1161006f578063b88d4fde14610445578063c87b56dd14610461578063d0ebdbe71461049e578063d5abeb01146104c7578063e985e9c5146104f2578063f2fde38b1461052f57610140565b80636352211e1461033557806370a0823114610372578063715018a6146103af5780638da5cb5b146103c657806395d89b41146103f1578063a22cb4651461041c57610140565b806323b872dd1161010857806323b872dd1461023157806336ee1d8d1461024d578063379607f51461028a57806342842e0e146102b357806345f3f5af146102cf57806355f804b31461030c57610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610206575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611b0a565b610558565b6040516101799190611b52565b60405180910390f35b34801561018e57600080fd5b506101976105ea565b6040516101a49190611bfd565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611c55565b61067c565b6040516101e19190611cc3565b60405180910390f35b61020460048036038101906101ff9190611d0a565b6106fb565b005b34801561021257600080fd5b5061021b61083f565b6040516102289190611d59565b60405180910390f35b61024b60048036038101906102469190611d74565b610856565b005b34801561025957600080fd5b50610274600480360381019061026f9190611c55565b610b78565b6040516102819190611b52565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190611c55565b610b98565b005b6102cd60048036038101906102c89190611d74565b610cc0565b005b3480156102db57600080fd5b506102f660048036038101906102f19190611c55565b610ce0565b6040516103039190611cc3565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190611efc565b610d85565b005b34801561034157600080fd5b5061035c60048036038101906103579190611c55565b610da0565b6040516103699190611cc3565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190611f45565b610db2565b6040516103a69190611d59565b60405180910390f35b3480156103bb57600080fd5b506103c4610e6a565b005b3480156103d257600080fd5b506103db610e7e565b6040516103e89190611cc3565b60405180910390f35b3480156103fd57600080fd5b50610406610ea8565b6040516104139190611bfd565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611f9e565b610f3a565b005b61045f600480360381019061045a919061207f565b611045565b005b34801561046d57600080fd5b5061048860048036038101906104839190611c55565b6110b8565b6040516104959190611bfd565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190611f45565b611194565b005b3480156104d357600080fd5b506104dc6112b3565b6040516104e99190611d59565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612102565b6112b8565b6040516105269190611b52565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190611f45565b61134c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105f990612171565b80601f016020809104026020016040519081016040528092919081815260200182805461062590612171565b80156106725780601f1061064757610100808354040283529160200191610672565b820191906000526020600020905b81548152906001019060200180831161065557829003601f168201915b5050505050905090565b6000610687826113cf565b6106bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070682610da0565b90508073ffffffffffffffffffffffffffffffffffffffff1661072761142e565b73ffffffffffffffffffffffffffffffffffffffff161461078a576107538161074e61142e565b6112b8565b610789576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610849611436565b6001546000540303905090565b60006108618261143f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108d48461150b565b915091506108ea81876108e561142e565b611532565b610936576108ff866108fa61142e565b6112b8565b610935576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361099c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109a98686866001611576565b80156109b457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a8285610a5e88888761157c565b7c0200000000000000000000000000000000000000000000000000000000176115a4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610b085760006001850190506000600460008381526020019081526020016000205403610b06576000548114610b05578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b7086868660016115cf565b505050505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610ba06115d5565b610ba8611624565b73ffffffffffffffffffffffffffffffffffffffff16610bc782610ce0565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490612214565b60405180910390fd5b600e600082815260200190815260200160002060009054906101000a900460ff1615610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906122a6565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610cb533600161162c565b610cbd6117e7565b50565b610cdb83838360405180602001604052806000815250611045565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610d3d9190611d59565b602060405180830381865afa158015610d5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7e91906122db565b9050919050565b610d8d6117f1565b80600a9081610d9c91906124b4565b5050565b6000610dab8261143f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e726117f1565b610e7c600061186f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eb790612171565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee390612171565b8015610f305780601f10610f0557610100808354040283529160200191610f30565b820191906000526020600020905b815481529060010190602001808311610f1357829003601f168201915b5050505050905090565b8060076000610f4761142e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ff461142e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110399190611b52565b60405180910390a35050565b611050848484610856565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110b25761107b84848484611935565b6110b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110c3826113cf565b611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906125f8565b60405180910390fd5b600a805461110f90612171565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90612171565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b50505050509050919050565b61119c611624565b73ffffffffffffffffffffffffffffffffffffffff166111ba610e7e565b73ffffffffffffffffffffffffffffffffffffffff16148061123057506111df611624565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112669061268a565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60c881565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113546117f1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba9061271c565b60405180910390fd5b6113cc8161186f565b50565b6000816113da611436565b111580156113e9575060005482105b8015611427575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061144e611436565b116114d4576000548110156114d35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114d1575b600081036114c757600460008360019003935083815260200190815260200160002054905061149d565b8092505050611506565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611593868684611a85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009540361161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190612788565b60405180910390fd5b6002600981905550565b600033905090565b6000805490506000820361166c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116796000848385611576565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506116f0836116e1600086600061157c565b6116ea85611a8e565b176115a4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461179157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611756565b50600082036117cc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506117e260008483856115cf565b505050565b6001600981905550565b6117f9611624565b73ffffffffffffffffffffffffffffffffffffffff16611817610e7e565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906127f4565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261195b61142e565b8786866040518563ffffffff1660e01b815260040161197d9493929190612869565b6020604051808303816000875af19250505080156119b957506040513d601f19601f820116820180604052508101906119b691906128ca565b60015b611a32573d80600081146119e9576040519150601f19603f3d011682016040523d82523d6000602084013e6119ee565b606091505b506000815103611a2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ae781611ab2565b8114611af257600080fd5b50565b600081359050611b0481611ade565b92915050565b600060208284031215611b2057611b1f611aa8565b5b6000611b2e84828501611af5565b91505092915050565b60008115159050919050565b611b4c81611b37565b82525050565b6000602082019050611b676000830184611b43565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ba7578082015181840152602081019050611b8c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bcf82611b6d565b611bd98185611b78565b9350611be9818560208601611b89565b611bf281611bb3565b840191505092915050565b60006020820190508181036000830152611c178184611bc4565b905092915050565b6000819050919050565b611c3281611c1f565b8114611c3d57600080fd5b50565b600081359050611c4f81611c29565b92915050565b600060208284031215611c6b57611c6a611aa8565b5b6000611c7984828501611c40565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cad82611c82565b9050919050565b611cbd81611ca2565b82525050565b6000602082019050611cd86000830184611cb4565b92915050565b611ce781611ca2565b8114611cf257600080fd5b50565b600081359050611d0481611cde565b92915050565b60008060408385031215611d2157611d20611aa8565b5b6000611d2f85828601611cf5565b9250506020611d4085828601611c40565b9150509250929050565b611d5381611c1f565b82525050565b6000602082019050611d6e6000830184611d4a565b92915050565b600080600060608486031215611d8d57611d8c611aa8565b5b6000611d9b86828701611cf5565b9350506020611dac86828701611cf5565b9250506040611dbd86828701611c40565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e0982611bb3565b810181811067ffffffffffffffff82111715611e2857611e27611dd1565b5b80604052505050565b6000611e3b611a9e565b9050611e478282611e00565b919050565b600067ffffffffffffffff821115611e6757611e66611dd1565b5b611e7082611bb3565b9050602081019050919050565b82818337600083830152505050565b6000611e9f611e9a84611e4c565b611e31565b905082815260208101848484011115611ebb57611eba611dcc565b5b611ec6848285611e7d565b509392505050565b600082601f830112611ee357611ee2611dc7565b5b8135611ef3848260208601611e8c565b91505092915050565b600060208284031215611f1257611f11611aa8565b5b600082013567ffffffffffffffff811115611f3057611f2f611aad565b5b611f3c84828501611ece565b91505092915050565b600060208284031215611f5b57611f5a611aa8565b5b6000611f6984828501611cf5565b91505092915050565b611f7b81611b37565b8114611f8657600080fd5b50565b600081359050611f9881611f72565b92915050565b60008060408385031215611fb557611fb4611aa8565b5b6000611fc385828601611cf5565b9250506020611fd485828601611f89565b9150509250929050565b600067ffffffffffffffff821115611ff957611ff8611dd1565b5b61200282611bb3565b9050602081019050919050565b600061202261201d84611fde565b611e31565b90508281526020810184848401111561203e5761203d611dcc565b5b612049848285611e7d565b509392505050565b600082601f83011261206657612065611dc7565b5b813561207684826020860161200f565b91505092915050565b6000806000806080858703121561209957612098611aa8565b5b60006120a787828801611cf5565b94505060206120b887828801611cf5565b93505060406120c987828801611c40565b925050606085013567ffffffffffffffff8111156120ea576120e9611aad565b5b6120f687828801612051565b91505092959194509250565b6000806040838503121561211957612118611aa8565b5b600061212785828601611cf5565b925050602061213885828601611cf5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061218957607f821691505b60208210810361219c5761219b612142565b5b50919050565b7f596f7520646f206e6f74206f776e207468652067656e6573697320746f6b656e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006121fe602183611b78565b9150612209826121a2565b604082019050919050565b6000602082019050818103600083015261222d816121f1565b9050919050565b7f596f75206861766520616c726561647920636c61696d656420796f7572204f4760008201527f205469636b65742e000000000000000000000000000000000000000000000000602082015250565b6000612290602883611b78565b915061229b82612234565b604082019050919050565b600060208201905081810360008301526122bf81612283565b9050919050565b6000815190506122d581611cde565b92915050565b6000602082840312156122f1576122f0611aa8565b5b60006122ff848285016122c6565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261236a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261232d565b612374868361232d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006123b16123ac6123a784611c1f565b61238c565b611c1f565b9050919050565b6000819050919050565b6123cb83612396565b6123df6123d7826123b8565b84845461233a565b825550505050565b600090565b6123f46123e7565b6123ff8184846123c2565b505050565b5b81811015612423576124186000826123ec565b600181019050612405565b5050565b601f8211156124685761243981612308565b6124428461231d565b81016020851015612451578190505b61246561245d8561231d565b830182612404565b50505b505050565b600082821c905092915050565b600061248b6000198460080261246d565b1980831691505092915050565b60006124a4838361247a565b9150826002028217905092915050565b6124bd82611b6d565b67ffffffffffffffff8111156124d6576124d5611dd1565b5b6124e08254612171565b6124eb828285612427565b600060209050601f83116001811461251e576000841561250c578287015190505b6125168582612498565b86555061257e565b601f19841661252c86612308565b60005b828110156125545784890151825560018201915060208501945060208101905061252f565b86831015612571578489015161256d601f89168261247a565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006125e2602f83611b78565b91506125ed82612586565b604082019050919050565b60006020820190508181036000830152612611816125d5565b9050919050565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612674602283611b78565b915061267f82612618565b604082019050919050565b600060208201905081810360008301526126a381612667565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612706602683611b78565b9150612711826126aa565b604082019050919050565b60006020820190508181036000830152612735816126f9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612772601f83611b78565b915061277d8261273c565b602082019050919050565b600060208201905081810360008301526127a181612765565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127de602083611b78565b91506127e9826127a8565b602082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061283b82612814565b612845818561281f565b9350612855818560208601611b89565b61285e81611bb3565b840191505092915050565b600060808201905061287e6000830187611cb4565b61288b6020830186611cb4565b6128986040830185611d4a565b81810360608301526128aa8184612830565b905095945050505050565b6000815190506128c481611ade565b92915050565b6000602082840312156128e0576128df611aa8565b5b60006128ee848285016128b5565b9150509291505056fea2646970667358221220557de7938a18cf895ddd2e1d070a56b797ee3003dfde3354e01d54a2a1d03d8d64736f6c63430008110033697066733a2f2f516d5a6f4b65784857646e4b3569583461484245376b6e346a476145517937795942417763453753486a41753673

Deployed Bytecode

0x6080604052600436106101405760003560e01c80636352211e116100b6578063b88d4fde1161006f578063b88d4fde14610445578063c87b56dd14610461578063d0ebdbe71461049e578063d5abeb01146104c7578063e985e9c5146104f2578063f2fde38b1461052f57610140565b80636352211e1461033557806370a0823114610372578063715018a6146103af5780638da5cb5b146103c657806395d89b41146103f1578063a22cb4651461041c57610140565b806323b872dd1161010857806323b872dd1461023157806336ee1d8d1461024d578063379607f51461028a57806342842e0e146102b357806345f3f5af146102cf57806355f804b31461030c57610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610206575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611b0a565b610558565b6040516101799190611b52565b60405180910390f35b34801561018e57600080fd5b506101976105ea565b6040516101a49190611bfd565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611c55565b61067c565b6040516101e19190611cc3565b60405180910390f35b61020460048036038101906101ff9190611d0a565b6106fb565b005b34801561021257600080fd5b5061021b61083f565b6040516102289190611d59565b60405180910390f35b61024b60048036038101906102469190611d74565b610856565b005b34801561025957600080fd5b50610274600480360381019061026f9190611c55565b610b78565b6040516102819190611b52565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190611c55565b610b98565b005b6102cd60048036038101906102c89190611d74565b610cc0565b005b3480156102db57600080fd5b506102f660048036038101906102f19190611c55565b610ce0565b6040516103039190611cc3565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190611efc565b610d85565b005b34801561034157600080fd5b5061035c60048036038101906103579190611c55565b610da0565b6040516103699190611cc3565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190611f45565b610db2565b6040516103a69190611d59565b60405180910390f35b3480156103bb57600080fd5b506103c4610e6a565b005b3480156103d257600080fd5b506103db610e7e565b6040516103e89190611cc3565b60405180910390f35b3480156103fd57600080fd5b50610406610ea8565b6040516104139190611bfd565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611f9e565b610f3a565b005b61045f600480360381019061045a919061207f565b611045565b005b34801561046d57600080fd5b5061048860048036038101906104839190611c55565b6110b8565b6040516104959190611bfd565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190611f45565b611194565b005b3480156104d357600080fd5b506104dc6112b3565b6040516104e99190611d59565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612102565b6112b8565b6040516105269190611b52565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190611f45565b61134c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105f990612171565b80601f016020809104026020016040519081016040528092919081815260200182805461062590612171565b80156106725780601f1061064757610100808354040283529160200191610672565b820191906000526020600020905b81548152906001019060200180831161065557829003601f168201915b5050505050905090565b6000610687826113cf565b6106bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070682610da0565b90508073ffffffffffffffffffffffffffffffffffffffff1661072761142e565b73ffffffffffffffffffffffffffffffffffffffff161461078a576107538161074e61142e565b6112b8565b610789576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610849611436565b6001546000540303905090565b60006108618261143f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108d48461150b565b915091506108ea81876108e561142e565b611532565b610936576108ff866108fa61142e565b6112b8565b610935576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361099c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109a98686866001611576565b80156109b457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a8285610a5e88888761157c565b7c0200000000000000000000000000000000000000000000000000000000176115a4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610b085760006001850190506000600460008381526020019081526020016000205403610b06576000548114610b05578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b7086868660016115cf565b505050505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610ba06115d5565b610ba8611624565b73ffffffffffffffffffffffffffffffffffffffff16610bc782610ce0565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490612214565b60405180910390fd5b600e600082815260200190815260200160002060009054906101000a900460ff1615610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906122a6565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610cb533600161162c565b610cbd6117e7565b50565b610cdb83838360405180602001604052806000815250611045565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610d3d9190611d59565b602060405180830381865afa158015610d5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7e91906122db565b9050919050565b610d8d6117f1565b80600a9081610d9c91906124b4565b5050565b6000610dab8261143f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e726117f1565b610e7c600061186f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eb790612171565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee390612171565b8015610f305780601f10610f0557610100808354040283529160200191610f30565b820191906000526020600020905b815481529060010190602001808311610f1357829003601f168201915b5050505050905090565b8060076000610f4761142e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ff461142e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110399190611b52565b60405180910390a35050565b611050848484610856565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110b25761107b84848484611935565b6110b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110c3826113cf565b611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906125f8565b60405180910390fd5b600a805461110f90612171565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90612171565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b50505050509050919050565b61119c611624565b73ffffffffffffffffffffffffffffffffffffffff166111ba610e7e565b73ffffffffffffffffffffffffffffffffffffffff16148061123057506111df611624565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112669061268a565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60c881565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113546117f1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba9061271c565b60405180910390fd5b6113cc8161186f565b50565b6000816113da611436565b111580156113e9575060005482105b8015611427575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061144e611436565b116114d4576000548110156114d35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114d1575b600081036114c757600460008360019003935083815260200190815260200160002054905061149d565b8092505050611506565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611593868684611a85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009540361161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190612788565b60405180910390fd5b6002600981905550565b600033905090565b6000805490506000820361166c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116796000848385611576565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506116f0836116e1600086600061157c565b6116ea85611a8e565b176115a4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461179157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611756565b50600082036117cc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506117e260008483856115cf565b505050565b6001600981905550565b6117f9611624565b73ffffffffffffffffffffffffffffffffffffffff16611817610e7e565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906127f4565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261195b61142e565b8786866040518563ffffffff1660e01b815260040161197d9493929190612869565b6020604051808303816000875af19250505080156119b957506040513d601f19601f820116820180604052508101906119b691906128ca565b60015b611a32573d80600081146119e9576040519150601f19603f3d011682016040523d82523d6000602084013e6119ee565b606091505b506000815103611a2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ae781611ab2565b8114611af257600080fd5b50565b600081359050611b0481611ade565b92915050565b600060208284031215611b2057611b1f611aa8565b5b6000611b2e84828501611af5565b91505092915050565b60008115159050919050565b611b4c81611b37565b82525050565b6000602082019050611b676000830184611b43565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ba7578082015181840152602081019050611b8c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bcf82611b6d565b611bd98185611b78565b9350611be9818560208601611b89565b611bf281611bb3565b840191505092915050565b60006020820190508181036000830152611c178184611bc4565b905092915050565b6000819050919050565b611c3281611c1f565b8114611c3d57600080fd5b50565b600081359050611c4f81611c29565b92915050565b600060208284031215611c6b57611c6a611aa8565b5b6000611c7984828501611c40565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cad82611c82565b9050919050565b611cbd81611ca2565b82525050565b6000602082019050611cd86000830184611cb4565b92915050565b611ce781611ca2565b8114611cf257600080fd5b50565b600081359050611d0481611cde565b92915050565b60008060408385031215611d2157611d20611aa8565b5b6000611d2f85828601611cf5565b9250506020611d4085828601611c40565b9150509250929050565b611d5381611c1f565b82525050565b6000602082019050611d6e6000830184611d4a565b92915050565b600080600060608486031215611d8d57611d8c611aa8565b5b6000611d9b86828701611cf5565b9350506020611dac86828701611cf5565b9250506040611dbd86828701611c40565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e0982611bb3565b810181811067ffffffffffffffff82111715611e2857611e27611dd1565b5b80604052505050565b6000611e3b611a9e565b9050611e478282611e00565b919050565b600067ffffffffffffffff821115611e6757611e66611dd1565b5b611e7082611bb3565b9050602081019050919050565b82818337600083830152505050565b6000611e9f611e9a84611e4c565b611e31565b905082815260208101848484011115611ebb57611eba611dcc565b5b611ec6848285611e7d565b509392505050565b600082601f830112611ee357611ee2611dc7565b5b8135611ef3848260208601611e8c565b91505092915050565b600060208284031215611f1257611f11611aa8565b5b600082013567ffffffffffffffff811115611f3057611f2f611aad565b5b611f3c84828501611ece565b91505092915050565b600060208284031215611f5b57611f5a611aa8565b5b6000611f6984828501611cf5565b91505092915050565b611f7b81611b37565b8114611f8657600080fd5b50565b600081359050611f9881611f72565b92915050565b60008060408385031215611fb557611fb4611aa8565b5b6000611fc385828601611cf5565b9250506020611fd485828601611f89565b9150509250929050565b600067ffffffffffffffff821115611ff957611ff8611dd1565b5b61200282611bb3565b9050602081019050919050565b600061202261201d84611fde565b611e31565b90508281526020810184848401111561203e5761203d611dcc565b5b612049848285611e7d565b509392505050565b600082601f83011261206657612065611dc7565b5b813561207684826020860161200f565b91505092915050565b6000806000806080858703121561209957612098611aa8565b5b60006120a787828801611cf5565b94505060206120b887828801611cf5565b93505060406120c987828801611c40565b925050606085013567ffffffffffffffff8111156120ea576120e9611aad565b5b6120f687828801612051565b91505092959194509250565b6000806040838503121561211957612118611aa8565b5b600061212785828601611cf5565b925050602061213885828601611cf5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061218957607f821691505b60208210810361219c5761219b612142565b5b50919050565b7f596f7520646f206e6f74206f776e207468652067656e6573697320746f6b656e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006121fe602183611b78565b9150612209826121a2565b604082019050919050565b6000602082019050818103600083015261222d816121f1565b9050919050565b7f596f75206861766520616c726561647920636c61696d656420796f7572204f4760008201527f205469636b65742e000000000000000000000000000000000000000000000000602082015250565b6000612290602883611b78565b915061229b82612234565b604082019050919050565b600060208201905081810360008301526122bf81612283565b9050919050565b6000815190506122d581611cde565b92915050565b6000602082840312156122f1576122f0611aa8565b5b60006122ff848285016122c6565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261236a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261232d565b612374868361232d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006123b16123ac6123a784611c1f565b61238c565b611c1f565b9050919050565b6000819050919050565b6123cb83612396565b6123df6123d7826123b8565b84845461233a565b825550505050565b600090565b6123f46123e7565b6123ff8184846123c2565b505050565b5b81811015612423576124186000826123ec565b600181019050612405565b5050565b601f8211156124685761243981612308565b6124428461231d565b81016020851015612451578190505b61246561245d8561231d565b830182612404565b50505b505050565b600082821c905092915050565b600061248b6000198460080261246d565b1980831691505092915050565b60006124a4838361247a565b9150826002028217905092915050565b6124bd82611b6d565b67ffffffffffffffff8111156124d6576124d5611dd1565b5b6124e08254612171565b6124eb828285612427565b600060209050601f83116001811461251e576000841561250c578287015190505b6125168582612498565b86555061257e565b601f19841661252c86612308565b60005b828110156125545784890151825560018201915060208501945060208101905061252f565b86831015612571578489015161256d601f89168261247a565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006125e2602f83611b78565b91506125ed82612586565b604082019050919050565b60006020820190508181036000830152612611816125d5565b9050919050565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612674602283611b78565b915061267f82612618565b604082019050919050565b600060208201905081810360008301526126a381612667565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612706602683611b78565b9150612711826126aa565b604082019050919050565b60006020820190508181036000830152612735816126f9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612772601f83611b78565b915061277d8261273c565b602082019050919050565b600060208201905081810360008301526127a181612765565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127de602083611b78565b91506127e9826127a8565b602082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061283b82612814565b612845818561281f565b9350612855818560208601611b89565b61285e81611bb3565b840191505092915050565b600060808201905061287e6000830187611cb4565b61288b6020830186611cb4565b6128986040830185611d4a565b81810360608301526128aa8184612830565b905095945050505050565b6000815190506128c481611ade565b92915050565b6000602082840312156128e0576128df611aa8565b5b60006128ee848285016128b5565b9150509291505056fea2646970667358221220557de7938a18cf895ddd2e1d070a56b797ee3003dfde3354e01d54a2a1d03d8d64736f6c63430008110033

Deployed Bytecode Sourcemap

58048:1818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24943:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25845:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32336:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31769:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21596:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35975:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58385:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58793:366;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38896:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58680:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59267:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27238:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22780:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5722:103;;;;;;;;;;;;;:::i;:::-;;5074:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26021:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32894:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39687:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59479:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59165:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58202:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33285:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5980:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24943:639;25028:4;25367:10;25352:25;;:11;:25;;;;:102;;;;25444:10;25429:25;;:11;:25;;;;25352:102;:179;;;;25521:10;25506:25;;:11;:25;;;;25352:179;25332:199;;24943:639;;;:::o;25845:100::-;25899:13;25932:5;25925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25845:100;:::o;32336:218::-;32412:7;32437:16;32445:7;32437;:16::i;:::-;32432:64;;32462:34;;;;;;;;;;;;;;32432:64;32516:15;:24;32532:7;32516:24;;;;;;;;;;;:30;;;;;;;;;;;;32509:37;;32336:218;;;:::o;31769:408::-;31858:13;31874:16;31882:7;31874;:16::i;:::-;31858:32;;31930:5;31907:28;;:19;:17;:19::i;:::-;:28;;;31903:175;;31955:44;31972:5;31979:19;:17;:19::i;:::-;31955:16;:44::i;:::-;31950:128;;32027:35;;;;;;;;;;;;;;31950:128;31903:175;32123:2;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32161:7;32157:2;32141:28;;32150:5;32141:28;;;;;;;;;;;;31847:330;31769:408;;:::o;21596:323::-;21657:7;21885:15;:13;:15::i;:::-;21870:12;;21854:13;;:28;:46;21847:53;;21596:323;:::o;35975:2825::-;36117:27;36147;36166:7;36147:18;:27::i;:::-;36117:57;;36232:4;36191:45;;36207:19;36191:45;;;36187:86;;36245:28;;;;;;;;;;;;;;36187:86;36287:27;36316:23;36343:35;36370:7;36343:26;:35::i;:::-;36286:92;;;;36478:68;36503:15;36520:4;36526:19;:17;:19::i;:::-;36478:24;:68::i;:::-;36473:180;;36566:43;36583:4;36589:19;:17;:19::i;:::-;36566:16;:43::i;:::-;36561:92;;36618:35;;;;;;;;;;;;;;36561:92;36473:180;36684:1;36670:16;;:2;:16;;;36666:52;;36695:23;;;;;;;;;;;;;;36666:52;36731:43;36753:4;36759:2;36763:7;36772:1;36731:21;:43::i;:::-;36867:15;36864:160;;;37007:1;36986:19;36979:30;36864:160;37404:18;:24;37423:4;37404:24;;;;;;;;;;;;;;;;37402:26;;;;;;;;;;;;37473:18;:22;37492:2;37473:22;;;;;;;;;;;;;;;;37471:24;;;;;;;;;;;37795:146;37832:2;37881:45;37896:4;37902:2;37906:19;37881:14;:45::i;:::-;17995:8;37853:73;37795:18;:146::i;:::-;37766:17;:26;37784:7;37766:26;;;;;;;;;;;:175;;;;38112:1;17995:8;38061:19;:47;:52;38057:627;;38134:19;38166:1;38156:7;:11;38134:33;;38323:1;38289:17;:30;38307:11;38289:30;;;;;;;;;;;;:35;38285:384;;38427:13;;38412:11;:28;38408:242;;38607:19;38574:17;:30;38592:11;38574:30;;;;;;;;;;;:52;;;;38408:242;38285:384;38115:569;38057:627;38731:7;38727:2;38712:27;;38721:4;38712:27;;;;;;;;;;;;38750:42;38771:4;38777:2;38781:7;38790:1;38750:20;:42::i;:::-;36106:2694;;;35975:2825;;;:::o;58385:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;58793:366::-;2345:21;:19;:21::i;:::-;58907:12:::1;:10;:12::i;:::-;58876:43;;:27;58887:15;58876:10;:27::i;:::-;:43;;;58860:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;58994:12;:29;59007:15;58994:29;;;;;;;;;;;;;;;;;;;;;58993:30;58977:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;59122:4;59090:12;:29;59103:15;59090:29;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;59133:20;59139:10;59151:1;59133:5;:20::i;:::-;2389::::0;:18;:20::i;:::-;58793:366;:::o;38896:193::-;39042:39;39059:4;39065:2;39069:7;39042:39;;;;;;;;;;;;:16;:39::i;:::-;38896:193;;;:::o;58680:107::-;58738:7;58761:3;;;;;;;;;;;:11;;;58773:7;58761:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58754:27;;58680:107;;;:::o;59267:98::-;4960:13;:11;:13::i;:::-;59348:11:::1;59338:7;:21;;;;;;:::i;:::-;;59267:98:::0;:::o;27238:152::-;27310:7;27353:27;27372:7;27353:18;:27::i;:::-;27330:52;;27238:152;;;:::o;22780:233::-;22852:7;22893:1;22876:19;;:5;:19;;;22872:60;;22904:28;;;;;;;;;;;;;;22872:60;16939:13;22950:18;:25;22969:5;22950:25;;;;;;;;;;;;;;;;:55;22943:62;;22780:233;;;:::o;5722:103::-;4960:13;:11;:13::i;:::-;5787:30:::1;5814:1;5787:18;:30::i;:::-;5722:103::o:0;5074:87::-;5120:7;5147:6;;;;;;;;;;;5140:13;;5074:87;:::o;26021:104::-;26077:13;26110:7;26103:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26021:104;:::o;32894:234::-;33041:8;32989:18;:39;33008:19;:17;:19::i;:::-;32989:39;;;;;;;;;;;;;;;:49;33029:8;32989:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33101:8;33065:55;;33080:19;:17;:19::i;:::-;33065:55;;;33111:8;33065:55;;;;;;:::i;:::-;;;;;;;;32894:234;;:::o;39687:407::-;39862:31;39875:4;39881:2;39885:7;39862:12;:31::i;:::-;39926:1;39908:2;:14;;;:19;39904:183;;39947:56;39978:4;39984:2;39988:7;39997:5;39947:30;:56::i;:::-;39942:145;;40031:40;;;;;;;;;;;;;;39942:145;39904:183;39687:407;;;;:::o;59479:251::-;59578:13;59619:17;59627:8;59619:7;:17::i;:::-;59603:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;59717:7;59710:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59479:251;;;:::o;59165:96::-;58568:12;:10;:12::i;:::-;58557:23;;:7;:5;:7::i;:::-;:23;;;:51;;;;58596:12;:10;:12::i;:::-;58584:24;;:8;;;;;;;;;;;:24;;;58557:51;58541:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;59248:7:::1;59237:8;;:18;;;;;;;;;;;;;;;;;;59165:96:::0;:::o;58202:39::-;58238:3;58202:39;:::o;33285:164::-;33382:4;33406:18;:25;33425:5;33406:25;;;;;;;;;;;;;;;:35;33432:8;33406:35;;;;;;;;;;;;;;;;;;;;;;;;;33399:42;;33285:164;;;;:::o;5980:201::-;4960:13;:11;:13::i;:::-;6089:1:::1;6069:22;;:8;:22;;::::0;6061:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6145:28;6164:8;6145:18;:28::i;:::-;5980:201:::0;:::o;33707:282::-;33772:4;33828:7;33809:15;:13;:15::i;:::-;:26;;:66;;;;;33862:13;;33852:7;:23;33809:66;:153;;;;;33961:1;17715:8;33913:17;:26;33931:7;33913:26;;;;;;;;;;;;:44;:49;33809:153;33789:173;;33707:282;;;:::o;56015:105::-;56075:7;56102:10;56095:17;;56015:105;:::o;59736:127::-;59822:15;59856:1;59849:8;;59736:127;:::o;28393:1275::-;28460:7;28480:12;28495:7;28480:22;;28563:4;28544:15;:13;:15::i;:::-;:23;28540:1061;;28597:13;;28590:4;:20;28586:1015;;;28635:14;28652:17;:23;28670:4;28652:23;;;;;;;;;;;;28635:40;;28769:1;17715:8;28741:6;:24;:29;28737:845;;29406:113;29423:1;29413:6;:11;29406:113;;29466:17;:25;29484:6;;;;;;;29466:25;;;;;;;;;;;;29457:34;;29406:113;;;29552:6;29545:13;;;;;;28737:845;28612:989;28586:1015;28540:1061;29629:31;;;;;;;;;;;;;;28393:1275;;;;:::o;34870:485::-;34972:27;35001:23;35042:38;35083:15;:24;35099:7;35083:24;;;;;;;;;;;35042:65;;35260:18;35237:41;;35317:19;35311:26;35292:45;;35222:126;34870:485;;;:::o;34098:659::-;34247:11;34412:16;34405:5;34401:28;34392:37;;34572:16;34561:9;34557:32;34544:45;;34722:15;34711:9;34708:30;34700:5;34689:9;34686:20;34683:56;34673:66;;34098:659;;;;;:::o;40756:159::-;;;;;:::o;55324:311::-;55459:7;55479:16;18119:3;55505:19;:41;;55479:68;;18119:3;55573:31;55584:4;55590:2;55594:9;55573:10;:31::i;:::-;55565:40;;:62;;55558:69;;;55324:311;;;;;:::o;30216:450::-;30296:14;30464:16;30457:5;30453:28;30444:37;;30641:5;30627:11;30602:23;30598:41;30595:52;30588:5;30585:63;30575:73;;30216:450;;;;:::o;41580:158::-;;;;;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;3625:98::-;3678:7;3705:10;3698:17;;3625:98;:::o;43356:2966::-;43429:20;43452:13;;43429:36;;43492:1;43480:8;:13;43476:44;;43502:18;;;;;;;;;;;;;;43476:44;43533:61;43563:1;43567:2;43571:12;43585:8;43533:21;:61::i;:::-;44077:1;17077:2;44047:1;:26;;44046:32;44034:8;:45;44008:18;:22;44027:2;44008:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44356:139;44393:2;44447:33;44470:1;44474:2;44478:1;44447:14;:33::i;:::-;44414:30;44435:8;44414:20;:30::i;:::-;:66;44356:18;:139::i;:::-;44322:17;:31;44340:12;44322:31;;;;;;;;;;;:173;;;;44512:16;44543:11;44572:8;44557:12;:23;44543:37;;45093:16;45089:2;45085:25;45073:37;;45465:12;45425:8;45384:1;45322:25;45263:1;45202;45175:335;45836:1;45822:12;45818:20;45776:346;45877:3;45868:7;45865:16;45776:346;;46095:7;46085:8;46082:1;46055:25;46052:1;46049;46044:59;45930:1;45921:7;45917:15;45906:26;;45776:346;;;45780:77;46167:1;46155:8;:13;46151:45;;46177:19;;;;;;;;;;;;;;46151:45;46229:3;46213:13;:19;;;;43782:2462;;46254:60;46283:1;46287:2;46291:12;46305:8;46254:20;:60::i;:::-;43418:2904;43356:2966;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;5239:132::-;5314:12;:10;:12::i;:::-;5303:23;;:7;:5;:7::i;:::-;:23;;;5295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5239:132::o;6341:191::-;6415:16;6434:6;;;;;;;;;;;6415:25;;6460:8;6451:6;;:17;;;;;;;;;;;;;;;;;;6515:8;6484:40;;6505:8;6484:40;;;;;;;;;;;;6404:128;6341:191;:::o;42178:716::-;42341:4;42387:2;42362:45;;;42408:19;:17;:19::i;:::-;42429:4;42435:7;42444:5;42362:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42358:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42662:1;42645:6;:13;:18;42641:235;;42691:40;;;;;;;;;;;;;;42641:235;42834:6;42828:13;42819:6;42815:2;42811:15;42804:38;42358:529;42531:54;;;42521:64;;;:6;:64;;;;42514:71;;;42178:716;;;;;;:::o;55025:147::-;55162:6;55025:147;;;;;:::o;30768:324::-;30838:14;31071:1;31061:8;31058:15;31032:24;31028:46;31018:56;;30768:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:220::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:3;12807:2;12799:6;12795:15;12788:28;12603:220;:::o;12829:366::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:419::-;13367:4;13405:2;13394:9;13390:18;13382:26;;13454:9;13448:4;13444:20;13440:1;13429:9;13425:17;13418:47;13482:131;13608:4;13482:131;:::i;:::-;13474:139;;13201:419;;;:::o;13626:227::-;13766:34;13762:1;13754:6;13750:14;13743:58;13835:10;13830:2;13822:6;13818:15;13811:35;13626:227;:::o;13859:366::-;14001:3;14022:67;14086:2;14081:3;14022:67;:::i;:::-;14015:74;;14098:93;14187:3;14098:93;:::i;:::-;14216:2;14211:3;14207:12;14200:19;;13859:366;;;:::o;14231:419::-;14397:4;14435:2;14424:9;14420:18;14412:26;;14484:9;14478:4;14474:20;14470:1;14459:9;14455:17;14448:47;14512:131;14638:4;14512:131;:::i;:::-;14504:139;;14231:419;;;:::o;14656:143::-;14713:5;14744:6;14738:13;14729:22;;14760:33;14787:5;14760:33;:::i;:::-;14656:143;;;;:::o;14805:351::-;14875:6;14924:2;14912:9;14903:7;14899:23;14895:32;14892:119;;;14930:79;;:::i;:::-;14892:119;15050:1;15075:64;15131:7;15122:6;15111:9;15107:22;15075:64;:::i;:::-;15065:74;;15021:128;14805:351;;;;:::o;15162:141::-;15211:4;15234:3;15226:11;;15257:3;15254:1;15247:14;15291:4;15288:1;15278:18;15270:26;;15162:141;;;:::o;15309:93::-;15346:6;15393:2;15388;15381:5;15377:14;15373:23;15363:33;;15309:93;;;:::o;15408:107::-;15452:8;15502:5;15496:4;15492:16;15471:37;;15408:107;;;;:::o;15521:393::-;15590:6;15640:1;15628:10;15624:18;15663:97;15693:66;15682:9;15663:97;:::i;:::-;15781:39;15811:8;15800:9;15781:39;:::i;:::-;15769:51;;15853:4;15849:9;15842:5;15838:21;15829:30;;15902:4;15892:8;15888:19;15881:5;15878:30;15868:40;;15597:317;;15521:393;;;;;:::o;15920:60::-;15948:3;15969:5;15962:12;;15920:60;;;:::o;15986:142::-;16036:9;16069:53;16087:34;16096:24;16114:5;16096:24;:::i;:::-;16087:34;:::i;:::-;16069:53;:::i;:::-;16056:66;;15986:142;;;:::o;16134:75::-;16177:3;16198:5;16191:12;;16134:75;;;:::o;16215:269::-;16325:39;16356:7;16325:39;:::i;:::-;16386:91;16435:41;16459:16;16435:41;:::i;:::-;16427:6;16420:4;16414:11;16386:91;:::i;:::-;16380:4;16373:105;16291:193;16215:269;;;:::o;16490:73::-;16535:3;16490:73;:::o;16569:189::-;16646:32;;:::i;:::-;16687:65;16745:6;16737;16731:4;16687:65;:::i;:::-;16622:136;16569:189;;:::o;16764:186::-;16824:120;16841:3;16834:5;16831:14;16824:120;;;16895:39;16932:1;16925:5;16895:39;:::i;:::-;16868:1;16861:5;16857:13;16848:22;;16824:120;;;16764:186;;:::o;16956:543::-;17057:2;17052:3;17049:11;17046:446;;;17091:38;17123:5;17091:38;:::i;:::-;17175:29;17193:10;17175:29;:::i;:::-;17165:8;17161:44;17358:2;17346:10;17343:18;17340:49;;;17379:8;17364:23;;17340:49;17402:80;17458:22;17476:3;17458:22;:::i;:::-;17448:8;17444:37;17431:11;17402:80;:::i;:::-;17061:431;;17046:446;16956:543;;;:::o;17505:117::-;17559:8;17609:5;17603:4;17599:16;17578:37;;17505:117;;;;:::o;17628:169::-;17672:6;17705:51;17753:1;17749:6;17741:5;17738:1;17734:13;17705:51;:::i;:::-;17701:56;17786:4;17780;17776:15;17766:25;;17679:118;17628:169;;;;:::o;17802:295::-;17878:4;18024:29;18049:3;18043:4;18024:29;:::i;:::-;18016:37;;18086:3;18083:1;18079:11;18073:4;18070:21;18062:29;;17802:295;;;;:::o;18102:1395::-;18219:37;18252:3;18219:37;:::i;:::-;18321:18;18313:6;18310:30;18307:56;;;18343:18;;:::i;:::-;18307:56;18387:38;18419:4;18413:11;18387:38;:::i;:::-;18472:67;18532:6;18524;18518:4;18472:67;:::i;:::-;18566:1;18590:4;18577:17;;18622:2;18614:6;18611:14;18639:1;18634:618;;;;19296:1;19313:6;19310:77;;;19362:9;19357:3;19353:19;19347:26;19338:35;;19310:77;19413:67;19473:6;19466:5;19413:67;:::i;:::-;19407:4;19400:81;19269:222;18604:887;;18634:618;18686:4;18682:9;18674:6;18670:22;18720:37;18752:4;18720:37;:::i;:::-;18779:1;18793:208;18807:7;18804:1;18801:14;18793:208;;;18886:9;18881:3;18877:19;18871:26;18863:6;18856:42;18937:1;18929:6;18925:14;18915:24;;18984:2;18973:9;18969:18;18956:31;;18830:4;18827:1;18823:12;18818:17;;18793:208;;;19029:6;19020:7;19017:19;19014:179;;;19087:9;19082:3;19078:19;19072:26;19130:48;19172:4;19164:6;19160:17;19149:9;19130:48;:::i;:::-;19122:6;19115:64;19037:156;19014:179;19239:1;19235;19227:6;19223:14;19219:22;19213:4;19206:36;18641:611;;;18604:887;;18194:1303;;;18102:1395;;:::o;19503:234::-;19643:34;19639:1;19631:6;19627:14;19620:58;19712:17;19707:2;19699:6;19695:15;19688:42;19503:234;:::o;19743:366::-;19885:3;19906:67;19970:2;19965:3;19906:67;:::i;:::-;19899:74;;19982:93;20071:3;19982:93;:::i;:::-;20100:2;20095:3;20091:12;20084:19;;19743:366;;;:::o;20115:419::-;20281:4;20319:2;20308:9;20304:18;20296:26;;20368:9;20362:4;20358:20;20354:1;20343:9;20339:17;20332:47;20396:131;20522:4;20396:131;:::i;:::-;20388:139;;20115:419;;;:::o;20540:221::-;20680:34;20676:1;20668:6;20664:14;20657:58;20749:4;20744:2;20736:6;20732:15;20725:29;20540:221;:::o;20767:366::-;20909:3;20930:67;20994:2;20989:3;20930:67;:::i;:::-;20923:74;;21006:93;21095:3;21006:93;:::i;:::-;21124:2;21119:3;21115:12;21108:19;;20767:366;;;:::o;21139:419::-;21305:4;21343:2;21332:9;21328:18;21320:26;;21392:9;21386:4;21382:20;21378:1;21367:9;21363:17;21356:47;21420:131;21546:4;21420:131;:::i;:::-;21412:139;;21139:419;;;:::o;21564:225::-;21704:34;21700:1;21692:6;21688:14;21681:58;21773:8;21768:2;21760:6;21756:15;21749:33;21564:225;:::o;21795:366::-;21937:3;21958:67;22022:2;22017:3;21958:67;:::i;:::-;21951:74;;22034:93;22123:3;22034:93;:::i;:::-;22152:2;22147:3;22143:12;22136:19;;21795:366;;;:::o;22167:419::-;22333:4;22371:2;22360:9;22356:18;22348:26;;22420:9;22414:4;22410:20;22406:1;22395:9;22391:17;22384:47;22448:131;22574:4;22448:131;:::i;:::-;22440:139;;22167:419;;;:::o;22592:181::-;22732:33;22728:1;22720:6;22716:14;22709:57;22592:181;:::o;22779:366::-;22921:3;22942:67;23006:2;23001:3;22942:67;:::i;:::-;22935:74;;23018:93;23107:3;23018:93;:::i;:::-;23136:2;23131:3;23127:12;23120:19;;22779:366;;;:::o;23151:419::-;23317:4;23355:2;23344:9;23340:18;23332:26;;23404:9;23398:4;23394:20;23390:1;23379:9;23375:17;23368:47;23432:131;23558:4;23432:131;:::i;:::-;23424:139;;23151:419;;;:::o;23576:182::-;23716:34;23712:1;23704:6;23700:14;23693:58;23576:182;:::o;23764:366::-;23906:3;23927:67;23991:2;23986:3;23927:67;:::i;:::-;23920:74;;24003:93;24092:3;24003:93;:::i;:::-;24121:2;24116:3;24112:12;24105:19;;23764:366;;;:::o;24136:419::-;24302:4;24340:2;24329:9;24325:18;24317:26;;24389:9;24383:4;24379:20;24375:1;24364:9;24360:17;24353:47;24417:131;24543:4;24417:131;:::i;:::-;24409:139;;24136:419;;;:::o;24561:98::-;24612:6;24646:5;24640:12;24630:22;;24561:98;;;:::o;24665:168::-;24748:11;24782:6;24777:3;24770:19;24822:4;24817:3;24813:14;24798:29;;24665:168;;;;:::o;24839:373::-;24925:3;24953:38;24985:5;24953:38;:::i;:::-;25007:70;25070:6;25065:3;25007:70;:::i;:::-;25000:77;;25086:65;25144:6;25139:3;25132:4;25125:5;25121:16;25086:65;:::i;:::-;25176:29;25198:6;25176:29;:::i;:::-;25171:3;25167:39;25160:46;;24929:283;24839:373;;;;:::o;25218:640::-;25413:4;25451:3;25440:9;25436:19;25428:27;;25465:71;25533:1;25522:9;25518:17;25509:6;25465:71;:::i;:::-;25546:72;25614:2;25603:9;25599:18;25590:6;25546:72;:::i;:::-;25628;25696:2;25685:9;25681:18;25672:6;25628:72;:::i;:::-;25747:9;25741:4;25737:20;25732:2;25721:9;25717:18;25710:48;25775:76;25846:4;25837:6;25775:76;:::i;:::-;25767:84;;25218:640;;;;;;;:::o;25864:141::-;25920:5;25951:6;25945:13;25936:22;;25967:32;25993:5;25967:32;:::i;:::-;25864:141;;;;:::o;26011:349::-;26080:6;26129:2;26117:9;26108:7;26104:23;26100:32;26097:119;;;26135:79;;:::i;:::-;26097:119;26255:1;26280:63;26335:7;26326:6;26315:9;26311:22;26280:63;:::i;:::-;26270:73;;26226:127;26011:349;;;;:::o

Swarm Source

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