ETH Price: $3,112.11 (+1.20%)
Gas: 4 Gwei

Token

Meme's World NFT (MEMEWRLD)
 

Overview

Max Total Supply

2,500 MEMEWRLD

Holders

906

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
2nice.eth
Balance
1 MEMEWRLD
0xc673a6f48d65050e25633bed838bf8587bff09c7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MemesWorld

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 2023-01-28
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}




pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// 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: @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: 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/MemesWorld.sol



pragma solidity ^0.8.0;







contract MemesWorld is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping (address => bool) public minterAddress;
    string public baseURI;  
    uint256 public price = 0;
    uint256 public maxSupply = 2500;
    uint256 public MINT_LIMIT = 10;
    bool public mintActive;
    mapping (address => uint256) public walletPublic;


    constructor () ERC721A("Meme's World NFT", "MEMEWRLD") {
        mintActive = false;
    }

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

    // Mint
        function Mint(uint256 numTokens) public payable {
        require(mintActive , "Mint is not active.");
        require(numTokens > 0 && numTokens <= MINT_LIMIT);
        require(totalSupply() + numTokens <= maxSupply);
        require(MINT_LIMIT >= numTokens, "Surpassed Mint Limit.");
        require(msg.value >= numTokens * price, "Invalid funds provided");
        _safeMint(msg.sender, numTokens);
    }


    // Contract Key Functions

    function mintSwitch() public onlyOwner {
        mintActive = !mintActive;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}
        function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
        
    }

        function setMaxMints(uint256 newMax) public onlyOwner {
        MINT_LIMIT = newMax;

    }


    // Opensea Filter Registry (Royalty Enforcement)

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b556109c4600c55600a600d553480156200002157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020017f4d656d65277320576f726c64204e4654000000000000000000000000000000008152506040518060400160405280600881526020017f4d454d4557524c440000000000000000000000000000000000000000000000008152508160029081620000b691906200066a565b508060039081620000c891906200066a565b50620000d96200031960201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d65780156200019c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200016292919062000796565b600060405180830381600087803b1580156200017d57600080fd5b505af115801562000192573d6000803e3d6000fd5b50505050620002d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000256576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021c92919062000796565b600060405180830381600087803b1580156200023757600080fd5b505af11580156200024c573d6000803e3d6000fd5b50505050620002d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200029f9190620007c3565b600060405180830381600087803b158015620002ba57600080fd5b505af1158015620002cf573d6000803e3d6000fd5b505050505b5b5b5050620002f8620002ec6200032260201b60201c565b6200032a60201b60201c565b6000600e60006101000a81548160ff021916908315150217905550620007e0565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047257607f821691505b6020821081036200048857620004876200042a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b3565b620004fe8683620004b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200054b620005456200053f8462000516565b62000520565b62000516565b9050919050565b6000819050919050565b62000567836200052a565b6200057f620005768262000552565b848454620004c0565b825550505050565b600090565b6200059662000587565b620005a38184846200055c565b505050565b5b81811015620005cb57620005bf6000826200058c565b600181019050620005a9565b5050565b601f8211156200061a57620005e4816200048e565b620005ef84620004a3565b81016020851015620005ff578190505b620006176200060e85620004a3565b830182620005a8565b50505b505050565b600082821c905092915050565b60006200063f600019846008026200061f565b1980831691505092915050565b60006200065a83836200062c565b9150826002028217905092915050565b6200067582620003f0565b67ffffffffffffffff811115620006915762000690620003fb565b5b6200069d825462000459565b620006aa828285620005cf565b600060209050601f831160018114620006e25760008415620006cd578287015190505b620006d985826200064c565b86555062000749565b601f198416620006f2866200048e565b60005b828110156200071c57848901518255600182019150602085019450602081019050620006f5565b868310156200073c578489015162000738601f8916826200062c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200077e8262000751565b9050919050565b620007908162000771565b82525050565b6000604082019050620007ad600083018562000785565b620007bc602083018462000785565b9392505050565b6000602082019050620007da600083018462000785565b92915050565b6131e380620007f06000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a035b1fe11610095578063d5abeb0111610064578063d5abeb0114610669578063e985e9c514610694578063eacb912d146106d1578063f2fde38b146106e8576101d8565b8063a035b1fe146105bc578063a22cb465146105e7578063b88d4fde14610610578063c87b56dd1461062c576101d8565b806379c9cb7b116100d157806379c9cb7b146105145780638da5cb5b1461053d57806391b7f5ed1461056857806395d89b4114610591576101d8565b80636352211e146104585780636c0360eb1461049557806370a08231146104c0578063715018a6146104fd576101d8565b806322ae7f7b1161017a5780632be905ba116101495780632be905ba146103ab57806341f43434146103e857806342842e0e1461041357806355f804b31461042f576101d8565b806322ae7f7b1461031057806323b872dd1461034d57806324600fc31461036957806325fd90f314610380576101d8565b806307883703116101b65780630788370314610270578063081812fc1461028c578063095ea7b3146102c957806318160ddd146102e5576101d8565b806301ffc9a7146101dd578063027752401461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612392565b610711565b60405161021191906123da565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c919061240e565b60405180910390f35b34801561025157600080fd5b5061025a6107a9565b60405161026791906124b9565b60405180910390f35b61028a60048036038101906102859190612507565b61083b565b005b34801561029857600080fd5b506102b360048036038101906102ae9190612507565b610968565b6040516102c09190612575565b60405180910390f35b6102e360048036038101906102de91906125bc565b6109e7565b005b3480156102f157600080fd5b506102fa610af1565b604051610307919061240e565b60405180910390f35b34801561031c57600080fd5b50610337600480360381019061033291906125fc565b610b08565b60405161034491906123da565b60405180910390f35b61036760048036038101906103629190612629565b610b28565b005b34801561037557600080fd5b5061037e610c78565b005b34801561038c57600080fd5b50610395610cc9565b6040516103a291906123da565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906125fc565b610cdc565b6040516103df919061240e565b60405180910390f35b3480156103f457600080fd5b506103fd610cf4565b60405161040a91906126db565b60405180910390f35b61042d60048036038101906104289190612629565b610d06565b005b34801561043b57600080fd5b506104566004803603810190610451919061282b565b610e56565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612507565b610e71565b60405161048c9190612575565b60405180910390f35b3480156104a157600080fd5b506104aa610e83565b6040516104b791906124b9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e291906125fc565b610f11565b6040516104f4919061240e565b60405180910390f35b34801561050957600080fd5b50610512610fc9565b005b34801561052057600080fd5b5061053b60048036038101906105369190612507565b610fdd565b005b34801561054957600080fd5b50610552610fef565b60405161055f9190612575565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612507565b611019565b005b34801561059d57600080fd5b506105a661102b565b6040516105b391906124b9565b60405180910390f35b3480156105c857600080fd5b506105d16110bd565b6040516105de919061240e565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906128a0565b6110c3565b005b61062a60048036038101906106259190612981565b6111cd565b005b34801561063857600080fd5b50610653600480360381019061064e9190612507565b611320565b60405161066091906124b9565b60405180910390f35b34801561067557600080fd5b5061067e6113be565b60405161068b919061240e565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612a04565b6113c4565b6040516106c891906123da565b60405180910390f35b3480156106dd57600080fd5b506106e6611458565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906125fc565b61148c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b6060600280546107b890612a73565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612a73565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1661088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190612af0565b60405180910390fd5b60008111801561089c5750600d548111155b6108a557600080fd5b600c54816108b1610af1565b6108bb9190612b3f565b11156108c657600080fd5b80600d54101561090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612bbf565b60405180910390fd5b600b54816109199190612bdf565b34101561095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290612c6d565b60405180910390fd5b610965338261150f565b50565b60006109738261152d565b6109a9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ae2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a5f929190612c8d565b602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa09190612ccb565b610ae157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ad89190612575565b60405180910390fd5b5b610aec838361158c565b505050565b6000610afb6116d0565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c66573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9a57610b958484846116d9565b610c72565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610be3929190612c8d565b602060405180830381865afa158015610c00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c249190612ccb565b610c6557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5c9190612575565b60405180910390fd5b5b610c718484846116d9565b5b50505050565b610c806119fb565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cc6573d6000803e3d6000fd5b50565b600e60009054906101000a900460ff1681565b600f6020528060005260406000206000915090505481565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e44573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7857610d73848484611a79565b610e50565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dc1929190612c8d565b602060405180830381865afa158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e029190612ccb565b610e4357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e3a9190612575565b60405180910390fd5b5b610e4f848484611a79565b5b50505050565b610e5e6119fb565b80600a9081610e6d9190612e9a565b5050565b6000610e7c82611a99565b9050919050565b600a8054610e9090612a73565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90612a73565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd16119fb565b610fdb6000611b65565b565b610fe56119fb565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110216119fb565b80600b8190555050565b60606003805461103a90612a73565b80601f016020809104026020016040519081016040528092919081815260200182805461106690612a73565b80156110b35780601f10611088576101008083540402835291602001916110b3565b820191906000526020600020905b81548152906001019060200180831161109657829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111be576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161113b929190612c8d565b602060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117c9190612ccb565b6111bd57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111b49190612575565b60405180910390fd5b5b6111c88383611c2b565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561130c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112405761123b85858585611d36565b611319565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611289929190612c8d565b602060405180830381865afa1580156112a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ca9190612ccb565b61130b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113029190612575565b60405180910390fd5b5b61131885858585611d36565b5b5050505050565b606061132b8261152d565b611361576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061136b611da9565b9050600081510361138b57604051806020016040528060008152506113b6565b8061139584611e3b565b6040516020016113a6929190612fa8565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114606119fb565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6114946119fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa9061303e565b60405180910390fd5b61150c81611b65565b50565b611529828260405180602001604052806000815250611e8b565b5050565b6000816115386116d0565b11158015611547575060005482105b8015611585575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061159782610e71565b90508073ffffffffffffffffffffffffffffffffffffffff166115b8611f28565b73ffffffffffffffffffffffffffffffffffffffff161461161b576115e4816115df611f28565b6113c4565b61161a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006116e482611a99565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461174b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061175784611f30565b9150915061176d8187611768611f28565b611f57565b6117b9576117828661177d611f28565b6113c4565b6117b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361181f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61182c8686866001611f9b565b801561183757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611905856118e1888887611fa1565b7c020000000000000000000000000000000000000000000000000000000017611fc9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361198b5760006001850190506000600460008381526020019081526020016000205403611989576000548114611988578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f38686866001611ff4565b505050505050565b611a03611ffa565b73ffffffffffffffffffffffffffffffffffffffff16611a21610fef565b73ffffffffffffffffffffffffffffffffffffffff1614611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e906130aa565b60405180910390fd5b565b611a94838383604051806020016040528060008152506111cd565b505050565b60008082905080611aa86116d0565b11611b2e57600054811015611b2d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b2b575b60008103611b21576004600083600190039350838152602001908152602001600020549050611af7565b8092505050611b60565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611c38611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce5611f28565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2a91906123da565b60405180910390a35050565b611d41848484610b28565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611da357611d6c84848484612002565b611da2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611db890612a73565b80601f0160208091040260200160405190810160405280929190818152602001828054611de490612a73565b8015611e315780601f10611e0657610100808354040283529160200191611e31565b820191906000526020600020905b815481529060010190602001808311611e1457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e7657600184039350600a81066030018453600a8104905080611e54575b50828103602084039350808452505050919050565b611e958383612152565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f2357600080549050600083820390505b611ed56000868380600101945086612002565b611f0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ec2578160005414611f2057600080fd5b50505b505050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fb886868461230d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612028611f28565b8786866040518563ffffffff1660e01b815260040161204a949392919061311f565b6020604051808303816000875af192505050801561208657506040513d601f19601f820116820180604052508101906120839190613180565b60015b6120ff573d80600081146120b6576040519150601f19603f3d011682016040523d82523d6000602084013e6120bb565b606091505b5060008151036120f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203612192576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61219f6000848385611f9b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612216836122076000866000611fa1565b61221085612316565b17611fc9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122b757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061227c565b50600082036122f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123086000848385611ff4565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61236f8161233a565b811461237a57600080fd5b50565b60008135905061238c81612366565b92915050565b6000602082840312156123a8576123a7612330565b5b60006123b68482850161237d565b91505092915050565b60008115159050919050565b6123d4816123bf565b82525050565b60006020820190506123ef60008301846123cb565b92915050565b6000819050919050565b612408816123f5565b82525050565b600060208201905061242360008301846123ff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612463578082015181840152602081019050612448565b60008484015250505050565b6000601f19601f8301169050919050565b600061248b82612429565b6124958185612434565b93506124a5818560208601612445565b6124ae8161246f565b840191505092915050565b600060208201905081810360008301526124d38184612480565b905092915050565b6124e4816123f5565b81146124ef57600080fd5b50565b600081359050612501816124db565b92915050565b60006020828403121561251d5761251c612330565b5b600061252b848285016124f2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061255f82612534565b9050919050565b61256f81612554565b82525050565b600060208201905061258a6000830184612566565b92915050565b61259981612554565b81146125a457600080fd5b50565b6000813590506125b681612590565b92915050565b600080604083850312156125d3576125d2612330565b5b60006125e1858286016125a7565b92505060206125f2858286016124f2565b9150509250929050565b60006020828403121561261257612611612330565b5b6000612620848285016125a7565b91505092915050565b60008060006060848603121561264257612641612330565b5b6000612650868287016125a7565b9350506020612661868287016125a7565b9250506040612672868287016124f2565b9150509250925092565b6000819050919050565b60006126a161269c61269784612534565b61267c565b612534565b9050919050565b60006126b382612686565b9050919050565b60006126c5826126a8565b9050919050565b6126d5816126ba565b82525050565b60006020820190506126f060008301846126cc565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127388261246f565b810181811067ffffffffffffffff8211171561275757612756612700565b5b80604052505050565b600061276a612326565b9050612776828261272f565b919050565b600067ffffffffffffffff82111561279657612795612700565b5b61279f8261246f565b9050602081019050919050565b82818337600083830152505050565b60006127ce6127c98461277b565b612760565b9050828152602081018484840111156127ea576127e96126fb565b5b6127f58482856127ac565b509392505050565b600082601f830112612812576128116126f6565b5b81356128228482602086016127bb565b91505092915050565b60006020828403121561284157612840612330565b5b600082013567ffffffffffffffff81111561285f5761285e612335565b5b61286b848285016127fd565b91505092915050565b61287d816123bf565b811461288857600080fd5b50565b60008135905061289a81612874565b92915050565b600080604083850312156128b7576128b6612330565b5b60006128c5858286016125a7565b92505060206128d68582860161288b565b9150509250929050565b600067ffffffffffffffff8211156128fb576128fa612700565b5b6129048261246f565b9050602081019050919050565b600061292461291f846128e0565b612760565b9050828152602081018484840111156129405761293f6126fb565b5b61294b8482856127ac565b509392505050565b600082601f830112612968576129676126f6565b5b8135612978848260208601612911565b91505092915050565b6000806000806080858703121561299b5761299a612330565b5b60006129a9878288016125a7565b94505060206129ba878288016125a7565b93505060406129cb878288016124f2565b925050606085013567ffffffffffffffff8111156129ec576129eb612335565b5b6129f887828801612953565b91505092959194509250565b60008060408385031215612a1b57612a1a612330565b5b6000612a29858286016125a7565b9250506020612a3a858286016125a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a8b57607f821691505b602082108103612a9e57612a9d612a44565b5b50919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000612ada601383612434565b9150612ae582612aa4565b602082019050919050565b60006020820190508181036000830152612b0981612acd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4a826123f5565b9150612b55836123f5565b9250828201905080821115612b6d57612b6c612b10565b5b92915050565b7f537572706173736564204d696e74204c696d69742e0000000000000000000000600082015250565b6000612ba9601583612434565b9150612bb482612b73565b602082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b6000612bea826123f5565b9150612bf5836123f5565b9250828202612c03816123f5565b91508282048414831517612c1a57612c19612b10565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612c57601683612434565b9150612c6282612c21565b602082019050919050565b60006020820190508181036000830152612c8681612c4a565b9050919050565b6000604082019050612ca26000830185612566565b612caf6020830184612566565b9392505050565b600081519050612cc581612874565b92915050565b600060208284031215612ce157612ce0612330565b5b6000612cef84828501612cb6565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d1d565b612d648683612d1d565b95508019841693508086168417925050509392505050565b6000612d97612d92612d8d846123f5565b61267c565b6123f5565b9050919050565b6000819050919050565b612db183612d7c565b612dc5612dbd82612d9e565b848454612d2a565b825550505050565b600090565b612dda612dcd565b612de5818484612da8565b505050565b5b81811015612e0957612dfe600082612dd2565b600181019050612deb565b5050565b601f821115612e4e57612e1f81612cf8565b612e2884612d0d565b81016020851015612e37578190505b612e4b612e4385612d0d565b830182612dea565b50505b505050565b600082821c905092915050565b6000612e7160001984600802612e53565b1980831691505092915050565b6000612e8a8383612e60565b9150826002028217905092915050565b612ea382612429565b67ffffffffffffffff811115612ebc57612ebb612700565b5b612ec68254612a73565b612ed1828285612e0d565b600060209050601f831160018114612f045760008415612ef2578287015190505b612efc8582612e7e565b865550612f64565b601f198416612f1286612cf8565b60005b82811015612f3a57848901518255600182019150602085019450602081019050612f15565b86831015612f575784890151612f53601f891682612e60565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612f8282612429565b612f8c8185612f6c565b9350612f9c818560208601612445565b80840191505092915050565b6000612fb48285612f77565b9150612fc08284612f77565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613028602683612434565b915061303382612fcc565b604082019050919050565b600060208201905081810360008301526130578161301b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613094602083612434565b915061309f8261305e565b602082019050919050565b600060208201905081810360008301526130c381613087565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130f1826130ca565b6130fb81856130d5565b935061310b818560208601612445565b6131148161246f565b840191505092915050565b60006080820190506131346000830187612566565b6131416020830186612566565b61314e60408301856123ff565b818103606083015261316081846130e6565b905095945050505050565b60008151905061317a81612366565b92915050565b60006020828403121561319657613195612330565b5b60006131a48482850161316b565b9150509291505056fea2646970667358221220d0c30dd048c27a7c54bf6bc1da1654e74dc648b70b8284e03d88cab82359426864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a035b1fe11610095578063d5abeb0111610064578063d5abeb0114610669578063e985e9c514610694578063eacb912d146106d1578063f2fde38b146106e8576101d8565b8063a035b1fe146105bc578063a22cb465146105e7578063b88d4fde14610610578063c87b56dd1461062c576101d8565b806379c9cb7b116100d157806379c9cb7b146105145780638da5cb5b1461053d57806391b7f5ed1461056857806395d89b4114610591576101d8565b80636352211e146104585780636c0360eb1461049557806370a08231146104c0578063715018a6146104fd576101d8565b806322ae7f7b1161017a5780632be905ba116101495780632be905ba146103ab57806341f43434146103e857806342842e0e1461041357806355f804b31461042f576101d8565b806322ae7f7b1461031057806323b872dd1461034d57806324600fc31461036957806325fd90f314610380576101d8565b806307883703116101b65780630788370314610270578063081812fc1461028c578063095ea7b3146102c957806318160ddd146102e5576101d8565b806301ffc9a7146101dd578063027752401461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612392565b610711565b60405161021191906123da565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c919061240e565b60405180910390f35b34801561025157600080fd5b5061025a6107a9565b60405161026791906124b9565b60405180910390f35b61028a60048036038101906102859190612507565b61083b565b005b34801561029857600080fd5b506102b360048036038101906102ae9190612507565b610968565b6040516102c09190612575565b60405180910390f35b6102e360048036038101906102de91906125bc565b6109e7565b005b3480156102f157600080fd5b506102fa610af1565b604051610307919061240e565b60405180910390f35b34801561031c57600080fd5b50610337600480360381019061033291906125fc565b610b08565b60405161034491906123da565b60405180910390f35b61036760048036038101906103629190612629565b610b28565b005b34801561037557600080fd5b5061037e610c78565b005b34801561038c57600080fd5b50610395610cc9565b6040516103a291906123da565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906125fc565b610cdc565b6040516103df919061240e565b60405180910390f35b3480156103f457600080fd5b506103fd610cf4565b60405161040a91906126db565b60405180910390f35b61042d60048036038101906104289190612629565b610d06565b005b34801561043b57600080fd5b506104566004803603810190610451919061282b565b610e56565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612507565b610e71565b60405161048c9190612575565b60405180910390f35b3480156104a157600080fd5b506104aa610e83565b6040516104b791906124b9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e291906125fc565b610f11565b6040516104f4919061240e565b60405180910390f35b34801561050957600080fd5b50610512610fc9565b005b34801561052057600080fd5b5061053b60048036038101906105369190612507565b610fdd565b005b34801561054957600080fd5b50610552610fef565b60405161055f9190612575565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612507565b611019565b005b34801561059d57600080fd5b506105a661102b565b6040516105b391906124b9565b60405180910390f35b3480156105c857600080fd5b506105d16110bd565b6040516105de919061240e565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906128a0565b6110c3565b005b61062a60048036038101906106259190612981565b6111cd565b005b34801561063857600080fd5b50610653600480360381019061064e9190612507565b611320565b60405161066091906124b9565b60405180910390f35b34801561067557600080fd5b5061067e6113be565b60405161068b919061240e565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612a04565b6113c4565b6040516106c891906123da565b60405180910390f35b3480156106dd57600080fd5b506106e6611458565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906125fc565b61148c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b6060600280546107b890612a73565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612a73565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1661088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190612af0565b60405180910390fd5b60008111801561089c5750600d548111155b6108a557600080fd5b600c54816108b1610af1565b6108bb9190612b3f565b11156108c657600080fd5b80600d54101561090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612bbf565b60405180910390fd5b600b54816109199190612bdf565b34101561095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290612c6d565b60405180910390fd5b610965338261150f565b50565b60006109738261152d565b6109a9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ae2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a5f929190612c8d565b602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa09190612ccb565b610ae157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ad89190612575565b60405180910390fd5b5b610aec838361158c565b505050565b6000610afb6116d0565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c66573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9a57610b958484846116d9565b610c72565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610be3929190612c8d565b602060405180830381865afa158015610c00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c249190612ccb565b610c6557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5c9190612575565b60405180910390fd5b5b610c718484846116d9565b5b50505050565b610c806119fb565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cc6573d6000803e3d6000fd5b50565b600e60009054906101000a900460ff1681565b600f6020528060005260406000206000915090505481565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e44573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7857610d73848484611a79565b610e50565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dc1929190612c8d565b602060405180830381865afa158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e029190612ccb565b610e4357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e3a9190612575565b60405180910390fd5b5b610e4f848484611a79565b5b50505050565b610e5e6119fb565b80600a9081610e6d9190612e9a565b5050565b6000610e7c82611a99565b9050919050565b600a8054610e9090612a73565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90612a73565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd16119fb565b610fdb6000611b65565b565b610fe56119fb565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110216119fb565b80600b8190555050565b60606003805461103a90612a73565b80601f016020809104026020016040519081016040528092919081815260200182805461106690612a73565b80156110b35780601f10611088576101008083540402835291602001916110b3565b820191906000526020600020905b81548152906001019060200180831161109657829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111be576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161113b929190612c8d565b602060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117c9190612ccb565b6111bd57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111b49190612575565b60405180910390fd5b5b6111c88383611c2b565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561130c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112405761123b85858585611d36565b611319565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611289929190612c8d565b602060405180830381865afa1580156112a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ca9190612ccb565b61130b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113029190612575565b60405180910390fd5b5b61131885858585611d36565b5b5050505050565b606061132b8261152d565b611361576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061136b611da9565b9050600081510361138b57604051806020016040528060008152506113b6565b8061139584611e3b565b6040516020016113a6929190612fa8565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114606119fb565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6114946119fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa9061303e565b60405180910390fd5b61150c81611b65565b50565b611529828260405180602001604052806000815250611e8b565b5050565b6000816115386116d0565b11158015611547575060005482105b8015611585575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061159782610e71565b90508073ffffffffffffffffffffffffffffffffffffffff166115b8611f28565b73ffffffffffffffffffffffffffffffffffffffff161461161b576115e4816115df611f28565b6113c4565b61161a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006116e482611a99565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461174b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061175784611f30565b9150915061176d8187611768611f28565b611f57565b6117b9576117828661177d611f28565b6113c4565b6117b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361181f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61182c8686866001611f9b565b801561183757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611905856118e1888887611fa1565b7c020000000000000000000000000000000000000000000000000000000017611fc9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361198b5760006001850190506000600460008381526020019081526020016000205403611989576000548114611988578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f38686866001611ff4565b505050505050565b611a03611ffa565b73ffffffffffffffffffffffffffffffffffffffff16611a21610fef565b73ffffffffffffffffffffffffffffffffffffffff1614611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e906130aa565b60405180910390fd5b565b611a94838383604051806020016040528060008152506111cd565b505050565b60008082905080611aa86116d0565b11611b2e57600054811015611b2d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b2b575b60008103611b21576004600083600190039350838152602001908152602001600020549050611af7565b8092505050611b60565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611c38611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce5611f28565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2a91906123da565b60405180910390a35050565b611d41848484610b28565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611da357611d6c84848484612002565b611da2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611db890612a73565b80601f0160208091040260200160405190810160405280929190818152602001828054611de490612a73565b8015611e315780601f10611e0657610100808354040283529160200191611e31565b820191906000526020600020905b815481529060010190602001808311611e1457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e7657600184039350600a81066030018453600a8104905080611e54575b50828103602084039350808452505050919050565b611e958383612152565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f2357600080549050600083820390505b611ed56000868380600101945086612002565b611f0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ec2578160005414611f2057600080fd5b50505b505050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fb886868461230d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612028611f28565b8786866040518563ffffffff1660e01b815260040161204a949392919061311f565b6020604051808303816000875af192505050801561208657506040513d601f19601f820116820180604052508101906120839190613180565b60015b6120ff573d80600081146120b6576040519150601f19603f3d011682016040523d82523d6000602084013e6120bb565b606091505b5060008151036120f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203612192576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61219f6000848385611f9b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612216836122076000866000611fa1565b61221085612316565b17611fc9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122b757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061227c565b50600082036122f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123086000848385611ff4565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61236f8161233a565b811461237a57600080fd5b50565b60008135905061238c81612366565b92915050565b6000602082840312156123a8576123a7612330565b5b60006123b68482850161237d565b91505092915050565b60008115159050919050565b6123d4816123bf565b82525050565b60006020820190506123ef60008301846123cb565b92915050565b6000819050919050565b612408816123f5565b82525050565b600060208201905061242360008301846123ff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612463578082015181840152602081019050612448565b60008484015250505050565b6000601f19601f8301169050919050565b600061248b82612429565b6124958185612434565b93506124a5818560208601612445565b6124ae8161246f565b840191505092915050565b600060208201905081810360008301526124d38184612480565b905092915050565b6124e4816123f5565b81146124ef57600080fd5b50565b600081359050612501816124db565b92915050565b60006020828403121561251d5761251c612330565b5b600061252b848285016124f2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061255f82612534565b9050919050565b61256f81612554565b82525050565b600060208201905061258a6000830184612566565b92915050565b61259981612554565b81146125a457600080fd5b50565b6000813590506125b681612590565b92915050565b600080604083850312156125d3576125d2612330565b5b60006125e1858286016125a7565b92505060206125f2858286016124f2565b9150509250929050565b60006020828403121561261257612611612330565b5b6000612620848285016125a7565b91505092915050565b60008060006060848603121561264257612641612330565b5b6000612650868287016125a7565b9350506020612661868287016125a7565b9250506040612672868287016124f2565b9150509250925092565b6000819050919050565b60006126a161269c61269784612534565b61267c565b612534565b9050919050565b60006126b382612686565b9050919050565b60006126c5826126a8565b9050919050565b6126d5816126ba565b82525050565b60006020820190506126f060008301846126cc565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127388261246f565b810181811067ffffffffffffffff8211171561275757612756612700565b5b80604052505050565b600061276a612326565b9050612776828261272f565b919050565b600067ffffffffffffffff82111561279657612795612700565b5b61279f8261246f565b9050602081019050919050565b82818337600083830152505050565b60006127ce6127c98461277b565b612760565b9050828152602081018484840111156127ea576127e96126fb565b5b6127f58482856127ac565b509392505050565b600082601f830112612812576128116126f6565b5b81356128228482602086016127bb565b91505092915050565b60006020828403121561284157612840612330565b5b600082013567ffffffffffffffff81111561285f5761285e612335565b5b61286b848285016127fd565b91505092915050565b61287d816123bf565b811461288857600080fd5b50565b60008135905061289a81612874565b92915050565b600080604083850312156128b7576128b6612330565b5b60006128c5858286016125a7565b92505060206128d68582860161288b565b9150509250929050565b600067ffffffffffffffff8211156128fb576128fa612700565b5b6129048261246f565b9050602081019050919050565b600061292461291f846128e0565b612760565b9050828152602081018484840111156129405761293f6126fb565b5b61294b8482856127ac565b509392505050565b600082601f830112612968576129676126f6565b5b8135612978848260208601612911565b91505092915050565b6000806000806080858703121561299b5761299a612330565b5b60006129a9878288016125a7565b94505060206129ba878288016125a7565b93505060406129cb878288016124f2565b925050606085013567ffffffffffffffff8111156129ec576129eb612335565b5b6129f887828801612953565b91505092959194509250565b60008060408385031215612a1b57612a1a612330565b5b6000612a29858286016125a7565b9250506020612a3a858286016125a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a8b57607f821691505b602082108103612a9e57612a9d612a44565b5b50919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000612ada601383612434565b9150612ae582612aa4565b602082019050919050565b60006020820190508181036000830152612b0981612acd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4a826123f5565b9150612b55836123f5565b9250828201905080821115612b6d57612b6c612b10565b5b92915050565b7f537572706173736564204d696e74204c696d69742e0000000000000000000000600082015250565b6000612ba9601583612434565b9150612bb482612b73565b602082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b6000612bea826123f5565b9150612bf5836123f5565b9250828202612c03816123f5565b91508282048414831517612c1a57612c19612b10565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612c57601683612434565b9150612c6282612c21565b602082019050919050565b60006020820190508181036000830152612c8681612c4a565b9050919050565b6000604082019050612ca26000830185612566565b612caf6020830184612566565b9392505050565b600081519050612cc581612874565b92915050565b600060208284031215612ce157612ce0612330565b5b6000612cef84828501612cb6565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d1d565b612d648683612d1d565b95508019841693508086168417925050509392505050565b6000612d97612d92612d8d846123f5565b61267c565b6123f5565b9050919050565b6000819050919050565b612db183612d7c565b612dc5612dbd82612d9e565b848454612d2a565b825550505050565b600090565b612dda612dcd565b612de5818484612da8565b505050565b5b81811015612e0957612dfe600082612dd2565b600181019050612deb565b5050565b601f821115612e4e57612e1f81612cf8565b612e2884612d0d565b81016020851015612e37578190505b612e4b612e4385612d0d565b830182612dea565b50505b505050565b600082821c905092915050565b6000612e7160001984600802612e53565b1980831691505092915050565b6000612e8a8383612e60565b9150826002028217905092915050565b612ea382612429565b67ffffffffffffffff811115612ebc57612ebb612700565b5b612ec68254612a73565b612ed1828285612e0d565b600060209050601f831160018114612f045760008415612ef2578287015190505b612efc8582612e7e565b865550612f64565b601f198416612f1286612cf8565b60005b82811015612f3a57848901518255600182019150602085019450602081019050612f15565b86831015612f575784890151612f53601f891682612e60565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612f8282612429565b612f8c8185612f6c565b9350612f9c818560208601612445565b80840191505092915050565b6000612fb48285612f77565b9150612fc08284612f77565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613028602683612434565b915061303382612fcc565b604082019050919050565b600060208201905081810360008301526130578161301b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613094602083612434565b915061309f8261305e565b602082019050919050565b600060208201905081810360008301526130c381613087565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130f1826130ca565b6130fb81856130d5565b935061310b818560208601612445565b6131148161246f565b840191505092915050565b60006080820190506131346000830187612566565b6131416020830186612566565b61314e60408301856123ff565b818103606083015261316081846130e6565b905095945050505050565b60008151905061317a81612366565b92915050565b60006020828403121561319657613195612330565b5b60006131a48482850161316b565b9150509291505056fea2646970667358221220d0c30dd048c27a7c54bf6bc1da1654e74dc648b70b8284e03d88cab82359426864736f6c63430008110033

Deployed Bytecode Sourcemap

63703:2713:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30592:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63929:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31494:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64280:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37985:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65629:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27245:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63777:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65802:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65040:113;;;;;;;;;;;;;:::i;:::-;;63966:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63995:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2835:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65981:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65163:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32887:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63830:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28429:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8425:103;;;;;;;;;;;;;:::i;:::-;;65285:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7777:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64828:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31670:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63860:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65445:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66168:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31880:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63891:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38934:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64738:82;;;;;;;;;;;;;:::i;:::-;;8683:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30592:639;30677:4;31016:10;31001:25;;:11;:25;;;;:102;;;;31093:10;31078:25;;:11;:25;;;;31001:102;:179;;;;31170:10;31155:25;;:11;:25;;;;31001:179;30981:199;;30592:639;;;:::o;63929:30::-;;;;:::o;31494:100::-;31548:13;31581:5;31574:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31494:100;:::o;64280:415::-;64347:10;;;;;;;;;;;64339:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64413:1;64401:9;:13;:40;;;;;64431:10;;64418:9;:23;;64401:40;64393:49;;;;;;64490:9;;64477;64461:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;64453:47;;;;;;64533:9;64519:10;;:23;;64511:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;64612:5;;64600:9;:17;;;;:::i;:::-;64587:9;:30;;64579:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64655:32;64665:10;64677:9;64655;:32::i;:::-;64280:415;:::o;37985:218::-;38061:7;38086:16;38094:7;38086;:16::i;:::-;38081:64;;38111:34;;;;;;;;;;;;;;38081:64;38165:15;:24;38181:7;38165:24;;;;;;;;;;;:30;;;;;;;;;;;;38158:37;;37985:218;;;:::o;65629:165::-;65733:8;4877:1;2935:42;4829:45;;;:49;4825:225;;;2935:42;4900;;;4951:4;4958:8;4900:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4895:144;;5014:8;4995:28;;;;;;;;;;;:::i;:::-;;;;;;;;4895:144;4825:225;65754:32:::1;65768:8;65778:7;65754:13;:32::i;:::-;65629:165:::0;;;:::o;27245:323::-;27306:7;27534:15;:13;:15::i;:::-;27519:12;;27503:13;;:28;:46;27496:53;;27245:323;:::o;63777:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;65802:171::-;65911:4;4131:1;2935:42;4083:45;;;:49;4079:539;;;4372:10;4364:18;;:4;:18;;;4360:85;;65928:37:::1;65947:4;65953:2;65957:7;65928:18;:37::i;:::-;4423:7:::0;;4360:85;2935:42;4464;;;4515:4;4522:10;4464:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4459:148;;4580:10;4561:30;;;;;;;;;;;:::i;:::-;;;;;;;;4459:148;4079:539;65928:37:::1;65947:4;65953:2;65957:7;65928:18;:37::i;:::-;65802:171:::0;;;;;:::o;65040:113::-;7663:13;:11;:13::i;:::-;65095:10:::1;65087:28;;:51;65116:21;65087:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65040:113::o:0;63966:22::-;;;;;;;;;;;;;:::o;63995:48::-;;;;;;;;;;;;;;;;;:::o;2835:143::-;2935:42;2835:143;:::o;65981:179::-;66094:4;4131:1;2935:42;4083:45;;;:49;4079:539;;;4372:10;4364:18;;:4;:18;;;4360:85;;66111:41:::1;66134:4;66140:2;66144:7;66111:22;:41::i;:::-;4423:7:::0;;4360:85;2935:42;4464;;;4515:4;4522:10;4464:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4459:148;;4580:10;4561:30;;;;;;;;;;;:::i;:::-;;;;;;;;4459:148;4079:539;66111:41:::1;66134:4;66140:2;66144:7;66111:22;:41::i;:::-;65981:179:::0;;;;;:::o;65163:110::-;7663:13;:11;:13::i;:::-;65247:8:::1;65237:7;:18;;;;;;:::i;:::-;;65163:110:::0;:::o;32887:152::-;32959:7;33002:27;33021:7;33002:18;:27::i;:::-;32979:52;;32887:152;;;:::o;63830:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28429:233::-;28501:7;28542:1;28525:19;;:5;:19;;;28521:60;;28553:28;;;;;;;;;;;;;;28521:60;22588:13;28599:18;:25;28618:5;28599:25;;;;;;;;;;;;;;;;:55;28592:62;;28429:233;;;:::o;8425:103::-;7663:13;:11;:13::i;:::-;8490:30:::1;8517:1;8490:18;:30::i;:::-;8425:103::o:0;65285:94::-;7663:13;:11;:13::i;:::-;65363:6:::1;65350:10;:19;;;;65285:94:::0;:::o;7777:87::-;7823:7;7850:6;;;;;;;;;;;7843:13;;7777:87;:::o;64828:88::-;7663:13;:11;:13::i;:::-;64900:8:::1;64892:5;:16;;;;64828:88:::0;:::o;31670:104::-;31726:13;31759:7;31752:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31670:104;:::o;63860:24::-;;;;:::o;65445:176::-;65549:8;4877:1;2935:42;4829:45;;;:49;4825:225;;;2935:42;4900;;;4951:4;4958:8;4900:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4895:144;;5014:8;4995:28;;;;;;;;;;;:::i;:::-;;;;;;;;4895:144;4825:225;65570:43:::1;65594:8;65604;65570:23;:43::i;:::-;65445:176:::0;;;:::o;66168:245::-;66336:4;4131:1;2935:42;4083:45;;;:49;4079:539;;;4372:10;4364:18;;:4;:18;;;4360:85;;66358:47:::1;66381:4;66387:2;66391:7;66400:4;66358:22;:47::i;:::-;4423:7:::0;;4360:85;2935:42;4464;;;4515:4;4522:10;4464:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4459:148;;4580:10;4561:30;;;;;;;;;;;:::i;:::-;;;;;;;;4459:148;4079:539;66358:47:::1;66381:4;66387:2;66391:7;66400:4;66358:22;:47::i;:::-;66168:245:::0;;;;;;:::o;31880:318::-;31953:13;31984:16;31992:7;31984;:16::i;:::-;31979:59;;32009:29;;;;;;;;;;;;;;31979:59;32051:21;32075:10;:8;:10::i;:::-;32051:34;;32128:1;32109:7;32103:21;:26;:87;;;;;;;;;;;;;;;;;32156:7;32165:18;32175:7;32165:9;:18::i;:::-;32139:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32103:87;32096:94;;;31880:318;;;:::o;63891:31::-;;;;:::o;38934:164::-;39031:4;39055:18;:25;39074:5;39055:25;;;;;;;;;;;;;;;:35;39081:8;39055:35;;;;;;;;;;;;;;;;;;;;;;;;;39048:42;;38934:164;;;;:::o;64738:82::-;7663:13;:11;:13::i;:::-;64802:10:::1;;;;;;;;;;;64801:11;64788:10;;:24;;;;;;;;;;;;;;;;;;64738:82::o:0;8683:201::-;7663:13;:11;:13::i;:::-;8792:1:::1;8772:22;;:8;:22;;::::0;8764:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8848:28;8867:8;8848:18;:28::i;:::-;8683:201:::0;:::o;55496:112::-;55573:27;55583:2;55587:8;55573:27;;;;;;;;;;;;:9;:27::i;:::-;55496:112;;:::o;39356:282::-;39421:4;39477:7;39458:15;:13;:15::i;:::-;:26;;:66;;;;;39511:13;;39501:7;:23;39458:66;:153;;;;;39610:1;23364:8;39562:17;:26;39580:7;39562:26;;;;;;;;;;;;:44;:49;39458:153;39438:173;;39356:282;;;:::o;37418:408::-;37507:13;37523:16;37531:7;37523;:16::i;:::-;37507:32;;37579:5;37556:28;;:19;:17;:19::i;:::-;:28;;;37552:175;;37604:44;37621:5;37628:19;:17;:19::i;:::-;37604:16;:44::i;:::-;37599:128;;37676:35;;;;;;;;;;;;;;37599:128;37552:175;37772:2;37739:15;:24;37755:7;37739:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37810:7;37806:2;37790:28;;37799:5;37790:28;;;;;;;;;;;;37496:330;37418:408;;:::o;64154:101::-;64219:7;64246:1;64239:8;;64154:101;:::o;41624:2825::-;41766:27;41796;41815:7;41796:18;:27::i;:::-;41766:57;;41881:4;41840:45;;41856:19;41840:45;;;41836:86;;41894:28;;;;;;;;;;;;;;41836:86;41936:27;41965:23;41992:35;42019:7;41992:26;:35::i;:::-;41935:92;;;;42127:68;42152:15;42169:4;42175:19;:17;:19::i;:::-;42127:24;:68::i;:::-;42122:180;;42215:43;42232:4;42238:19;:17;:19::i;:::-;42215:16;:43::i;:::-;42210:92;;42267:35;;;;;;;;;;;;;;42210:92;42122:180;42333:1;42319:16;;:2;:16;;;42315:52;;42344:23;;;;;;;;;;;;;;42315:52;42380:43;42402:4;42408:2;42412:7;42421:1;42380:21;:43::i;:::-;42516:15;42513:160;;;42656:1;42635:19;42628:30;42513:160;43053:18;:24;43072:4;43053:24;;;;;;;;;;;;;;;;43051:26;;;;;;;;;;;;43122:18;:22;43141:2;43122:22;;;;;;;;;;;;;;;;43120:24;;;;;;;;;;;43444:146;43481:2;43530:45;43545:4;43551:2;43555:19;43530:14;:45::i;:::-;23644:8;43502:73;43444:18;:146::i;:::-;43415:17;:26;43433:7;43415:26;;;;;;;;;;;:175;;;;43761:1;23644:8;43710:19;:47;:52;43706:627;;43783:19;43815:1;43805:7;:11;43783:33;;43972:1;43938:17;:30;43956:11;43938:30;;;;;;;;;;;;:35;43934:384;;44076:13;;44061:11;:28;44057:242;;44256:19;44223:17;:30;44241:11;44223:30;;;;;;;;;;;:52;;;;44057:242;43934:384;43764:569;43706:627;44380:7;44376:2;44361:27;;44370:4;44361:27;;;;;;;;;;;;44399:42;44420:4;44426:2;44430:7;44439:1;44399:20;:42::i;:::-;41755:2694;;;41624:2825;;;:::o;7942:132::-;8017:12;:10;:12::i;:::-;8006:23;;:7;:5;:7::i;:::-;:23;;;7998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7942:132::o;44545:193::-;44691:39;44708:4;44714:2;44718:7;44691:39;;;;;;;;;;;;:16;:39::i;:::-;44545:193;;;:::o;34042:1275::-;34109:7;34129:12;34144:7;34129:22;;34212:4;34193:15;:13;:15::i;:::-;:23;34189:1061;;34246:13;;34239:4;:20;34235:1015;;;34284:14;34301:17;:23;34319:4;34301:23;;;;;;;;;;;;34284:40;;34418:1;23364:8;34390:6;:24;:29;34386:845;;35055:113;35072:1;35062:6;:11;35055:113;;35115:17;:25;35133:6;;;;;;;35115:25;;;;;;;;;;;;35106:34;;35055:113;;;35201:6;35194:13;;;;;;34386:845;34261:989;34235:1015;34189:1061;35278:31;;;;;;;;;;;;;;34042:1275;;;;:::o;9044:191::-;9118:16;9137:6;;;;;;;;;;;9118:25;;9163:8;9154:6;;:17;;;;;;;;;;;;;;;;;;9218:8;9187:40;;9208:8;9187:40;;;;;;;;;;;;9107:128;9044:191;:::o;38543:234::-;38690:8;38638:18;:39;38657:19;:17;:19::i;:::-;38638:39;;;;;;;;;;;;;;;:49;38678:8;38638:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38750:8;38714:55;;38729:19;:17;:19::i;:::-;38714:55;;;38760:8;38714:55;;;;;;:::i;:::-;;;;;;;;38543:234;;:::o;45336:407::-;45511:31;45524:4;45530:2;45534:7;45511:12;:31::i;:::-;45575:1;45557:2;:14;;;:19;45553:183;;45596:56;45627:4;45633:2;45637:7;45646:5;45596:30;:56::i;:::-;45591:145;;45680:40;;;;;;;;;;;;;;45591:145;45553:183;45336:407;;;;:::o;64924:108::-;64984:13;65017:7;65010:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64924:108;:::o;61871:1745::-;61936:17;62370:4;62363;62357:11;62353:22;62462:1;62456:4;62449:15;62537:4;62534:1;62530:12;62523:19;;62619:1;62614:3;62607:14;62723:3;62962:5;62944:428;62970:1;62944:428;;;63010:1;63005:3;63001:11;62994:18;;63181:2;63175:4;63171:13;63167:2;63163:22;63158:3;63150:36;63275:2;63269:4;63265:13;63257:21;;63342:4;62944:428;63332:25;62944:428;62948:21;63411:3;63406;63402:13;63526:4;63521:3;63517:14;63510:21;;63591:6;63586:3;63579:19;61975:1634;;;61871:1745;;;:::o;54723:689::-;54854:19;54860:2;54864:8;54854:5;:19::i;:::-;54933:1;54915:2;:14;;;:19;54911:483;;54955:11;54969:13;;54955:27;;55001:13;55023:8;55017:3;:14;55001:30;;55050:233;55081:62;55120:1;55124:2;55128:7;;;;;;55137:5;55081:30;:62::i;:::-;55076:167;;55179:40;;;;;;;;;;;;;;55076:167;55278:3;55270:5;:11;55050:233;;55365:3;55348:13;;:20;55344:34;;55370:8;;;55344:34;54936:458;;54911:483;54723:689;;;:::o;61664:105::-;61724:7;61751:10;61744:17;;61664:105;:::o;40519:485::-;40621:27;40650:23;40691:38;40732:15;:24;40748:7;40732:24;;;;;;;;;;;40691:65;;40909:18;40886:41;;40966:19;40960:26;40941:45;;40871:126;40519:485;;;:::o;39747:659::-;39896:11;40061:16;40054:5;40050:28;40041:37;;40221:16;40210:9;40206:32;40193:45;;40371:15;40360:9;40357:30;40349:5;40338:9;40335:20;40332:56;40322:66;;39747:659;;;;;:::o;46405:159::-;;;;;:::o;60973:311::-;61108:7;61128:16;23768:3;61154:19;:41;;61128:68;;23768:3;61222:31;61233:4;61239:2;61243:9;61222:10;:31::i;:::-;61214:40;;:62;;61207:69;;;60973:311;;;;;:::o;35865:450::-;35945:14;36113:16;36106:5;36102:28;36093:37;;36290:5;36276:11;36251:23;36247:41;36244:52;36237:5;36234:63;36224:73;;35865:450;;;;:::o;47229:158::-;;;;;:::o;6328:98::-;6381:7;6408:10;6401:17;;6328:98;:::o;47827:716::-;47990:4;48036:2;48011:45;;;48057:19;:17;:19::i;:::-;48078:4;48084:7;48093:5;48011:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48007:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48311:1;48294:6;:13;:18;48290:235;;48340:40;;;;;;;;;;;;;;48290:235;48483:6;48477:13;48468:6;48464:2;48460:15;48453:38;48007:529;48180:54;;;48170:64;;;:6;:64;;;;48163:71;;;47827:716;;;;;;:::o;49005:2966::-;49078:20;49101:13;;49078:36;;49141:1;49129:8;:13;49125:44;;49151:18;;;;;;;;;;;;;;49125:44;49182:61;49212:1;49216:2;49220:12;49234:8;49182:21;:61::i;:::-;49726:1;22726:2;49696:1;:26;;49695:32;49683:8;:45;49657:18;:22;49676:2;49657:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;50005:139;50042:2;50096:33;50119:1;50123:2;50127:1;50096:14;:33::i;:::-;50063:30;50084:8;50063:20;:30::i;:::-;:66;50005:18;:139::i;:::-;49971:17;:31;49989:12;49971:31;;;;;;;;;;;:173;;;;50161:16;50192:11;50221:8;50206:12;:23;50192:37;;50742:16;50738:2;50734:25;50722:37;;51114:12;51074:8;51033:1;50971:25;50912:1;50851;50824:335;51485:1;51471:12;51467:20;51425:346;51526:3;51517:7;51514:16;51425:346;;51744:7;51734:8;51731:1;51704:25;51701:1;51698;51693:59;51579:1;51570:7;51566:15;51555:26;;51425:346;;;51429:77;51816:1;51804:8;:13;51800:45;;51826:19;;;;;;;;;;;;;;51800:45;51878:3;51862:13;:19;;;;49431:2462;;51903:60;51932:1;51936:2;51940:12;51954:8;51903:20;:60::i;:::-;49067:2904;49005:2966;;:::o;60674:147::-;60811:6;60674:147;;;;;:::o;36417:324::-;36487:14;36720:1;36710:8;36707:15;36681:24;36677:46;36667:56;;36417: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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:169::-;13741:21;13737:1;13729:6;13725:14;13718:45;13601:169;:::o;13776:366::-;13918:3;13939:67;14003:2;13998:3;13939:67;:::i;:::-;13932:74;;14015:93;14104:3;14015:93;:::i;:::-;14133:2;14128:3;14124:12;14117:19;;13776:366;;;:::o;14148:419::-;14314:4;14352:2;14341:9;14337:18;14329:26;;14401:9;14395:4;14391:20;14387:1;14376:9;14372:17;14365:47;14429:131;14555:4;14429:131;:::i;:::-;14421:139;;14148:419;;;:::o;14573:180::-;14621:77;14618:1;14611:88;14718:4;14715:1;14708:15;14742:4;14739:1;14732:15;14759:191;14799:3;14818:20;14836:1;14818:20;:::i;:::-;14813:25;;14852:20;14870:1;14852:20;:::i;:::-;14847:25;;14895:1;14892;14888:9;14881:16;;14916:3;14913:1;14910:10;14907:36;;;14923:18;;:::i;:::-;14907:36;14759:191;;;;:::o;14956:171::-;15096:23;15092:1;15084:6;15080:14;15073:47;14956:171;:::o;15133:366::-;15275:3;15296:67;15360:2;15355:3;15296:67;:::i;:::-;15289:74;;15372:93;15461:3;15372:93;:::i;:::-;15490:2;15485:3;15481:12;15474:19;;15133:366;;;:::o;15505:419::-;15671:4;15709:2;15698:9;15694:18;15686:26;;15758:9;15752:4;15748:20;15744:1;15733:9;15729:17;15722:47;15786:131;15912:4;15786:131;:::i;:::-;15778:139;;15505:419;;;:::o;15930:410::-;15970:7;15993:20;16011:1;15993:20;:::i;:::-;15988:25;;16027:20;16045:1;16027:20;:::i;:::-;16022:25;;16082:1;16079;16075:9;16104:30;16122:11;16104:30;:::i;:::-;16093:41;;16283:1;16274:7;16270:15;16267:1;16264:22;16244:1;16237:9;16217:83;16194:139;;16313:18;;:::i;:::-;16194:139;15978:362;15930:410;;;;:::o;16346:172::-;16486:24;16482:1;16474:6;16470:14;16463:48;16346:172;:::o;16524:366::-;16666:3;16687:67;16751:2;16746:3;16687:67;:::i;:::-;16680:74;;16763:93;16852:3;16763:93;:::i;:::-;16881:2;16876:3;16872:12;16865:19;;16524:366;;;:::o;16896:419::-;17062:4;17100:2;17089:9;17085:18;17077:26;;17149:9;17143:4;17139:20;17135:1;17124:9;17120:17;17113:47;17177:131;17303:4;17177:131;:::i;:::-;17169:139;;16896:419;;;:::o;17321:332::-;17442:4;17480:2;17469:9;17465:18;17457:26;;17493:71;17561:1;17550:9;17546:17;17537:6;17493:71;:::i;:::-;17574:72;17642:2;17631:9;17627:18;17618:6;17574:72;:::i;:::-;17321:332;;;;;:::o;17659:137::-;17713:5;17744:6;17738:13;17729:22;;17760:30;17784:5;17760:30;:::i;:::-;17659:137;;;;:::o;17802:345::-;17869:6;17918:2;17906:9;17897:7;17893:23;17889:32;17886:119;;;17924:79;;:::i;:::-;17886:119;18044:1;18069:61;18122:7;18113:6;18102:9;18098:22;18069:61;:::i;:::-;18059:71;;18015:125;17802:345;;;;:::o;18153:141::-;18202:4;18225:3;18217:11;;18248:3;18245:1;18238:14;18282:4;18279:1;18269:18;18261:26;;18153:141;;;:::o;18300:93::-;18337:6;18384:2;18379;18372:5;18368:14;18364:23;18354:33;;18300:93;;;:::o;18399:107::-;18443:8;18493:5;18487:4;18483:16;18462:37;;18399:107;;;;:::o;18512:393::-;18581:6;18631:1;18619:10;18615:18;18654:97;18684:66;18673:9;18654:97;:::i;:::-;18772:39;18802:8;18791:9;18772:39;:::i;:::-;18760:51;;18844:4;18840:9;18833:5;18829:21;18820:30;;18893:4;18883:8;18879:19;18872:5;18869:30;18859:40;;18588:317;;18512:393;;;;;:::o;18911:142::-;18961:9;18994:53;19012:34;19021:24;19039:5;19021:24;:::i;:::-;19012:34;:::i;:::-;18994:53;:::i;:::-;18981:66;;18911:142;;;:::o;19059:75::-;19102:3;19123:5;19116:12;;19059:75;;;:::o;19140:269::-;19250:39;19281:7;19250:39;:::i;:::-;19311:91;19360:41;19384:16;19360:41;:::i;:::-;19352:6;19345:4;19339:11;19311:91;:::i;:::-;19305:4;19298:105;19216:193;19140:269;;;:::o;19415:73::-;19460:3;19415:73;:::o;19494:189::-;19571:32;;:::i;:::-;19612:65;19670:6;19662;19656:4;19612:65;:::i;:::-;19547:136;19494:189;;:::o;19689:186::-;19749:120;19766:3;19759:5;19756:14;19749:120;;;19820:39;19857:1;19850:5;19820:39;:::i;:::-;19793:1;19786:5;19782:13;19773:22;;19749:120;;;19689:186;;:::o;19881:543::-;19982:2;19977:3;19974:11;19971:446;;;20016:38;20048:5;20016:38;:::i;:::-;20100:29;20118:10;20100:29;:::i;:::-;20090:8;20086:44;20283:2;20271:10;20268:18;20265:49;;;20304:8;20289:23;;20265:49;20327:80;20383:22;20401:3;20383:22;:::i;:::-;20373:8;20369:37;20356:11;20327:80;:::i;:::-;19986:431;;19971:446;19881:543;;;:::o;20430:117::-;20484:8;20534:5;20528:4;20524:16;20503:37;;20430:117;;;;:::o;20553:169::-;20597:6;20630:51;20678:1;20674:6;20666:5;20663:1;20659:13;20630:51;:::i;:::-;20626:56;20711:4;20705;20701:15;20691:25;;20604:118;20553:169;;;;:::o;20727:295::-;20803:4;20949:29;20974:3;20968:4;20949:29;:::i;:::-;20941:37;;21011:3;21008:1;21004:11;20998:4;20995:21;20987:29;;20727:295;;;;:::o;21027:1395::-;21144:37;21177:3;21144:37;:::i;:::-;21246:18;21238:6;21235:30;21232:56;;;21268:18;;:::i;:::-;21232:56;21312:38;21344:4;21338:11;21312:38;:::i;:::-;21397:67;21457:6;21449;21443:4;21397:67;:::i;:::-;21491:1;21515:4;21502:17;;21547:2;21539:6;21536:14;21564:1;21559:618;;;;22221:1;22238:6;22235:77;;;22287:9;22282:3;22278:19;22272:26;22263:35;;22235:77;22338:67;22398:6;22391:5;22338:67;:::i;:::-;22332:4;22325:81;22194:222;21529:887;;21559:618;21611:4;21607:9;21599:6;21595:22;21645:37;21677:4;21645:37;:::i;:::-;21704:1;21718:208;21732:7;21729:1;21726:14;21718:208;;;21811:9;21806:3;21802:19;21796:26;21788:6;21781:42;21862:1;21854:6;21850:14;21840:24;;21909:2;21898:9;21894:18;21881:31;;21755:4;21752:1;21748:12;21743:17;;21718:208;;;21954:6;21945:7;21942:19;21939:179;;;22012:9;22007:3;22003:19;21997:26;22055:48;22097:4;22089:6;22085:17;22074:9;22055:48;:::i;:::-;22047:6;22040:64;21962:156;21939:179;22164:1;22160;22152:6;22148:14;22144:22;22138:4;22131:36;21566:611;;;21529:887;;21119:1303;;;21027:1395;;:::o;22428:148::-;22530:11;22567:3;22552:18;;22428:148;;;;:::o;22582:390::-;22688:3;22716:39;22749:5;22716:39;:::i;:::-;22771:89;22853:6;22848:3;22771:89;:::i;:::-;22764:96;;22869:65;22927:6;22922:3;22915:4;22908:5;22904:16;22869:65;:::i;:::-;22959:6;22954:3;22950:16;22943:23;;22692:280;22582:390;;;;:::o;22978:435::-;23158:3;23180:95;23271:3;23262:6;23180:95;:::i;:::-;23173:102;;23292:95;23383:3;23374:6;23292:95;:::i;:::-;23285:102;;23404:3;23397:10;;22978:435;;;;;:::o;23419:225::-;23559:34;23555:1;23547:6;23543:14;23536:58;23628:8;23623:2;23615:6;23611:15;23604:33;23419:225;:::o;23650:366::-;23792:3;23813:67;23877:2;23872:3;23813:67;:::i;:::-;23806:74;;23889:93;23978:3;23889:93;:::i;:::-;24007:2;24002:3;23998:12;23991:19;;23650:366;;;:::o;24022:419::-;24188:4;24226:2;24215:9;24211:18;24203:26;;24275:9;24269:4;24265:20;24261:1;24250:9;24246:17;24239:47;24303:131;24429:4;24303:131;:::i;:::-;24295:139;;24022:419;;;:::o;24447:182::-;24587:34;24583:1;24575:6;24571:14;24564:58;24447:182;:::o;24635:366::-;24777:3;24798:67;24862:2;24857:3;24798:67;:::i;:::-;24791:74;;24874:93;24963:3;24874:93;:::i;:::-;24992:2;24987:3;24983:12;24976:19;;24635:366;;;:::o;25007:419::-;25173:4;25211:2;25200:9;25196:18;25188:26;;25260:9;25254:4;25250:20;25246:1;25235:9;25231:17;25224:47;25288:131;25414:4;25288:131;:::i;:::-;25280:139;;25007:419;;;:::o;25432:98::-;25483:6;25517:5;25511:12;25501:22;;25432:98;;;:::o;25536:168::-;25619:11;25653:6;25648:3;25641:19;25693:4;25688:3;25684:14;25669:29;;25536:168;;;;:::o;25710:373::-;25796:3;25824:38;25856:5;25824:38;:::i;:::-;25878:70;25941:6;25936:3;25878:70;:::i;:::-;25871:77;;25957:65;26015:6;26010:3;26003:4;25996:5;25992:16;25957:65;:::i;:::-;26047:29;26069:6;26047:29;:::i;:::-;26042:3;26038:39;26031:46;;25800:283;25710:373;;;;:::o;26089:640::-;26284:4;26322:3;26311:9;26307:19;26299:27;;26336:71;26404:1;26393:9;26389:17;26380:6;26336:71;:::i;:::-;26417:72;26485:2;26474:9;26470:18;26461:6;26417:72;:::i;:::-;26499;26567:2;26556:9;26552:18;26543:6;26499:72;:::i;:::-;26618:9;26612:4;26608:20;26603:2;26592:9;26588:18;26581:48;26646:76;26717:4;26708:6;26646:76;:::i;:::-;26638:84;;26089:640;;;;;;;:::o;26735:141::-;26791:5;26822:6;26816:13;26807:22;;26838:32;26864:5;26838:32;:::i;:::-;26735:141;;;;:::o;26882:349::-;26951:6;27000:2;26988:9;26979:7;26975:23;26971:32;26968:119;;;27006:79;;:::i;:::-;26968:119;27126:1;27151:63;27206:7;27197:6;27186:9;27182:22;27151:63;:::i;:::-;27141:73;;27097:127;26882:349;;;;:::o

Swarm Source

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