ETH Price: $3,452.50 (-1.96%)
Gas: 2 Gwei

Token

Exploration by DMT (EBD)
 

Overview

Max Total Supply

999 EBD

Holders

371

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EBD
0x46960551fc7dc60ab28a2a94d332e3257fa409ea
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:
ExplorationbyDMT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 ╔═╗─┐ ┬┌─┐┬  ┌─┐┬─┐┌─┐┌┬┐┬┌─┐┌┐┌  ┌┐ ┬ ┬  ╔╦╗╔╦╗╔╦╗
║╣ ┌┴┬┘├─┘│  │ │├┬┘├─┤ │ ││ ││││  ├┴┐└┬┘   ║║║║║ ║ 
╚═╝┴ └─┴  ┴─┘└─┘┴└─┴ ┴ ┴ ┴└─┘┘└┘  └─┘ ┴   ═╩╝╩ ╩ ╩ 
*/

// SPDX-License-Identifier: GPL-3.0


pragma solidity ^0.8.7;

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

/**
 * @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).
 */
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)
        }
    }
}


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);
}


/**
 * @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);
            }
        }
        _;
    }
}

/**
 * @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) {}
}


contract ExplorationbyDMT is ERC721A, DefaultOperatorFilterer {
    string public baseURI = "ipfs://bafybeiakxmjpfifgidpftpyqzvukak3de7gbagoggaeq4qt4sj2sym5rcy/";      
    uint256 public maxSupply = 999; 
    uint256 public price = 0.001 ether;
    uint256 public maxPerTx = 20;
    uint256 private _baseGasLimit = 80000;
    uint256 private _baseDifficulty = 10;
    uint256 private _difficultyBais = 120;

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        require(amount <= maxPerTx);
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }

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

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

    function mint() public {
        require(gasleft() > _baseGasLimit);       
        if (!raffle()) return;
        require(msg.sender == tx.origin);
        require(totalSupply() + 1 <= maxSupply);
        require(balanceOf(msg.sender) == 0);
        _safeMint(msg.sender, 1);
    }

    function raffle() public view returns(bool) {
        uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100;
        return num > difficulty();
    }

    function difficulty() public view returns(uint256) {
        return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply;
    }

    address public owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("Exploration by DMT", "EBD") {
        owner = msg.sender;
    }
    
    function setPrice(uint256 newPrice, uint256 maxT) external onlyOwner {
        price = newPrice;
        maxPerTx = maxT;
    }

    // function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
    //     uint256 royaltyAmount = (_salePrice * 50) / 1000;
    //     return (owner, royaltyAmount);
    // }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    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":"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":"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":[],"name":"difficulty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"raffle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"newPrice","type":"uint256"},{"internalType":"uint256","name":"maxT","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620032dd6043913960089080519060200190620000359291906200037b565b506103e760095566038d7ea4c68000600a556014600b5562013880600c55600a600d556078600e553480156200006a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601281526020017f4578706c6f726174696f6e20627920444d5400000000000000000000000000008152506040518060400160405280600381526020017f45424400000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001069291906200037b565b5080600390805190602001906200011f9291906200037b565b50620001306200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200032d578015620001f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b992919062000459565b600060405180830381600087803b158015620001d457600080fd5b505af1158015620001e9573d6000803e3d6000fd5b505050506200032c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027392919062000459565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b505050506200032b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f691906200043c565b600060405180830381600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051f565b600090565b8280546200038990620004ba565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b620004368162000486565b82525050565b60006020820190506200045360008301846200042b565b92915050565b60006040820190506200047060008301856200042b565b6200047f60208301846200042b565b9392505050565b600062000493826200049a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d357607f821691505b60208210811415620004ea57620004e9620004f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612dae806200052f6000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea2646970667358221220b0cbc77cbc35e4c9b200bfb32e7e5eecf8de12ef1b80fb3b548d06403ce6240764736f6c63430008070033697066733a2f2f62616679626569616b786d6a706669666769647066747079717a76756b616b33646537676261676f676761657134717434736a3273796d357263792f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea2646970667358221220b0cbc77cbc35e4c9b200bfb32e7e5eecf8de12ef1b80fb3b548d06403ce6240764736f6c63430008070033

Deployed Bytecode Sourcemap

57485:3308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19081:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19983:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26474:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60006:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58377:289;;;;;;;;;;;;;:::i;:::-;;15734:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58866:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60179:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58674:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59600:109;;;;;;;;;;;;;:::i;:::-;;54850:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60358:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58264:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21376:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57554:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16918:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59012:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20159:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57698:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57907:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59822:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60545:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20369:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57660:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27423:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59225:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57739:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19081:639;19166:4;19505:10;19490:25;;:11;:25;;;;:102;;;;19582:10;19567:25;;:11;:25;;;;19490:102;:179;;;;19659:10;19644:25;;:11;:25;;;;19490:179;19470:199;;19081:639;;;:::o;19983:100::-;20037:13;20070:5;20063:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19983:100;:::o;26474:218::-;26550:7;26575:16;26583:7;26575;:16::i;:::-;26570:64;;26600:34;;;;;;;;;;;;;;26570:64;26654:15;:24;26670:7;26654:24;;;;;;;;;;;:30;;;;;;;;;;;;26647:37;;26474:218;;;:::o;60006:165::-;60110:8;56892:1;54950:42;56844:45;;;:49;56840:225;;;54950:42;56915;;;56966:4;56973:8;56915:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56910:144;;57029:8;57010:28;;;;;;;;;;;:::i;:::-;;;;;;;;56910:144;56840:225;60131:32:::1;60145:8;60155:7;60131:13;:32::i;:::-;60006:165:::0;;;:::o;58377:289::-;58431:13;;58419:9;:25;58411:34;;;;;;58468:8;:6;:8::i;:::-;58463:22;;58478:7;;58463:22;58517:9;58503:23;;:10;:23;;;58495:32;;;;;;58567:9;;58562:1;58546:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;58538:39;;;;;;58621:1;58596:21;58606:10;58596:9;:21::i;:::-;:26;58588:35;;;;;;58634:24;58644:10;58656:1;58634:9;:24::i;:::-;58377:289;:::o;15734:323::-;15795:7;16023:15;:13;:15::i;:::-;16008:12;;15992:13;;:28;:46;15985:53;;15734:323;:::o;58866:138::-;58908:7;58987:9;;58969:15;;58953:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;58935:15;;:61;;;;:::i;:::-;58928:68;;58866:138;:::o;60179:171::-;60288:4;56146:1;54950:42;56098:45;;;:49;56094:539;;;56387:10;56379:18;;:4;:18;;;56375:85;;;60305:37:::1;60324:4;60330:2;60334:7;60305:18;:37::i;:::-;56438:7:::0;;56375:85;54950:42;56479;;;56530:4;56537:10;56479:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56474:148;;56595:10;56576:30;;;;;;;;;;;:::i;:::-;;;;;;;;56474:148;56094:539;60305:37:::1;60324:4;60330:2;60334:7;60305:18;:37::i;:::-;60179:171:::0;;;;;:::o;58674:184::-;58712:4;58729:11;58811:3;58778:15;58795:10;58761:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58751:56;;;;;;58743:65;;:71;;;;:::i;:::-;58729:85;;58838:12;:10;:12::i;:::-;58832:3;:18;58825:25;;;58674:184;:::o;59600:109::-;59086:10;59077:19;;:5;;;;;;;;;;;:19;;;59069:28;;;;;;59658:10:::1;59650:28;;:51;59679:21;59650:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59600:109::o:0;54850:143::-;54950:42;54850:143;:::o;60358:179::-;60471:4;56146:1;54950:42;56098:45;;;:49;56094:539;;;56387:10;56379:18;;:4;:18;;;56375:85;;;60488:41:::1;60511:4;60517:2;60521:7;60488:22;:41::i;:::-;56438:7:::0;;56375:85;54950:42;56479;;;56530:4;56537:10;56479:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56474:148;;56595:10;56576:30;;;;;;;;;;;:::i;:::-;;;;;;;;56474:148;56094:539;60488:41:::1;60511:4;60517:2;60521:7;60488:22;:41::i;:::-;60358:179:::0;;;;;:::o;58264:100::-;59086:10;59077:19;;:5;;;;;;;;;;;:19;;;59069:28;;;;;;58348:8:::1;58338:7;:18;;;;;;;;;;;;:::i;:::-;;58264:100:::0;:::o;21376:152::-;21448:7;21491:27;21510:7;21491:18;:27::i;:::-;21468:52;;21376:152;;;:::o;57554:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16918:233::-;16990:7;17031:1;17014:19;;:5;:19;;;17010:60;;;17042:28;;;;;;;;;;;;;;17010:60;11077:13;17088:18;:25;17107:5;17088:25;;;;;;;;;;;;;;;;:55;17081:62;;16918:233;;;:::o;59012:20::-;;;;;;;;;;;;;:::o;20159:104::-;20215:13;20248:7;20241:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20159:104;:::o;57698:34::-;;;;:::o;57907:233::-;57997:9;;57987:6;57971:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57963:44;;;;;;58036:8;;58026:6;:18;;58018:27;;;;;;58086:5;;58077:6;:14;;;;:::i;:::-;58064:9;:27;;58056:36;;;;;;58103:29;58113:10;58125:6;58103:9;:29::i;:::-;57907:233;:::o;59822:176::-;59926:8;56892:1;54950:42;56844:45;;;:49;56840:225;;;54950:42;56915;;;56966:4;56973:8;56915:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56910:144;;57029:8;57010:28;;;;;;;;;;;:::i;:::-;;;;;;;;56910:144;56840:225;59947:43:::1;59971:8;59981;59947:23;:43::i;:::-;59822:176:::0;;;:::o;60545:245::-;60713:4;56146:1;54950:42;56098:45;;;:49;56094:539;;;56387:10;56379:18;;:4;:18;;;56375:85;;;60735:47:::1;60758:4;60764:2;60768:7;60777:4;60735:22;:47::i;:::-;56438:7:::0;;56375:85;54950:42;56479;;;56530:4;56537:10;56479:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56474:148;;56595:10;56576:30;;;;;;;;;;;:::i;:::-;;;;;;;;56474:148;56094:539;60735:47:::1;60758:4;60764:2;60768:7;60777:4;60735:22;:47::i;:::-;60545:245:::0;;;;;;:::o;20369:318::-;20442:13;20473:16;20481:7;20473;:16::i;:::-;20468:59;;20498:29;;;;;;;;;;;;;;20468:59;20540:21;20564:10;:8;:10::i;:::-;20540:34;;20617:1;20598:7;20592:21;:26;;:87;;;;;;;;;;;;;;;;;20645:7;20654:18;20664:7;20654:9;:18::i;:::-;20628:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20592:87;20585:94;;;20369:318;;;:::o;57660:30::-;;;;:::o;27423:164::-;27520:4;27544:18;:25;27563:5;27544:25;;;;;;;;;;;;;;;:35;27570:8;27544:35;;;;;;;;;;;;;;;;;;;;;;;;;27537:42;;27423:164;;;;:::o;59225:130::-;59086:10;59077:19;;:5;;;;;;;;;;;:19;;;59069:28;;;;;;59313:8:::1;59305:5;:16;;;;59343:4;59332:8;:15;;;;59225:130:::0;;:::o;57739:28::-;;;;:::o;27845:282::-;27910:4;27966:7;27947:15;:13;:15::i;:::-;:26;;:66;;;;;28000:13;;27990:7;:23;27947:66;:153;;;;;28099:1;11853:8;28051:17;:26;28069:7;28051:26;;;;;;;;;;;;:44;:49;27947:153;27927:173;;27845:282;;;:::o;25907:408::-;25996:13;26012:16;26020:7;26012;:16::i;:::-;25996:32;;26068:5;26045:28;;:19;:17;:19::i;:::-;:28;;;26041:175;;26093:44;26110:5;26117:19;:17;:19::i;:::-;26093:16;:44::i;:::-;26088:128;;26165:35;;;;;;;;;;;;;;26088:128;26041:175;26261:2;26228:15;:24;26244:7;26228:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26299:7;26295:2;26279:28;;26288:5;26279:28;;;;;;;;;;;;25985:330;25907:408;;:::o;43985:112::-;44062:27;44072:2;44076:8;44062:27;;;;;;;;;;;;:9;:27::i;:::-;43985:112;;:::o;15250:92::-;15306:7;15250:92;:::o;30113:2825::-;30255:27;30285;30304:7;30285:18;:27::i;:::-;30255:57;;30370:4;30329:45;;30345:19;30329:45;;;30325:86;;30383:28;;;;;;;;;;;;;;30325:86;30425:27;30454:23;30481:35;30508:7;30481:26;:35::i;:::-;30424:92;;;;30616:68;30641:15;30658:4;30664:19;:17;:19::i;:::-;30616:24;:68::i;:::-;30611:180;;30704:43;30721:4;30727:19;:17;:19::i;:::-;30704:16;:43::i;:::-;30699:92;;30756:35;;;;;;;;;;;;;;30699:92;30611:180;30822:1;30808:16;;:2;:16;;;30804:52;;;30833:23;;;;;;;;;;;;;;30804:52;30869:43;30891:4;30897:2;30901:7;30910:1;30869:21;:43::i;:::-;31005:15;31002:160;;;31145:1;31124:19;31117:30;31002:160;31542:18;:24;31561:4;31542:24;;;;;;;;;;;;;;;;31540:26;;;;;;;;;;;;31611:18;:22;31630:2;31611:22;;;;;;;;;;;;;;;;31609:24;;;;;;;;;;;31933:146;31970:2;32019:45;32034:4;32040:2;32044:19;32019:14;:45::i;:::-;12133:8;31991:73;31933:18;:146::i;:::-;31904:17;:26;31922:7;31904:26;;;;;;;;;;;:175;;;;32250:1;12133:8;32199:19;:47;:52;32195:627;;;32272:19;32304:1;32294:7;:11;32272:33;;32461:1;32427:17;:30;32445:11;32427:30;;;;;;;;;;;;:35;32423:384;;;32565:13;;32550:11;:28;32546:242;;32745:19;32712:17;:30;32730:11;32712:30;;;;;;;;;;;:52;;;;32546:242;32423:384;32253:569;32195:627;32869:7;32865:2;32850:27;;32859:4;32850:27;;;;;;;;;;;;32888:42;32909:4;32915:2;32919:7;32928:1;32888:20;:42::i;:::-;30244:2694;;;30113:2825;;;:::o;33034:193::-;33180:39;33197:4;33203:2;33207:7;33180:39;;;;;;;;;;;;:16;:39::i;:::-;33034:193;;;:::o;22531:1275::-;22598:7;22618:12;22633:7;22618:22;;22701:4;22682:15;:13;:15::i;:::-;:23;22678:1061;;22735:13;;22728:4;:20;22724:1015;;;22773:14;22790:17;:23;22808:4;22790:23;;;;;;;;;;;;22773:40;;22907:1;11853:8;22879:6;:24;:29;22875:845;;;23544:113;23561:1;23551:6;:11;23544:113;;;23604:17;:25;23622:6;;;;;;;23604:25;;;;;;;;;;;;23595:34;;23544:113;;;23690:6;23683:13;;;;;;22875:845;22750:989;22724:1015;22678:1061;23767:31;;;;;;;;;;;;;;22531:1275;;;;:::o;27032:234::-;27179:8;27127:18;:39;27146:19;:17;:19::i;:::-;27127:39;;;;;;;;;;;;;;;:49;27167:8;27127:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27239:8;27203:55;;27218:19;:17;:19::i;:::-;27203:55;;;27249:8;27203:55;;;;;;:::i;:::-;;;;;;;;27032:234;;:::o;33825:407::-;34000:31;34013:4;34019:2;34023:7;34000:12;:31::i;:::-;34064:1;34046:2;:14;;;:19;34042:183;;34085:56;34116:4;34122:2;34126:7;34135:5;34085:30;:56::i;:::-;34080:145;;34169:40;;;;;;;;;;;;;;34080:145;34042:183;33825:407;;;;:::o;58148:108::-;58208:13;58241:7;58234:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58148:108;:::o;50360:1745::-;50425:17;50859:4;50852;50846:11;50842:22;50951:1;50945:4;50938:15;51026:4;51023:1;51019:12;51012:19;;51108:1;51103:3;51096:14;51212:3;51451:5;51433:428;51459:1;51433:428;;;51499:1;51494:3;51490:11;51483:18;;51670:2;51664:4;51660:13;51656:2;51652:22;51647:3;51639:36;51764:2;51758:4;51754:13;51746:21;;51831:4;51821:25;;51839:5;;51821:25;51433:428;;;51437:21;51900:3;51895;51891:13;52015:4;52010:3;52006:14;51999:21;;52080:6;52075:3;52068:19;50464:1634;;;50360:1745;;;:::o;50153:105::-;50213:7;50240:10;50233:17;;50153:105;:::o;43212:689::-;43343:19;43349:2;43353:8;43343:5;:19::i;:::-;43422:1;43404:2;:14;;;:19;43400:483;;43444:11;43458:13;;43444:27;;43490:13;43512:8;43506:3;:14;43490:30;;43539:233;43570:62;43609:1;43613:2;43617:7;;;;;;43626:5;43570:30;:62::i;:::-;43565:167;;43668:40;;;;;;;;;;;;;;43565:167;43767:3;43759:5;:11;43539:233;;43854:3;43837:13;;:20;43833:34;;43859:8;;;43833:34;43425:458;;43400:483;43212:689;;;:::o;29008:485::-;29110:27;29139:23;29180:38;29221:15;:24;29237:7;29221:24;;;;;;;;;;;29180:65;;29398:18;29375:41;;29455:19;29449:26;29430:45;;29360:126;29008:485;;;:::o;28236:659::-;28385:11;28550:16;28543:5;28539:28;28530:37;;28710:16;28699:9;28695:32;28682:45;;28860:15;28849:9;28846:30;28838:5;28827:9;28824:20;28821:56;28811:66;;28236:659;;;;;:::o;34894:159::-;;;;;:::o;49462:311::-;49597:7;49617:16;12257:3;49643:19;:41;;49617:68;;12257:3;49711:31;49722:4;49728:2;49732:9;49711:10;:31::i;:::-;49703:40;;:62;;49696:69;;;49462:311;;;;;:::o;24354:450::-;24434:14;24602:16;24595:5;24591:28;24582:37;;24779:5;24765:11;24740:23;24736:41;24733:52;24726:5;24723:63;24713:73;;24354:450;;;;:::o;35718:158::-;;;;;:::o;36316:716::-;36479:4;36525:2;36500:45;;;36546:19;:17;:19::i;:::-;36567:4;36573:7;36582:5;36500:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36496:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36800:1;36783:6;:13;:18;36779:235;;;36829:40;;;;;;;;;;;;;;36779:235;36972:6;36966:13;36957:6;36953:2;36949:15;36942:38;36496:529;36669:54;;;36659:64;;;:6;:64;;;;36652:71;;;36316:716;;;;;;:::o;37494:2966::-;37567:20;37590:13;;37567:36;;37630:1;37618:8;:13;37614:44;;;37640:18;;;;;;;;;;;;;;37614:44;37671:61;37701:1;37705:2;37709:12;37723:8;37671:21;:61::i;:::-;38215:1;11215:2;38185:1;:26;;38184:32;38172:8;:45;38146:18;:22;38165:2;38146:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38494:139;38531:2;38585:33;38608:1;38612:2;38616:1;38585:14;:33::i;:::-;38552:30;38573:8;38552:20;:30::i;:::-;:66;38494:18;:139::i;:::-;38460:17;:31;38478:12;38460:31;;;;;;;;;;;:173;;;;38650:16;38681:11;38710:8;38695:12;:23;38681:37;;39231:16;39227:2;39223:25;39211:37;;39603:12;39563:8;39522:1;39460:25;39401:1;39340;39313:335;39974:1;39960:12;39956:20;39914:346;40015:3;40006:7;40003:16;39914:346;;40233:7;40223:8;40220:1;40193:25;40190:1;40187;40182:59;40068:1;40059:7;40055:15;40044:26;;39914:346;;;39918:77;40305:1;40293:8;:13;40289:45;;;40315:19;;;;;;;;;;;;;;40289:45;40367:3;40351:13;:19;;;;37920:2462;;40392:60;40421:1;40425:2;40429:12;40443:8;40392:20;:60::i;:::-;37556:2904;37494:2966;;:::o;49163:147::-;49300:6;49163:147;;;;;:::o;24906:324::-;24976:14;25209:1;25199:8;25196:15;25170:24;25166:46;25156:56;;24906:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:474::-;7720:6;7728;7777:2;7765:9;7756:7;7752:23;7748:32;7745:119;;;7783:79;;:::i;:::-;7745:119;7903:1;7928:53;7973:7;7964:6;7953:9;7949:22;7928:53;:::i;:::-;7918:63;;7874:117;8030:2;8056:53;8101:7;8092:6;8081:9;8077:22;8056:53;:::i;:::-;8046:63;;8001:118;7652:474;;;;;:::o;8132:118::-;8219:24;8237:5;8219:24;:::i;:::-;8214:3;8207:37;8132:118;;:::o;8256:157::-;8361:45;8381:24;8399:5;8381:24;:::i;:::-;8361:45;:::i;:::-;8356:3;8349:58;8256:157;;:::o;8419:109::-;8500:21;8515:5;8500:21;:::i;:::-;8495:3;8488:34;8419:109;;:::o;8534:360::-;8620:3;8648:38;8680:5;8648:38;:::i;:::-;8702:70;8765:6;8760:3;8702:70;:::i;:::-;8695:77;;8781:52;8826:6;8821:3;8814:4;8807:5;8803:16;8781:52;:::i;:::-;8858:29;8880:6;8858:29;:::i;:::-;8853:3;8849:39;8842:46;;8624:270;8534:360;;;;:::o;8900:195::-;9019:69;9082:5;9019:69;:::i;:::-;9014:3;9007:82;8900:195;;:::o;9101:364::-;9189:3;9217:39;9250:5;9217:39;:::i;:::-;9272:71;9336:6;9331:3;9272:71;:::i;:::-;9265:78;;9352:52;9397:6;9392:3;9385:4;9378:5;9374:16;9352:52;:::i;:::-;9429:29;9451:6;9429:29;:::i;:::-;9424:3;9420:39;9413:46;;9193:272;9101:364;;;;:::o;9471:377::-;9577:3;9605:39;9638:5;9605:39;:::i;:::-;9660:89;9742:6;9737:3;9660:89;:::i;:::-;9653:96;;9758:52;9803:6;9798:3;9791:4;9784:5;9780:16;9758:52;:::i;:::-;9835:6;9830:3;9826:16;9819:23;;9581:267;9471:377;;;;:::o;9854:118::-;9941:24;9959:5;9941:24;:::i;:::-;9936:3;9929:37;9854:118;;:::o;9978:157::-;10083:45;10103:24;10121:5;10103:24;:::i;:::-;10083:45;:::i;:::-;10078:3;10071:58;9978:157;;:::o;10141:435::-;10321:3;10343:95;10434:3;10425:6;10343:95;:::i;:::-;10336:102;;10455:95;10546:3;10537:6;10455:95;:::i;:::-;10448:102;;10567:3;10560:10;;10141:435;;;;;:::o;10582:397::-;10722:3;10737:75;10808:3;10799:6;10737:75;:::i;:::-;10837:2;10832:3;10828:12;10821:19;;10850:75;10921:3;10912:6;10850:75;:::i;:::-;10950:2;10945:3;10941:12;10934:19;;10970:3;10963:10;;10582:397;;;;;:::o;10985:222::-;11078:4;11116:2;11105:9;11101:18;11093:26;;11129:71;11197:1;11186:9;11182:17;11173:6;11129:71;:::i;:::-;10985:222;;;;:::o;11213:332::-;11334:4;11372:2;11361:9;11357:18;11349:26;;11385:71;11453:1;11442:9;11438:17;11429:6;11385:71;:::i;:::-;11466:72;11534:2;11523:9;11519:18;11510:6;11466:72;:::i;:::-;11213:332;;;;;:::o;11551:640::-;11746:4;11784:3;11773:9;11769:19;11761:27;;11798:71;11866:1;11855:9;11851:17;11842:6;11798:71;:::i;:::-;11879:72;11947:2;11936:9;11932:18;11923:6;11879:72;:::i;:::-;11961;12029:2;12018:9;12014:18;12005:6;11961:72;:::i;:::-;12080:9;12074:4;12070:20;12065:2;12054:9;12050:18;12043:48;12108:76;12179:4;12170:6;12108:76;:::i;:::-;12100:84;;11551:640;;;;;;;:::o;12197:210::-;12284:4;12322:2;12311:9;12307:18;12299:26;;12335:65;12397:1;12386:9;12382:17;12373:6;12335:65;:::i;:::-;12197:210;;;;:::o;12413:286::-;12538:4;12576:2;12565:9;12561:18;12553:26;;12589:103;12689:1;12678:9;12674:17;12665:6;12589:103;:::i;:::-;12413:286;;;;:::o;12705:313::-;12818:4;12856:2;12845:9;12841:18;12833:26;;12905:9;12899:4;12895:20;12891:1;12880:9;12876:17;12869:47;12933:78;13006:4;12997:6;12933:78;:::i;:::-;12925:86;;12705:313;;;;:::o;13024:222::-;13117:4;13155:2;13144:9;13140:18;13132:26;;13168:71;13236:1;13225:9;13221:17;13212:6;13168:71;:::i;:::-;13024:222;;;;:::o;13252:129::-;13286:6;13313:20;;:::i;:::-;13303:30;;13342:33;13370:4;13362:6;13342:33;:::i;:::-;13252:129;;;:::o;13387:75::-;13420:6;13453:2;13447:9;13437:19;;13387:75;:::o;13468:307::-;13529:4;13619:18;13611:6;13608:30;13605:56;;;13641:18;;:::i;:::-;13605:56;13679:29;13701:6;13679:29;:::i;:::-;13671:37;;13763:4;13757;13753:15;13745:23;;13468:307;;;:::o;13781:308::-;13843:4;13933:18;13925:6;13922:30;13919:56;;;13955:18;;:::i;:::-;13919:56;13993:29;14015:6;13993:29;:::i;:::-;13985:37;;14077:4;14071;14067:15;14059:23;;13781:308;;;:::o;14095:98::-;14146:6;14180:5;14174:12;14164:22;;14095:98;;;:::o;14199:99::-;14251:6;14285:5;14279:12;14269:22;;14199:99;;;:::o;14304:168::-;14387:11;14421:6;14416:3;14409:19;14461:4;14456:3;14452:14;14437:29;;14304:168;;;;:::o;14478:169::-;14562:11;14596:6;14591:3;14584:19;14636:4;14631:3;14627:14;14612:29;;14478:169;;;;:::o;14653:148::-;14755:11;14792:3;14777:18;;14653:148;;;;:::o;14807:305::-;14847:3;14866:20;14884:1;14866:20;:::i;:::-;14861:25;;14900:20;14918:1;14900:20;:::i;:::-;14895:25;;15054:1;14986:66;14982:74;14979:1;14976:81;14973:107;;;15060:18;;:::i;:::-;14973:107;15104:1;15101;15097:9;15090:16;;14807:305;;;;:::o;15118:185::-;15158:1;15175:20;15193:1;15175:20;:::i;:::-;15170:25;;15209:20;15227:1;15209:20;:::i;:::-;15204:25;;15248:1;15238:35;;15253:18;;:::i;:::-;15238:35;15295:1;15292;15288:9;15283:14;;15118:185;;;;:::o;15309:348::-;15349:7;15372:20;15390:1;15372:20;:::i;:::-;15367:25;;15406:20;15424:1;15406:20;:::i;:::-;15401:25;;15594:1;15526:66;15522:74;15519:1;15516:81;15511:1;15504:9;15497:17;15493:105;15490:131;;;15601:18;;:::i;:::-;15490:131;15649:1;15646;15642:9;15631:20;;15309:348;;;;:::o;15663:96::-;15700:7;15729:24;15747:5;15729:24;:::i;:::-;15718:35;;15663:96;;;:::o;15765:90::-;15799:7;15842:5;15835:13;15828:21;15817:32;;15765:90;;;:::o;15861:149::-;15897:7;15937:66;15930:5;15926:78;15915:89;;15861:149;;;:::o;16016:126::-;16053:7;16093:42;16086:5;16082:54;16071:65;;16016:126;;;:::o;16148:77::-;16185:7;16214:5;16203:16;;16148:77;;;:::o;16231:158::-;16313:9;16346:37;16377:5;16346:37;:::i;:::-;16333:50;;16231:158;;;:::o;16395:126::-;16445:9;16478:37;16509:5;16478:37;:::i;:::-;16465:50;;16395:126;;;:::o;16527:113::-;16577:9;16610:24;16628:5;16610:24;:::i;:::-;16597:37;;16527:113;;;:::o;16646:154::-;16730:6;16725:3;16720;16707:30;16792:1;16783:6;16778:3;16774:16;16767:27;16646:154;;;:::o;16806:307::-;16874:1;16884:113;16898:6;16895:1;16892:13;16884:113;;;16983:1;16978:3;16974:11;16968:18;16964:1;16959:3;16955:11;16948:39;16920:2;16917:1;16913:10;16908:15;;16884:113;;;17015:6;17012:1;17009:13;17006:101;;;17095:1;17086:6;17081:3;17077:16;17070:27;17006:101;16855:258;16806:307;;;:::o;17119:320::-;17163:6;17200:1;17194:4;17190:12;17180:22;;17247:1;17241:4;17237:12;17268:18;17258:81;;17324:4;17316:6;17312:17;17302:27;;17258:81;17386:2;17378:6;17375:14;17355:18;17352:38;17349:84;;;17405:18;;:::i;:::-;17349:84;17170:269;17119:320;;;:::o;17445:281::-;17528:27;17550:4;17528:27;:::i;:::-;17520:6;17516:40;17658:6;17646:10;17643:22;17622:18;17610:10;17607:34;17604:62;17601:88;;;17669:18;;:::i;:::-;17601:88;17709:10;17705:2;17698:22;17488:238;17445:281;;:::o;17732:100::-;17771:7;17800:26;17820:5;17800:26;:::i;:::-;17789:37;;17732:100;;;:::o;17838:94::-;17877:7;17906:20;17920:5;17906:20;:::i;:::-;17895:31;;17838:94;;;:::o;17938:79::-;17977:7;18006:5;17995:16;;17938:79;;;:::o;18023:176::-;18055:1;18072:20;18090:1;18072:20;:::i;:::-;18067:25;;18106:20;18124:1;18106:20;:::i;:::-;18101:25;;18145:1;18135:35;;18150:18;;:::i;:::-;18135:35;18191:1;18188;18184:9;18179:14;;18023:176;;;;:::o;18205:180::-;18253:77;18250:1;18243:88;18350:4;18347:1;18340:15;18374:4;18371:1;18364:15;18391:180;18439:77;18436:1;18429:88;18536:4;18533:1;18526:15;18560:4;18557:1;18550:15;18577:180;18625:77;18622:1;18615:88;18722:4;18719:1;18712:15;18746:4;18743:1;18736:15;18763:180;18811:77;18808:1;18801:88;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18949:117;19058:1;19055;19048:12;19072:117;19181:1;19178;19171:12;19195:117;19304:1;19301;19294:12;19318:117;19427:1;19424;19417:12;19441:102;19482:6;19533:2;19529:7;19524:2;19517:5;19513:14;19509:28;19499:38;;19441:102;;;:::o;19549:94::-;19582:8;19630:5;19626:2;19622:14;19601:35;;19549:94;;;:::o;19649:122::-;19722:24;19740:5;19722:24;:::i;:::-;19715:5;19712:35;19702:63;;19761:1;19758;19751:12;19702:63;19649:122;:::o;19777:116::-;19847:21;19862:5;19847:21;:::i;:::-;19840:5;19837:32;19827:60;;19883:1;19880;19873:12;19827:60;19777:116;:::o;19899:120::-;19971:23;19988:5;19971:23;:::i;:::-;19964:5;19961:34;19951:62;;20009:1;20006;19999:12;19951:62;19899:120;:::o;20025:122::-;20098:24;20116:5;20098:24;:::i;:::-;20091:5;20088:35;20078:63;;20137:1;20134;20127:12;20078:63;20025:122;:::o

Swarm Source

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