ETH Price: $2,585.45 (-1.97%)

Token

Good Bye 2022 (GB2022)
 

Overview

Max Total Supply

936 GB2022

Holders

658

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*来试试地板.eth
Balance
1 GB2022
0xc2a03DE3598F85D6F1841e39ACBb9Dcaf9Bd2705
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:
GoodBye2022

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

/**
   ___                          _             
  / __|     ___      ___     __| |      o O O 
 | (_ |    / _ \    / _ \   / _` |     o      
  \___|    \___/    \___/   \__,_|    TS__[O] 
_|"""""| _|"""""| _|"""""| _|"""""|  {======| 
"`-0-0-' "`-0-0-' "`-0-0-' "`-0-0-' ./o--000' 
   ___      _  _                              
  | _ )    | || |    ___                      
  | _ \     \_, |   / -_)                     
  |___/    _|__/    \___|                     
_|"""""| _| """"| _|"""""|                    
"`-0-0-' "`-0-0-' "`-0-0-'                    
   ___       __      ___      ___             
  |_  )     /  \    |_  )    |_  )            
   / /     | () |    / /      / /             
  /___|    _\__/    /___|    /___|            
_|"""""| _|"""""| _|"""""| _|"""""|           
"`-0-0-' "`-0-0-' "`-0-0-' "`-0-0-'           
 */

// SPDX-License-Identifier: MIT

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 GoodBye2022 is ERC721A, DefaultOperatorFilterer {
    /// @notice Reference to the handler contract for transfer hooks

    address public beforeTokenTransferHandler;
    address public paymentSplitterAddress;
    uint256 public currentTokenId = 1;
    uint256 public maxSupply = 999;
    uint256 public mintPhase = 0;
    uint256 public price = 0.002 ether;     
    uint256 public publicMintCost = 0.002 ether;
    uint256 public whitelistMintCost = 0.002 ether;
    mapping (address => bool) public isWhitelisted;
   
    string public baseURI = "ipfs://bafybeifc7a4sahin3qmmsbjlkweic6w3dc56qpyncmipzw236wzupihswe/";         
    uint256 public maxPerTx = 10;   
    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("Good Bye 2022", "GB2022") {
        owner = msg.sender;
    }
    
    // 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":"beforeTokenTransferHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","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":"mintPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentSplitterAddress","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":"publicMintCost","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":"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":"whitelistMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a556103e7600b556000600c5566071afd498d0000600d5566071afd498d0000600e5566071afd498d0000600f556040518060800160405280604381526020016200343c6043913960119080519060200190620000669291906200039b565b50600a60125562013880601355600a60145560786015553480156200008a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f476f6f64204279652032303232000000000000000000000000000000000000008152506040518060400160405280600681526020017f47423230323200000000000000000000000000000000000000000000000000008152508160029080519060200190620001269291906200039b565b5080600390805190602001906200013f9291906200039b565b50620001506200039660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200034d57801562000213576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001d992919062000479565b600060405180830381600087803b158015620001f457600080fd5b505af115801562000209573d6000803e3d6000fd5b505050506200034c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002cd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029392919062000479565b600060405180830381600087803b158015620002ae57600080fd5b505af1158015620002c3573d6000803e3d6000fd5b505050506200034b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200031691906200045c565b600060405180830381600087803b1580156200033157600080fd5b505af115801562000346573d6000803e3d6000fd5b505050505b5b5b505033601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053f565b600090565b828054620003a990620004da565b90600052602060002090601f016020900481019282620003cd576000855562000419565b82601f10620003e857805160ff191683800117855562000419565b8280016001018555821562000419579182015b8281111562000418578251825591602001919060010190620003fb565b5b5090506200042891906200042c565b5090565b5b80821115620004475760008160009055506001016200042d565b5090565b6200045681620004a6565b82525050565b60006020820190506200047360008301846200044b565b92915050565b60006040820190506200049060008301856200044b565b6200049f60208301846200044b565b9392505050565b6000620004b382620004ba565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004f357607f821691505b602082108114156200050a576200050962000510565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612eed806200054f6000396000f3fe6080604052600436106101ed5760003560e01c80636352211e1161010d578063a035b1fe116100a0578063b88d4fde1161006f578063b88d4fde14610698578063c87b56dd146106b4578063d5abeb01146106f1578063e985e9c51461071c578063f968adbe14610759576101ed565b8063a035b1fe146105fd578063a0712d6814610628578063a22cb46514610644578063b12dab6e1461066d576101ed565b80638c770067116100dc5780638c770067146105515780638da5cb5b1461057c57806395d89b41146105a75780639a7110fe146105d2576101ed565b80636352211e146104815780636838c062146104be5780636c0360eb146104e957806370a0823114610514576101ed565b806319cae462116101855780633ccfd60b116101545780633ccfd60b146103fa57806341f434341461041157806342842e0e1461043c57806355f804b314610458576101ed565b806319cae4621461034b57806323b872dd1461037657806333c1420a146103925780633af32abf146103bd576101ed565b8063095ea7b3116101c1578063095ea7b3146102c25780631249c58b146102de57806317881cbf146102f557806318160ddd14610320576101ed565b80629a9b7b146101f257806301ffc9a71461021d57806306fdde031461025a578063081812fc14610285575b600080fd5b3480156101fe57600080fd5b50610207610784565b60405161021491906129f9565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f91906126e4565b61078a565b60405161025191906129a1565b60405180910390f35b34801561026657600080fd5b5061026f61081c565b60405161027c91906129d7565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612787565b6108ae565b6040516102b99190612911565b60405180910390f35b6102dc60048036038101906102d79190612677565b61092d565b005b3480156102ea57600080fd5b506102f3610a46565b005b34801561030157600080fd5b5061030a610ae2565b60405161031791906129f9565b60405180910390f35b34801561032c57600080fd5b50610335610ae8565b60405161034291906129f9565b60405180910390f35b34801561035757600080fd5b50610360610aff565b60405161036d91906129f9565b60405180910390f35b610390600480360381019061038b9190612561565b610b35565b005b34801561039e57600080fd5b506103a7610c95565b6040516103b491906129a1565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906124f4565b610ce2565b6040516103f191906129a1565b60405180910390f35b34801561040657600080fd5b5061040f610d02565b005b34801561041d57600080fd5b50610426610da5565b60405161043391906129bc565b60405180910390f35b61045660048036038101906104519190612561565b610db7565b005b34801561046457600080fd5b5061047f600480360381019061047a919061273e565b610f17565b005b34801561048d57600080fd5b506104a860048036038101906104a39190612787565b610f8b565b6040516104b59190612911565b60405180910390f35b3480156104ca57600080fd5b506104d3610f9d565b6040516104e09190612911565b60405180910390f35b3480156104f557600080fd5b506104fe610fc3565b60405161050b91906129d7565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906124f4565b611051565b60405161054891906129f9565b60405180910390f35b34801561055d57600080fd5b5061056661110a565b60405161057391906129f9565b60405180910390f35b34801561058857600080fd5b50610591611110565b60405161059e9190612911565b60405180910390f35b3480156105b357600080fd5b506105bc611136565b6040516105c991906129d7565b60405180910390f35b3480156105de57600080fd5b506105e76111c8565b6040516105f49190612911565b60405180910390f35b34801561060957600080fd5b506106126111ee565b60405161061f91906129f9565b60405180910390f35b610642600480360381019061063d9190612787565b6111f4565b005b34801561065057600080fd5b5061066b60048036038101906106669190612637565b61124b565b005b34801561067957600080fd5b50610682611364565b60405161068f91906129f9565b60405180910390f35b6106b260048036038101906106ad91906125b4565b61136a565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612787565b6114cd565b6040516106e891906129d7565b60405180910390f35b3480156106fd57600080fd5b5061070661156c565b60405161071391906129f9565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612521565b611572565b60405161075091906129a1565b60405180910390f35b34801561076557600080fd5b5061076e611606565b60405161077b91906129f9565b60405180910390f35b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082b90612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461085790612cab565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b98261160c565b6108ef576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a37576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109a592919061292c565b60206040518083038186803b1580156109bd57600080fd5b505afa1580156109d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906126b7565b610a3657806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a2d9190612911565b60405180910390fd5b5b610a41838361166b565b505050565b6013545a11610a5457600080fd5b610a5c610c95565b610a6557610ae0565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a9d57600080fd5b600b546001610aaa610ae8565b610ab49190612ade565b1115610abf57600080fd5b6000610aca33611051565b14610ad457600080fd5b610adf3360016117af565b5b565b600c5481565b6000610af26117cd565b6001546000540303905090565b6000600b54601554610b0f610ae8565b610b199190612b65565b610b239190612b34565b601454610b309190612ade565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c83573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba857610ba38484846117d2565b610c8f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bf192919061292c565b60206040518083038186803b158015610c0957600080fd5b505afa158015610c1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4191906126b7565b610c8257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c799190612911565b60405180910390fd5b5b610c8e8484846117d2565b5b50505050565b60008060644233604051602001610cad9291906128e5565b6040516020818303038152906040528051906020012060001c610cd09190612d3c565b9050610cda610aff565b811191505090565b60106020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5c57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610da2573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f05573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2a57610e25848484611af7565b610f11565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e7392919061292c565b60206040518083038186803b158015610e8b57600080fd5b505afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec391906126b7565b610f0457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610efb9190612911565b60405180910390fd5b5b610f10848484611af7565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7157600080fd5b8060119080519060200190610f879291906122f3565b5050565b6000610f9682611b17565b9050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60118054610fd090612cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffc90612cab565b80156110495780601f1061101e57610100808354040283529160200191611049565b820191906000526020600020905b81548152906001019060200180831161102c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600e5481565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461114590612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461117190612cab565b80156111be5780601f10611193576101008083540402835291602001916111be565b820191906000526020600020905b8154815290600101906020018083116111a157829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600b5481611200610ae8565b61120a9190612ade565b111561121557600080fd5b60125481111561122457600080fd5b600d54816112329190612b65565b34101561123e57600080fd5b61124833826117af565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611355576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112c392919061292c565b60206040518083038186803b1580156112db57600080fd5b505afa1580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131391906126b7565b61135457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161134b9190612911565b60405180910390fd5b5b61135f8383611be5565b505050565b600f5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114b9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113de576113d985858585611cf0565b6114c6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161142792919061292c565b60206040518083038186803b15801561143f57600080fd5b505afa158015611453573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147791906126b7565b6114b857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114af9190612911565b60405180910390fd5b5b6114c585858585611cf0565b5b5050505050565b60606114d88261160c565b61150e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611518611d63565b90506000815114156115395760405180602001604052806000815250611564565b8061154384611df5565b6040516020016115549291906128c1565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b6000816116176117cd565b11158015611626575060005482105b8015611664575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061167682610f8b565b90508073ffffffffffffffffffffffffffffffffffffffff16611697611e4e565b73ffffffffffffffffffffffffffffffffffffffff16146116fa576116c3816116be611e4e565b611572565b6116f9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6117c9828260405180602001604052806000815250611e56565b5050565b600090565b60006117dd82611b17565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611844576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185084611ef3565b915091506118668187611861611e4e565b611f1a565b6118b25761187b86611876611e4e565b611572565b6118b1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611919576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119268686866001611f5e565b801561193157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119ff856119db888887611f64565b7c020000000000000000000000000000000000000000000000000000000017611f8c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611a87576000600185019050600060046000838152602001908152602001600020541415611a85576000548114611a84578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aef8686866001611fb7565b505050505050565b611b128383836040518060200160405280600081525061136a565b505050565b60008082905080611b266117cd565b11611bae57600054811015611bad5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bab575b6000811415611ba1576004600083600190039350838152602001908152602001600020549050611b76565b8092505050611be0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611bf2611e4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c9f611e4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ce491906129a1565b60405180910390a35050565b611cfb848484610b35565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d5d57611d2684848484611fbd565b611d5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060118054611d7290612cab565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9e90612cab565b8015611deb5780601f10611dc057610100808354040283529160200191611deb565b820191906000526020600020905b815481529060010190602001808311611dce57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e3957600184039350600a81066030018453600a8104905080611e3457611e39565b611e0e565b50828103602084039350808452505050919050565b600033905090565b611e60838361211d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eee57600080549050600083820390505b611ea06000868380600101945086611fbd565b611ed6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e8d578160005414611eeb57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f7b8686846122da565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe3611e4e565b8786866040518563ffffffff1660e01b81526004016120059493929190612955565b602060405180830381600087803b15801561201f57600080fd5b505af192505050801561205057506040513d601f19601f8201168201806040525081019061204d9190612711565b60015b6120ca573d8060008114612080576040519150601f19603f3d011682016040523d82523d6000602084013e612085565b606091505b506000815114156120c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082141561215e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61216b6000848385611f5e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121e2836121d36000866000611f64565b6121dc856122e3565b17611f8c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461228357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612248565b5060008214156122bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122d56000848385611fb7565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546122ff90612cab565b90600052602060002090601f0160209004810192826123215760008555612368565b82601f1061233a57805160ff1916838001178555612368565b82800160010185558215612368579182015b8281111561236757825182559160200191906001019061234c565b5b5090506123759190612379565b5090565b5b8082111561239257600081600090555060010161237a565b5090565b60006123a96123a484612a39565b612a14565b9050828152602081018484840111156123c5576123c4612e2e565b5b6123d0848285612c69565b509392505050565b60006123eb6123e684612a6a565b612a14565b90508281526020810184848401111561240757612406612e2e565b5b612412848285612c69565b509392505050565b60008135905061242981612e5b565b92915050565b60008135905061243e81612e72565b92915050565b60008151905061245381612e72565b92915050565b60008135905061246881612e89565b92915050565b60008151905061247d81612e89565b92915050565b600082601f83011261249857612497612e29565b5b81356124a8848260208601612396565b91505092915050565b600082601f8301126124c6576124c5612e29565b5b81356124d68482602086016123d8565b91505092915050565b6000813590506124ee81612ea0565b92915050565b60006020828403121561250a57612509612e38565b5b60006125188482850161241a565b91505092915050565b6000806040838503121561253857612537612e38565b5b60006125468582860161241a565b92505060206125578582860161241a565b9150509250929050565b60008060006060848603121561257a57612579612e38565b5b60006125888682870161241a565b93505060206125998682870161241a565b92505060406125aa868287016124df565b9150509250925092565b600080600080608085870312156125ce576125cd612e38565b5b60006125dc8782880161241a565b94505060206125ed8782880161241a565b93505060406125fe878288016124df565b925050606085013567ffffffffffffffff81111561261f5761261e612e33565b5b61262b87828801612483565b91505092959194509250565b6000806040838503121561264e5761264d612e38565b5b600061265c8582860161241a565b925050602061266d8582860161242f565b9150509250929050565b6000806040838503121561268e5761268d612e38565b5b600061269c8582860161241a565b92505060206126ad858286016124df565b9150509250929050565b6000602082840312156126cd576126cc612e38565b5b60006126db84828501612444565b91505092915050565b6000602082840312156126fa576126f9612e38565b5b600061270884828501612459565b91505092915050565b60006020828403121561272757612726612e38565b5b60006127358482850161246e565b91505092915050565b60006020828403121561275457612753612e38565b5b600082013567ffffffffffffffff81111561277257612771612e33565b5b61277e848285016124b1565b91505092915050565b60006020828403121561279d5761279c612e38565b5b60006127ab848285016124df565b91505092915050565b6127bd81612bbf565b82525050565b6127d46127cf82612bbf565b612d0e565b82525050565b6127e381612bd1565b82525050565b60006127f482612a9b565b6127fe8185612ab1565b935061280e818560208601612c78565b61281781612e3d565b840191505092915050565b61282b81612c33565b82525050565b600061283c82612aa6565b6128468185612ac2565b9350612856818560208601612c78565b61285f81612e3d565b840191505092915050565b600061287582612aa6565b61287f8185612ad3565b935061288f818560208601612c78565b80840191505092915050565b6128a481612c29565b82525050565b6128bb6128b682612c29565b612d32565b82525050565b60006128cd828561286a565b91506128d9828461286a565b91508190509392505050565b60006128f182856128aa565b60208201915061290182846127c3565b6014820191508190509392505050565b600060208201905061292660008301846127b4565b92915050565b600060408201905061294160008301856127b4565b61294e60208301846127b4565b9392505050565b600060808201905061296a60008301876127b4565b61297760208301866127b4565b612984604083018561289b565b818103606083015261299681846127e9565b905095945050505050565b60006020820190506129b660008301846127da565b92915050565b60006020820190506129d16000830184612822565b92915050565b600060208201905081810360008301526129f18184612831565b905092915050565b6000602082019050612a0e600083018461289b565b92915050565b6000612a1e612a2f565b9050612a2a8282612cdd565b919050565b6000604051905090565b600067ffffffffffffffff821115612a5457612a53612dfa565b5b612a5d82612e3d565b9050602081019050919050565b600067ffffffffffffffff821115612a8557612a84612dfa565b5b612a8e82612e3d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ae982612c29565b9150612af483612c29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2957612b28612d6d565b5b828201905092915050565b6000612b3f82612c29565b9150612b4a83612c29565b925082612b5a57612b59612d9c565b5b828204905092915050565b6000612b7082612c29565b9150612b7b83612c29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb457612bb3612d6d565b5b828202905092915050565b6000612bca82612c09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612c3e82612c45565b9050919050565b6000612c5082612c57565b9050919050565b6000612c6282612c09565b9050919050565b82818337600083830152505050565b60005b83811015612c96578082015181840152602081019050612c7b565b83811115612ca5576000848401525b50505050565b60006002820490506001821680612cc357607f821691505b60208210811415612cd757612cd6612dcb565b5b50919050565b612ce682612e3d565b810181811067ffffffffffffffff82111715612d0557612d04612dfa565b5b80604052505050565b6000612d1982612d20565b9050919050565b6000612d2b82612e4e565b9050919050565b6000819050919050565b6000612d4782612c29565b9150612d5283612c29565b925082612d6257612d61612d9c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612e6481612bbf565b8114612e6f57600080fd5b50565b612e7b81612bd1565b8114612e8657600080fd5b50565b612e9281612bdd565b8114612e9d57600080fd5b50565b612ea981612c29565b8114612eb457600080fd5b5056fea2646970667358221220651192363d607142f019a7fbf7d09ce56994cd32525988a7ab60bf669929037564736f6c63430008070033697066733a2f2f626166796265696663376134736168696e33716d6d73626a6c6b77656963367733646335367170796e636d69707a77323336777a757069687377652f

Deployed Bytecode

0x6080604052600436106101ed5760003560e01c80636352211e1161010d578063a035b1fe116100a0578063b88d4fde1161006f578063b88d4fde14610698578063c87b56dd146106b4578063d5abeb01146106f1578063e985e9c51461071c578063f968adbe14610759576101ed565b8063a035b1fe146105fd578063a0712d6814610628578063a22cb46514610644578063b12dab6e1461066d576101ed565b80638c770067116100dc5780638c770067146105515780638da5cb5b1461057c57806395d89b41146105a75780639a7110fe146105d2576101ed565b80636352211e146104815780636838c062146104be5780636c0360eb146104e957806370a0823114610514576101ed565b806319cae462116101855780633ccfd60b116101545780633ccfd60b146103fa57806341f434341461041157806342842e0e1461043c57806355f804b314610458576101ed565b806319cae4621461034b57806323b872dd1461037657806333c1420a146103925780633af32abf146103bd576101ed565b8063095ea7b3116101c1578063095ea7b3146102c25780631249c58b146102de57806317881cbf146102f557806318160ddd14610320576101ed565b80629a9b7b146101f257806301ffc9a71461021d57806306fdde031461025a578063081812fc14610285575b600080fd5b3480156101fe57600080fd5b50610207610784565b60405161021491906129f9565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f91906126e4565b61078a565b60405161025191906129a1565b60405180910390f35b34801561026657600080fd5b5061026f61081c565b60405161027c91906129d7565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612787565b6108ae565b6040516102b99190612911565b60405180910390f35b6102dc60048036038101906102d79190612677565b61092d565b005b3480156102ea57600080fd5b506102f3610a46565b005b34801561030157600080fd5b5061030a610ae2565b60405161031791906129f9565b60405180910390f35b34801561032c57600080fd5b50610335610ae8565b60405161034291906129f9565b60405180910390f35b34801561035757600080fd5b50610360610aff565b60405161036d91906129f9565b60405180910390f35b610390600480360381019061038b9190612561565b610b35565b005b34801561039e57600080fd5b506103a7610c95565b6040516103b491906129a1565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906124f4565b610ce2565b6040516103f191906129a1565b60405180910390f35b34801561040657600080fd5b5061040f610d02565b005b34801561041d57600080fd5b50610426610da5565b60405161043391906129bc565b60405180910390f35b61045660048036038101906104519190612561565b610db7565b005b34801561046457600080fd5b5061047f600480360381019061047a919061273e565b610f17565b005b34801561048d57600080fd5b506104a860048036038101906104a39190612787565b610f8b565b6040516104b59190612911565b60405180910390f35b3480156104ca57600080fd5b506104d3610f9d565b6040516104e09190612911565b60405180910390f35b3480156104f557600080fd5b506104fe610fc3565b60405161050b91906129d7565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906124f4565b611051565b60405161054891906129f9565b60405180910390f35b34801561055d57600080fd5b5061056661110a565b60405161057391906129f9565b60405180910390f35b34801561058857600080fd5b50610591611110565b60405161059e9190612911565b60405180910390f35b3480156105b357600080fd5b506105bc611136565b6040516105c991906129d7565b60405180910390f35b3480156105de57600080fd5b506105e76111c8565b6040516105f49190612911565b60405180910390f35b34801561060957600080fd5b506106126111ee565b60405161061f91906129f9565b60405180910390f35b610642600480360381019061063d9190612787565b6111f4565b005b34801561065057600080fd5b5061066b60048036038101906106669190612637565b61124b565b005b34801561067957600080fd5b50610682611364565b60405161068f91906129f9565b60405180910390f35b6106b260048036038101906106ad91906125b4565b61136a565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612787565b6114cd565b6040516106e891906129d7565b60405180910390f35b3480156106fd57600080fd5b5061070661156c565b60405161071391906129f9565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612521565b611572565b60405161075091906129a1565b60405180910390f35b34801561076557600080fd5b5061076e611606565b60405161077b91906129f9565b60405180910390f35b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082b90612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461085790612cab565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b98261160c565b6108ef576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a37576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109a592919061292c565b60206040518083038186803b1580156109bd57600080fd5b505afa1580156109d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906126b7565b610a3657806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a2d9190612911565b60405180910390fd5b5b610a41838361166b565b505050565b6013545a11610a5457600080fd5b610a5c610c95565b610a6557610ae0565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a9d57600080fd5b600b546001610aaa610ae8565b610ab49190612ade565b1115610abf57600080fd5b6000610aca33611051565b14610ad457600080fd5b610adf3360016117af565b5b565b600c5481565b6000610af26117cd565b6001546000540303905090565b6000600b54601554610b0f610ae8565b610b199190612b65565b610b239190612b34565b601454610b309190612ade565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c83573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba857610ba38484846117d2565b610c8f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bf192919061292c565b60206040518083038186803b158015610c0957600080fd5b505afa158015610c1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4191906126b7565b610c8257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c799190612911565b60405180910390fd5b5b610c8e8484846117d2565b5b50505050565b60008060644233604051602001610cad9291906128e5565b6040516020818303038152906040528051906020012060001c610cd09190612d3c565b9050610cda610aff565b811191505090565b60106020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5c57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610da2573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f05573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2a57610e25848484611af7565b610f11565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e7392919061292c565b60206040518083038186803b158015610e8b57600080fd5b505afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec391906126b7565b610f0457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610efb9190612911565b60405180910390fd5b5b610f10848484611af7565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7157600080fd5b8060119080519060200190610f879291906122f3565b5050565b6000610f9682611b17565b9050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60118054610fd090612cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffc90612cab565b80156110495780601f1061101e57610100808354040283529160200191611049565b820191906000526020600020905b81548152906001019060200180831161102c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600e5481565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461114590612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461117190612cab565b80156111be5780601f10611193576101008083540402835291602001916111be565b820191906000526020600020905b8154815290600101906020018083116111a157829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600b5481611200610ae8565b61120a9190612ade565b111561121557600080fd5b60125481111561122457600080fd5b600d54816112329190612b65565b34101561123e57600080fd5b61124833826117af565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611355576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112c392919061292c565b60206040518083038186803b1580156112db57600080fd5b505afa1580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131391906126b7565b61135457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161134b9190612911565b60405180910390fd5b5b61135f8383611be5565b505050565b600f5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114b9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113de576113d985858585611cf0565b6114c6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161142792919061292c565b60206040518083038186803b15801561143f57600080fd5b505afa158015611453573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147791906126b7565b6114b857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114af9190612911565b60405180910390fd5b5b6114c585858585611cf0565b5b5050505050565b60606114d88261160c565b61150e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611518611d63565b90506000815114156115395760405180602001604052806000815250611564565b8061154384611df5565b6040516020016115549291906128c1565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b6000816116176117cd565b11158015611626575060005482105b8015611664575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061167682610f8b565b90508073ffffffffffffffffffffffffffffffffffffffff16611697611e4e565b73ffffffffffffffffffffffffffffffffffffffff16146116fa576116c3816116be611e4e565b611572565b6116f9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6117c9828260405180602001604052806000815250611e56565b5050565b600090565b60006117dd82611b17565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611844576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185084611ef3565b915091506118668187611861611e4e565b611f1a565b6118b25761187b86611876611e4e565b611572565b6118b1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611919576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119268686866001611f5e565b801561193157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119ff856119db888887611f64565b7c020000000000000000000000000000000000000000000000000000000017611f8c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611a87576000600185019050600060046000838152602001908152602001600020541415611a85576000548114611a84578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aef8686866001611fb7565b505050505050565b611b128383836040518060200160405280600081525061136a565b505050565b60008082905080611b266117cd565b11611bae57600054811015611bad5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bab575b6000811415611ba1576004600083600190039350838152602001908152602001600020549050611b76565b8092505050611be0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611bf2611e4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c9f611e4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ce491906129a1565b60405180910390a35050565b611cfb848484610b35565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d5d57611d2684848484611fbd565b611d5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060118054611d7290612cab565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9e90612cab565b8015611deb5780601f10611dc057610100808354040283529160200191611deb565b820191906000526020600020905b815481529060010190602001808311611dce57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e3957600184039350600a81066030018453600a8104905080611e3457611e39565b611e0e565b50828103602084039350808452505050919050565b600033905090565b611e60838361211d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eee57600080549050600083820390505b611ea06000868380600101945086611fbd565b611ed6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e8d578160005414611eeb57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f7b8686846122da565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe3611e4e565b8786866040518563ffffffff1660e01b81526004016120059493929190612955565b602060405180830381600087803b15801561201f57600080fd5b505af192505050801561205057506040513d601f19601f8201168201806040525081019061204d9190612711565b60015b6120ca573d8060008114612080576040519150601f19603f3d011682016040523d82523d6000602084013e612085565b606091505b506000815114156120c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082141561215e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61216b6000848385611f5e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121e2836121d36000866000611f64565b6121dc856122e3565b17611f8c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461228357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612248565b5060008214156122bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122d56000848385611fb7565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546122ff90612cab565b90600052602060002090601f0160209004810192826123215760008555612368565b82601f1061233a57805160ff1916838001178555612368565b82800160010185558215612368579182015b8281111561236757825182559160200191906001019061234c565b5b5090506123759190612379565b5090565b5b8082111561239257600081600090555060010161237a565b5090565b60006123a96123a484612a39565b612a14565b9050828152602081018484840111156123c5576123c4612e2e565b5b6123d0848285612c69565b509392505050565b60006123eb6123e684612a6a565b612a14565b90508281526020810184848401111561240757612406612e2e565b5b612412848285612c69565b509392505050565b60008135905061242981612e5b565b92915050565b60008135905061243e81612e72565b92915050565b60008151905061245381612e72565b92915050565b60008135905061246881612e89565b92915050565b60008151905061247d81612e89565b92915050565b600082601f83011261249857612497612e29565b5b81356124a8848260208601612396565b91505092915050565b600082601f8301126124c6576124c5612e29565b5b81356124d68482602086016123d8565b91505092915050565b6000813590506124ee81612ea0565b92915050565b60006020828403121561250a57612509612e38565b5b60006125188482850161241a565b91505092915050565b6000806040838503121561253857612537612e38565b5b60006125468582860161241a565b92505060206125578582860161241a565b9150509250929050565b60008060006060848603121561257a57612579612e38565b5b60006125888682870161241a565b93505060206125998682870161241a565b92505060406125aa868287016124df565b9150509250925092565b600080600080608085870312156125ce576125cd612e38565b5b60006125dc8782880161241a565b94505060206125ed8782880161241a565b93505060406125fe878288016124df565b925050606085013567ffffffffffffffff81111561261f5761261e612e33565b5b61262b87828801612483565b91505092959194509250565b6000806040838503121561264e5761264d612e38565b5b600061265c8582860161241a565b925050602061266d8582860161242f565b9150509250929050565b6000806040838503121561268e5761268d612e38565b5b600061269c8582860161241a565b92505060206126ad858286016124df565b9150509250929050565b6000602082840312156126cd576126cc612e38565b5b60006126db84828501612444565b91505092915050565b6000602082840312156126fa576126f9612e38565b5b600061270884828501612459565b91505092915050565b60006020828403121561272757612726612e38565b5b60006127358482850161246e565b91505092915050565b60006020828403121561275457612753612e38565b5b600082013567ffffffffffffffff81111561277257612771612e33565b5b61277e848285016124b1565b91505092915050565b60006020828403121561279d5761279c612e38565b5b60006127ab848285016124df565b91505092915050565b6127bd81612bbf565b82525050565b6127d46127cf82612bbf565b612d0e565b82525050565b6127e381612bd1565b82525050565b60006127f482612a9b565b6127fe8185612ab1565b935061280e818560208601612c78565b61281781612e3d565b840191505092915050565b61282b81612c33565b82525050565b600061283c82612aa6565b6128468185612ac2565b9350612856818560208601612c78565b61285f81612e3d565b840191505092915050565b600061287582612aa6565b61287f8185612ad3565b935061288f818560208601612c78565b80840191505092915050565b6128a481612c29565b82525050565b6128bb6128b682612c29565b612d32565b82525050565b60006128cd828561286a565b91506128d9828461286a565b91508190509392505050565b60006128f182856128aa565b60208201915061290182846127c3565b6014820191508190509392505050565b600060208201905061292660008301846127b4565b92915050565b600060408201905061294160008301856127b4565b61294e60208301846127b4565b9392505050565b600060808201905061296a60008301876127b4565b61297760208301866127b4565b612984604083018561289b565b818103606083015261299681846127e9565b905095945050505050565b60006020820190506129b660008301846127da565b92915050565b60006020820190506129d16000830184612822565b92915050565b600060208201905081810360008301526129f18184612831565b905092915050565b6000602082019050612a0e600083018461289b565b92915050565b6000612a1e612a2f565b9050612a2a8282612cdd565b919050565b6000604051905090565b600067ffffffffffffffff821115612a5457612a53612dfa565b5b612a5d82612e3d565b9050602081019050919050565b600067ffffffffffffffff821115612a8557612a84612dfa565b5b612a8e82612e3d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ae982612c29565b9150612af483612c29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2957612b28612d6d565b5b828201905092915050565b6000612b3f82612c29565b9150612b4a83612c29565b925082612b5a57612b59612d9c565b5b828204905092915050565b6000612b7082612c29565b9150612b7b83612c29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb457612bb3612d6d565b5b828202905092915050565b6000612bca82612c09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612c3e82612c45565b9050919050565b6000612c5082612c57565b9050919050565b6000612c6282612c09565b9050919050565b82818337600083830152505050565b60005b83811015612c96578082015181840152602081019050612c7b565b83811115612ca5576000848401525b50505050565b60006002820490506001821680612cc357607f821691505b60208210811415612cd757612cd6612dcb565b5b50919050565b612ce682612e3d565b810181811067ffffffffffffffff82111715612d0557612d04612dfa565b5b80604052505050565b6000612d1982612d20565b9050919050565b6000612d2b82612e4e565b9050919050565b6000819050919050565b6000612d4782612c29565b9150612d5283612c29565b925082612d6257612d61612d9c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612e6481612bbf565b8114612e6f57600080fd5b50565b612e7b81612bd1565b8114612e8657600080fd5b50565b612e9281612bdd565b8114612e9d57600080fd5b50565b612ea981612c29565b8114612eb457600080fd5b5056fea2646970667358221220651192363d607142f019a7fbf7d09ce56994cd32525988a7ab60bf669929037564736f6c63430008070033

Deployed Bytecode Sourcemap

57954:3573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58182:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19550:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26943:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60740:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59251:289;;;;;;;;;;;;;:::i;:::-;;58259:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16203:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59740:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60913:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59548:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58443:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60334:109;;;;;;;;;;;;;:::i;:::-;;55319:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61092:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59138:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21845:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58090:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58501:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17387:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58340:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59886:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20628:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58138:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58294:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58781:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60556:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58390:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61279:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20838:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58222:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27892:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58610:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58182:33;;;;:::o;19550:639::-;19635:4;19974:10;19959:25;;:11;:25;;;;:102;;;;20051:10;20036:25;;:11;:25;;;;19959:102;:179;;;;20128:10;20113:25;;:11;:25;;;;19959:179;19939:199;;19550:639;;;:::o;20452:100::-;20506:13;20539:5;20532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20452:100;:::o;26943:218::-;27019:7;27044:16;27052:7;27044;:16::i;:::-;27039:64;;27069:34;;;;;;;;;;;;;;27039:64;27123:15;:24;27139:7;27123:24;;;;;;;;;;;:30;;;;;;;;;;;;27116:37;;26943:218;;;:::o;60740:165::-;60844:8;57361:1;55419:42;57313:45;;;:49;57309:225;;;55419:42;57384;;;57435:4;57442:8;57384:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57379:144;;57498:8;57479:28;;;;;;;;;;;:::i;:::-;;;;;;;;57379:144;57309:225;60865:32:::1;60879:8;60889:7;60865:13;:32::i;:::-;60740:165:::0;;;:::o;59251:289::-;59305:13;;59293:9;:25;59285:34;;;;;;59342:8;:6;:8::i;:::-;59337:22;;59352:7;;59337:22;59391:9;59377:23;;:10;:23;;;59369:32;;;;;;59441:9;;59436:1;59420:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;59412:39;;;;;;59495:1;59470:21;59480:10;59470:9;:21::i;:::-;:26;59462:35;;;;;;59508:24;59518:10;59530:1;59508:9;:24::i;:::-;59251:289;:::o;58259:28::-;;;;:::o;16203:323::-;16264:7;16492:15;:13;:15::i;:::-;16477:12;;16461:13;;:28;:46;16454:53;;16203:323;:::o;59740:138::-;59782:7;59861:9;;59843:15;;59827:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;59809:15;;:61;;;;:::i;:::-;59802:68;;59740:138;:::o;60913:171::-;61022:4;56615:1;55419:42;56567:45;;;:49;56563:539;;;56856:10;56848:18;;:4;:18;;;56844:85;;;61039:37:::1;61058:4;61064:2;61068:7;61039:18;:37::i;:::-;56907:7:::0;;56844:85;55419:42;56948;;;56999:4;57006:10;56948:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56943:148;;57064:10;57045:30;;;;;;;;;;;:::i;:::-;;;;;;;;56943:148;56563:539;61039:37:::1;61058:4;61064:2;61068:7;61039:18;:37::i;:::-;60913:171:::0;;;;;:::o;59548:184::-;59586:4;59603:11;59685:3;59652:15;59669:10;59635:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59625:56;;;;;;59617:65;;:71;;;;:::i;:::-;59603:85;;59712:12;:10;:12::i;:::-;59706:3;:18;59699:25;;;59548:184;:::o;58443:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;60334:109::-;59960:10;59951:19;;:5;;;;;;;;;;;:19;;;59943:28;;;;;;60392:10:::1;60384:28;;:51;60413:21;60384:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60334:109::o:0;55319:143::-;55419:42;55319:143;:::o;61092:179::-;61205:4;56615:1;55419:42;56567:45;;;:49;56563:539;;;56856:10;56848:18;;:4;:18;;;56844:85;;;61222:41:::1;61245:4;61251:2;61255:7;61222:22;:41::i;:::-;56907:7:::0;;56844:85;55419:42;56948;;;56999:4;57006:10;56948:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56943:148;;57064:10;57045:30;;;;;;;;;;;:::i;:::-;;;;;;;;56943:148;56563:539;61222:41:::1;61245:4;61251:2;61255:7;61222:22;:41::i;:::-;61092:179:::0;;;;;:::o;59138:100::-;59960:10;59951:19;;:5;;;;;;;;;;;:19;;;59943:28;;;;;;59222:8:::1;59212:7;:18;;;;;;;;;;;;:::i;:::-;;59138:100:::0;:::o;21845:152::-;21917:7;21960:27;21979:7;21960:18;:27::i;:::-;21937:52;;21845:152;;;:::o;58090:41::-;;;;;;;;;;;;;:::o;58501:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17387:233::-;17459:7;17500:1;17483:19;;:5;:19;;;17479:60;;;17511:28;;;;;;;;;;;;;;17479:60;11546:13;17557:18;:25;17576:5;17557:25;;;;;;;;;;;;;;;;:55;17550:62;;17387:233;;;:::o;58340:43::-;;;;:::o;59886:20::-;;;;;;;;;;;;;:::o;20628:104::-;20684:13;20717:7;20710:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20628:104;:::o;58138:37::-;;;;;;;;;;;;;:::o;58294:34::-;;;;:::o;58781:233::-;58871:9;;58861:6;58845:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;58837:44;;;;;;58910:8;;58900:6;:18;;58892:27;;;;;;58960:5;;58951:6;:14;;;;:::i;:::-;58938:9;:27;;58930:36;;;;;;58977:29;58987:10;58999:6;58977:9;:29::i;:::-;58781:233;:::o;60556:176::-;60660:8;57361:1;55419:42;57313:45;;;:49;57309:225;;;55419:42;57384;;;57435:4;57442:8;57384:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57379:144;;57498:8;57479:28;;;;;;;;;;;:::i;:::-;;;;;;;;57379:144;57309:225;60681:43:::1;60705:8;60715;60681:23;:43::i;:::-;60556:176:::0;;;:::o;58390:46::-;;;;:::o;61279:245::-;61447:4;56615:1;55419:42;56567:45;;;:49;56563:539;;;56856:10;56848:18;;:4;:18;;;56844:85;;;61469:47:::1;61492:4;61498:2;61502:7;61511:4;61469:22;:47::i;:::-;56907:7:::0;;56844:85;55419:42;56948;;;56999:4;57006:10;56948:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56943:148;;57064:10;57045:30;;;;;;;;;;;:::i;:::-;;;;;;;;56943:148;56563:539;61469:47:::1;61492:4;61498:2;61502:7;61511:4;61469:22;:47::i;:::-;61279:245:::0;;;;;;:::o;20838:318::-;20911:13;20942:16;20950:7;20942;:16::i;:::-;20937:59;;20967:29;;;;;;;;;;;;;;20937:59;21009:21;21033:10;:8;:10::i;:::-;21009:34;;21086:1;21067:7;21061:21;:26;;:87;;;;;;;;;;;;;;;;;21114:7;21123:18;21133:7;21123:9;:18::i;:::-;21097:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21061:87;21054:94;;;20838:318;;;:::o;58222:30::-;;;;:::o;27892:164::-;27989:4;28013:18;:25;28032:5;28013:25;;;;;;;;;;;;;;;:35;28039:8;28013:35;;;;;;;;;;;;;;;;;;;;;;;;;28006:42;;27892:164;;;;:::o;58610:28::-;;;;:::o;28314:282::-;28379:4;28435:7;28416:15;:13;:15::i;:::-;:26;;:66;;;;;28469:13;;28459:7;:23;28416:66;:153;;;;;28568:1;12322:8;28520:17;:26;28538:7;28520:26;;;;;;;;;;;;:44;:49;28416:153;28396:173;;28314:282;;;:::o;26376:408::-;26465:13;26481:16;26489:7;26481;:16::i;:::-;26465:32;;26537:5;26514:28;;:19;:17;:19::i;:::-;:28;;;26510:175;;26562:44;26579:5;26586:19;:17;:19::i;:::-;26562:16;:44::i;:::-;26557:128;;26634:35;;;;;;;;;;;;;;26557:128;26510:175;26730:2;26697:15;:24;26713:7;26697:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26768:7;26764:2;26748:28;;26757:5;26748:28;;;;;;;;;;;;26454:330;26376:408;;:::o;44454:112::-;44531:27;44541:2;44545:8;44531:27;;;;;;;;;;;;:9;:27::i;:::-;44454:112;;:::o;15719:92::-;15775:7;15719:92;:::o;30582:2825::-;30724:27;30754;30773:7;30754:18;:27::i;:::-;30724:57;;30839:4;30798:45;;30814:19;30798:45;;;30794:86;;30852:28;;;;;;;;;;;;;;30794:86;30894:27;30923:23;30950:35;30977:7;30950:26;:35::i;:::-;30893:92;;;;31085:68;31110:15;31127:4;31133:19;:17;:19::i;:::-;31085:24;:68::i;:::-;31080:180;;31173:43;31190:4;31196:19;:17;:19::i;:::-;31173:16;:43::i;:::-;31168:92;;31225:35;;;;;;;;;;;;;;31168:92;31080:180;31291:1;31277:16;;:2;:16;;;31273:52;;;31302:23;;;;;;;;;;;;;;31273:52;31338:43;31360:4;31366:2;31370:7;31379:1;31338:21;:43::i;:::-;31474:15;31471:160;;;31614:1;31593:19;31586:30;31471:160;32011:18;:24;32030:4;32011:24;;;;;;;;;;;;;;;;32009:26;;;;;;;;;;;;32080:18;:22;32099:2;32080:22;;;;;;;;;;;;;;;;32078:24;;;;;;;;;;;32402:146;32439:2;32488:45;32503:4;32509:2;32513:19;32488:14;:45::i;:::-;12602:8;32460:73;32402:18;:146::i;:::-;32373:17;:26;32391:7;32373:26;;;;;;;;;;;:175;;;;32719:1;12602:8;32668:19;:47;:52;32664:627;;;32741:19;32773:1;32763:7;:11;32741:33;;32930:1;32896:17;:30;32914:11;32896:30;;;;;;;;;;;;:35;32892:384;;;33034:13;;33019:11;:28;33015:242;;33214:19;33181:17;:30;33199:11;33181:30;;;;;;;;;;;:52;;;;33015:242;32892:384;32722:569;32664:627;33338:7;33334:2;33319:27;;33328:4;33319:27;;;;;;;;;;;;33357:42;33378:4;33384:2;33388:7;33397:1;33357:20;:42::i;:::-;30713:2694;;;30582:2825;;;:::o;33503:193::-;33649:39;33666:4;33672:2;33676:7;33649:39;;;;;;;;;;;;:16;:39::i;:::-;33503:193;;;:::o;23000:1275::-;23067:7;23087:12;23102:7;23087:22;;23170:4;23151:15;:13;:15::i;:::-;:23;23147:1061;;23204:13;;23197:4;:20;23193:1015;;;23242:14;23259:17;:23;23277:4;23259:23;;;;;;;;;;;;23242:40;;23376:1;12322:8;23348:6;:24;:29;23344:845;;;24013:113;24030:1;24020:6;:11;24013:113;;;24073:17;:25;24091:6;;;;;;;24073:25;;;;;;;;;;;;24064:34;;24013:113;;;24159:6;24152:13;;;;;;23344:845;23219:989;23193:1015;23147:1061;24236:31;;;;;;;;;;;;;;23000:1275;;;;:::o;27501:234::-;27648:8;27596:18;:39;27615:19;:17;:19::i;:::-;27596:39;;;;;;;;;;;;;;;:49;27636:8;27596:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27708:8;27672:55;;27687:19;:17;:19::i;:::-;27672:55;;;27718:8;27672:55;;;;;;:::i;:::-;;;;;;;;27501:234;;:::o;34294:407::-;34469:31;34482:4;34488:2;34492:7;34469:12;:31::i;:::-;34533:1;34515:2;:14;;;:19;34511:183;;34554:56;34585:4;34591:2;34595:7;34604:5;34554:30;:56::i;:::-;34549:145;;34638:40;;;;;;;;;;;;;;34549:145;34511:183;34294:407;;;;:::o;59022:108::-;59082:13;59115:7;59108:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59022:108;:::o;50829:1745::-;50894:17;51328:4;51321;51315:11;51311:22;51420:1;51414:4;51407:15;51495:4;51492:1;51488:12;51481:19;;51577:1;51572:3;51565:14;51681:3;51920:5;51902:428;51928:1;51902:428;;;51968:1;51963:3;51959:11;51952:18;;52139:2;52133:4;52129:13;52125:2;52121:22;52116:3;52108:36;52233:2;52227:4;52223:13;52215:21;;52300:4;52290:25;;52308:5;;52290:25;51902:428;;;51906:21;52369:3;52364;52360:13;52484:4;52479:3;52475:14;52468:21;;52549:6;52544:3;52537:19;50933:1634;;;50829:1745;;;:::o;50622:105::-;50682:7;50709:10;50702:17;;50622:105;:::o;43681:689::-;43812:19;43818:2;43822:8;43812:5;:19::i;:::-;43891:1;43873:2;:14;;;:19;43869:483;;43913:11;43927:13;;43913:27;;43959:13;43981:8;43975:3;:14;43959:30;;44008:233;44039:62;44078:1;44082:2;44086:7;;;;;;44095:5;44039:30;:62::i;:::-;44034:167;;44137:40;;;;;;;;;;;;;;44034:167;44236:3;44228:5;:11;44008:233;;44323:3;44306:13;;:20;44302:34;;44328:8;;;44302:34;43894:458;;43869:483;43681:689;;;:::o;29477:485::-;29579:27;29608:23;29649:38;29690:15;:24;29706:7;29690:24;;;;;;;;;;;29649:65;;29867:18;29844:41;;29924:19;29918:26;29899:45;;29829:126;29477:485;;;:::o;28705:659::-;28854:11;29019:16;29012:5;29008:28;28999:37;;29179:16;29168:9;29164:32;29151:45;;29329:15;29318:9;29315:30;29307:5;29296:9;29293:20;29290:56;29280:66;;28705:659;;;;;:::o;35363:159::-;;;;;:::o;49931:311::-;50066:7;50086:16;12726:3;50112:19;:41;;50086:68;;12726:3;50180:31;50191:4;50197:2;50201:9;50180:10;:31::i;:::-;50172:40;;:62;;50165:69;;;49931:311;;;;;:::o;24823:450::-;24903:14;25071:16;25064:5;25060:28;25051:37;;25248:5;25234:11;25209:23;25205:41;25202:52;25195:5;25192:63;25182:73;;24823:450;;;;:::o;36187:158::-;;;;;:::o;36785:716::-;36948:4;36994:2;36969:45;;;37015:19;:17;:19::i;:::-;37036:4;37042:7;37051:5;36969:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36965:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37269:1;37252:6;:13;:18;37248:235;;;37298:40;;;;;;;;;;;;;;37248:235;37441:6;37435:13;37426:6;37422:2;37418:15;37411:38;36965:529;37138:54;;;37128:64;;;:6;:64;;;;37121:71;;;36785:716;;;;;;:::o;37963:2966::-;38036:20;38059:13;;38036:36;;38099:1;38087:8;:13;38083:44;;;38109:18;;;;;;;;;;;;;;38083:44;38140:61;38170:1;38174:2;38178:12;38192:8;38140:21;:61::i;:::-;38684:1;11684:2;38654:1;:26;;38653:32;38641:8;:45;38615:18;:22;38634:2;38615:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38963:139;39000:2;39054:33;39077:1;39081:2;39085:1;39054:14;:33::i;:::-;39021:30;39042:8;39021:20;:30::i;:::-;:66;38963:18;:139::i;:::-;38929:17;:31;38947:12;38929:31;;;;;;;;;;;:173;;;;39119:16;39150:11;39179:8;39164:12;:23;39150:37;;39700:16;39696:2;39692:25;39680:37;;40072:12;40032:8;39991:1;39929:25;39870:1;39809;39782:335;40443:1;40429:12;40425:20;40383:346;40484:3;40475:7;40472:16;40383:346;;40702:7;40692:8;40689:1;40662:25;40659:1;40656;40651:59;40537:1;40528:7;40524:15;40513:26;;40383:346;;;40387:77;40774:1;40762:8;:13;40758:45;;;40784:19;;;;;;;;;;;;;;40758:45;40836:3;40820:13;:19;;;;38389:2462;;40861:60;40890:1;40894:2;40898:12;40912:8;40861:20;:60::i;:::-;38025:2904;37963:2966;;:::o;49632:147::-;49769:6;49632:147;;;;;:::o;25375:324::-;25445:14;25678:1;25668:8;25665:15;25639:24;25635:46;25625:56;;25375: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:118::-;7739:24;7757:5;7739:24;:::i;:::-;7734:3;7727:37;7652:118;;:::o;7776:157::-;7881:45;7901:24;7919:5;7901:24;:::i;:::-;7881:45;:::i;:::-;7876:3;7869:58;7776:157;;:::o;7939:109::-;8020:21;8035:5;8020:21;:::i;:::-;8015:3;8008:34;7939:109;;:::o;8054:360::-;8140:3;8168:38;8200:5;8168:38;:::i;:::-;8222:70;8285:6;8280:3;8222:70;:::i;:::-;8215:77;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:29;8400:6;8378:29;:::i;:::-;8373:3;8369:39;8362:46;;8144:270;8054:360;;;;:::o;8420:195::-;8539:69;8602:5;8539:69;:::i;:::-;8534:3;8527:82;8420:195;;:::o;8621:364::-;8709:3;8737:39;8770:5;8737:39;:::i;:::-;8792:71;8856:6;8851:3;8792:71;:::i;:::-;8785:78;;8872:52;8917:6;8912:3;8905:4;8898:5;8894:16;8872:52;:::i;:::-;8949:29;8971:6;8949:29;:::i;:::-;8944:3;8940:39;8933:46;;8713:272;8621:364;;;;:::o;8991:377::-;9097:3;9125:39;9158:5;9125:39;:::i;:::-;9180:89;9262:6;9257:3;9180:89;:::i;:::-;9173:96;;9278:52;9323:6;9318:3;9311:4;9304:5;9300:16;9278:52;:::i;:::-;9355:6;9350:3;9346:16;9339:23;;9101:267;8991:377;;;;:::o;9374:118::-;9461:24;9479:5;9461:24;:::i;:::-;9456:3;9449:37;9374:118;;:::o;9498:157::-;9603:45;9623:24;9641:5;9623:24;:::i;:::-;9603:45;:::i;:::-;9598:3;9591:58;9498:157;;:::o;9661:435::-;9841:3;9863:95;9954:3;9945:6;9863:95;:::i;:::-;9856:102;;9975:95;10066:3;10057:6;9975:95;:::i;:::-;9968:102;;10087:3;10080:10;;9661:435;;;;;:::o;10102:397::-;10242:3;10257:75;10328:3;10319:6;10257:75;:::i;:::-;10357:2;10352:3;10348:12;10341:19;;10370:75;10441:3;10432:6;10370:75;:::i;:::-;10470:2;10465:3;10461:12;10454:19;;10490:3;10483:10;;10102:397;;;;;:::o;10505:222::-;10598:4;10636:2;10625:9;10621:18;10613:26;;10649:71;10717:1;10706:9;10702:17;10693:6;10649:71;:::i;:::-;10505:222;;;;:::o;10733:332::-;10854:4;10892:2;10881:9;10877:18;10869:26;;10905:71;10973:1;10962:9;10958:17;10949:6;10905:71;:::i;:::-;10986:72;11054:2;11043:9;11039:18;11030:6;10986:72;:::i;:::-;10733:332;;;;;:::o;11071:640::-;11266:4;11304:3;11293:9;11289:19;11281:27;;11318:71;11386:1;11375:9;11371:17;11362:6;11318:71;:::i;:::-;11399:72;11467:2;11456:9;11452:18;11443:6;11399:72;:::i;:::-;11481;11549:2;11538:9;11534:18;11525:6;11481:72;:::i;:::-;11600:9;11594:4;11590:20;11585:2;11574:9;11570:18;11563:48;11628:76;11699:4;11690:6;11628:76;:::i;:::-;11620:84;;11071:640;;;;;;;:::o;11717:210::-;11804:4;11842:2;11831:9;11827:18;11819:26;;11855:65;11917:1;11906:9;11902:17;11893:6;11855:65;:::i;:::-;11717:210;;;;:::o;11933:286::-;12058:4;12096:2;12085:9;12081:18;12073:26;;12109:103;12209:1;12198:9;12194:17;12185:6;12109:103;:::i;:::-;11933:286;;;;:::o;12225:313::-;12338:4;12376:2;12365:9;12361:18;12353:26;;12425:9;12419:4;12415:20;12411:1;12400:9;12396:17;12389:47;12453:78;12526:4;12517:6;12453:78;:::i;:::-;12445:86;;12225:313;;;;:::o;12544:222::-;12637:4;12675:2;12664:9;12660:18;12652:26;;12688:71;12756:1;12745:9;12741:17;12732:6;12688:71;:::i;:::-;12544:222;;;;:::o;12772:129::-;12806:6;12833:20;;:::i;:::-;12823:30;;12862:33;12890:4;12882:6;12862:33;:::i;:::-;12772:129;;;:::o;12907:75::-;12940:6;12973:2;12967:9;12957:19;;12907:75;:::o;12988:307::-;13049:4;13139:18;13131:6;13128:30;13125:56;;;13161:18;;:::i;:::-;13125:56;13199:29;13221:6;13199:29;:::i;:::-;13191:37;;13283:4;13277;13273:15;13265:23;;12988:307;;;:::o;13301:308::-;13363:4;13453:18;13445:6;13442:30;13439:56;;;13475:18;;:::i;:::-;13439:56;13513:29;13535:6;13513:29;:::i;:::-;13505:37;;13597:4;13591;13587:15;13579:23;;13301:308;;;:::o;13615:98::-;13666:6;13700:5;13694:12;13684:22;;13615:98;;;:::o;13719:99::-;13771:6;13805:5;13799:12;13789:22;;13719:99;;;:::o;13824:168::-;13907:11;13941:6;13936:3;13929:19;13981:4;13976:3;13972:14;13957:29;;13824:168;;;;:::o;13998:169::-;14082:11;14116:6;14111:3;14104:19;14156:4;14151:3;14147:14;14132:29;;13998:169;;;;:::o;14173:148::-;14275:11;14312:3;14297:18;;14173:148;;;;:::o;14327:305::-;14367:3;14386:20;14404:1;14386:20;:::i;:::-;14381:25;;14420:20;14438:1;14420:20;:::i;:::-;14415:25;;14574:1;14506:66;14502:74;14499:1;14496:81;14493:107;;;14580:18;;:::i;:::-;14493:107;14624:1;14621;14617:9;14610:16;;14327:305;;;;:::o;14638:185::-;14678:1;14695:20;14713:1;14695:20;:::i;:::-;14690:25;;14729:20;14747:1;14729:20;:::i;:::-;14724:25;;14768:1;14758:35;;14773:18;;:::i;:::-;14758:35;14815:1;14812;14808:9;14803:14;;14638:185;;;;:::o;14829:348::-;14869:7;14892:20;14910:1;14892:20;:::i;:::-;14887:25;;14926:20;14944:1;14926:20;:::i;:::-;14921:25;;15114:1;15046:66;15042:74;15039:1;15036:81;15031:1;15024:9;15017:17;15013:105;15010:131;;;15121:18;;:::i;:::-;15010:131;15169:1;15166;15162:9;15151:20;;14829:348;;;;:::o;15183:96::-;15220:7;15249:24;15267:5;15249:24;:::i;:::-;15238:35;;15183:96;;;:::o;15285:90::-;15319:7;15362:5;15355:13;15348:21;15337:32;;15285:90;;;:::o;15381:149::-;15417:7;15457:66;15450:5;15446:78;15435:89;;15381:149;;;:::o;15536:126::-;15573:7;15613:42;15606:5;15602:54;15591:65;;15536:126;;;:::o;15668:77::-;15705:7;15734:5;15723:16;;15668:77;;;:::o;15751:158::-;15833:9;15866:37;15897:5;15866:37;:::i;:::-;15853:50;;15751:158;;;:::o;15915:126::-;15965:9;15998:37;16029:5;15998:37;:::i;:::-;15985:50;;15915:126;;;:::o;16047:113::-;16097:9;16130:24;16148:5;16130:24;:::i;:::-;16117:37;;16047:113;;;:::o;16166:154::-;16250:6;16245:3;16240;16227:30;16312:1;16303:6;16298:3;16294:16;16287:27;16166:154;;;:::o;16326:307::-;16394:1;16404:113;16418:6;16415:1;16412:13;16404:113;;;16503:1;16498:3;16494:11;16488:18;16484:1;16479:3;16475:11;16468:39;16440:2;16437:1;16433:10;16428:15;;16404:113;;;16535:6;16532:1;16529:13;16526:101;;;16615:1;16606:6;16601:3;16597:16;16590:27;16526:101;16375:258;16326:307;;;:::o;16639:320::-;16683:6;16720:1;16714:4;16710:12;16700:22;;16767:1;16761:4;16757:12;16788:18;16778:81;;16844:4;16836:6;16832:17;16822:27;;16778:81;16906:2;16898:6;16895:14;16875:18;16872:38;16869:84;;;16925:18;;:::i;:::-;16869:84;16690:269;16639:320;;;:::o;16965:281::-;17048:27;17070:4;17048:27;:::i;:::-;17040:6;17036:40;17178:6;17166:10;17163:22;17142:18;17130:10;17127:34;17124:62;17121:88;;;17189:18;;:::i;:::-;17121:88;17229:10;17225:2;17218:22;17008:238;16965:281;;:::o;17252:100::-;17291:7;17320:26;17340:5;17320:26;:::i;:::-;17309:37;;17252:100;;;:::o;17358:94::-;17397:7;17426:20;17440:5;17426:20;:::i;:::-;17415:31;;17358:94;;;:::o;17458:79::-;17497:7;17526:5;17515:16;;17458:79;;;:::o;17543:176::-;17575:1;17592:20;17610:1;17592:20;:::i;:::-;17587:25;;17626:20;17644:1;17626:20;:::i;:::-;17621:25;;17665:1;17655:35;;17670:18;;:::i;:::-;17655:35;17711:1;17708;17704:9;17699:14;;17543:176;;;;:::o;17725:180::-;17773:77;17770:1;17763:88;17870:4;17867:1;17860:15;17894:4;17891:1;17884:15;17911:180;17959:77;17956:1;17949:88;18056:4;18053:1;18046:15;18080:4;18077:1;18070:15;18097:180;18145:77;18142:1;18135:88;18242:4;18239:1;18232:15;18266:4;18263:1;18256:15;18283:180;18331:77;18328:1;18321:88;18428:4;18425:1;18418:15;18452:4;18449:1;18442:15;18469:117;18578:1;18575;18568:12;18592:117;18701:1;18698;18691:12;18715:117;18824:1;18821;18814:12;18838:117;18947:1;18944;18937:12;18961:102;19002:6;19053:2;19049:7;19044:2;19037:5;19033:14;19029:28;19019:38;;18961:102;;;:::o;19069:94::-;19102:8;19150:5;19146:2;19142:14;19121:35;;19069:94;;;:::o;19169:122::-;19242:24;19260:5;19242:24;:::i;:::-;19235:5;19232:35;19222:63;;19281:1;19278;19271:12;19222:63;19169:122;:::o;19297:116::-;19367:21;19382:5;19367:21;:::i;:::-;19360:5;19357:32;19347:60;;19403:1;19400;19393:12;19347:60;19297:116;:::o;19419:120::-;19491:23;19508:5;19491:23;:::i;:::-;19484:5;19481:34;19471:62;;19529:1;19526;19519:12;19471:62;19419:120;:::o;19545:122::-;19618:24;19636:5;19618:24;:::i;:::-;19611:5;19608:35;19598:63;;19657:1;19654;19647:12;19598:63;19545:122;:::o

Swarm Source

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