ETH Price: $3,489.12 (-0.03%)
Gas: 2 Gwei

Token

Gradient Abstractions by Noona (GAN)
 

Overview

Max Total Supply

333 GAN

Holders

275

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GAN
0xdef09bc71b8df2d91d10123d2937e8466a3a616c
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:
GradientAbstractionsByNoona

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0


pragma solidity ^0.8.7;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @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 GradientAbstractionsByNoona is ERC721A, DefaultOperatorFilterer {
    uint256 public maxSupply = 333; 
    uint256 private price = 0.003 ether;
    string public ShowPrice = "0.003 ether";
    uint256 private maxPerTx = 10;
    uint256 public maxFree = 100;
    string public baseURI;
    error LengthsDoNotMatch();

    function PaidMint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        require(amount <= maxPerTx);
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }
////// ФУНКЦИЯ ФРИМИНТА//////////////////////////////////////////////////////////////////
    function FreeMint() external {
        require(msg.sender == tx.origin);
        require (totalSupply() + 1  <= maxFree);
        _safeMint(msg.sender, 1);
    }

    function batchMintForAddresses(address[] calldata addresses_, uint256[] calldata amounts_) external onlyOwner {
        if (addresses_.length != amounts_.length) revert LengthsDoNotMatch();
        unchecked {
            for (uint32 i = 0; i < addresses_.length; i++) {
                _mint(addresses_[i], amounts_[i]);
            }
        }
    }

    address public owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }
/////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////// ВНУТРИ ERC721A ПИСАТЬ НАЗВАНИЕ КОЛЛЕКЦИИ (ОПЕНСИ) И НАЗВАНИЕ ТОКЕНА ////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////
    constructor() ERC721A("Gradient Abstractions by Noona", "GAN") {
        owner = msg.sender;
    }
    
    function setPrice(uint256 newPrice, uint256 maxFreeMint, uint256 maxPerT) external onlyOwner {
        price = newPrice;
        maxFree = maxFreeMint;
        maxPerTx = maxPerT;
    }

/////// ФУНКЦИЯ ДЛЯ ЗАГРУЗКИ МЕТАДАННЫХ, МЕТАДАННЫЕ СОЗДАВАТЬ НА mintplex.xyz, через NFT UP //////
    function setBaseURI(string memory newBaseURI_) external onlyOwner {
        baseURI = newBaseURI_;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(baseURI, _toString(tokenId), ".json"));
    }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function cutS(uint256 maxT) external onlyOwner {
        maxSupply = maxT;
    }

    /////////////////////////////
    // 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":"LengthsDoNotMatch","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":"FreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ShowPrice","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"batchMintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxT","type":"uint256"}],"name":"cutS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","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":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"uint256","name":"maxFreeMint","type":"uint256"},{"internalType":"uint256","name":"maxPerT","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261014d600855660aa87bee5380006009556040518060400160405280600b81526020017f302e303033206574686572000000000000000000000000000000000000000000815250600a90816200005b9190620005f4565b50600a600b556064600c553480156200007357600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601e81526020017f4772616469656e74204162737472616374696f6e73206279204e6f6f6e6100008152506040518060400160405280600381526020017f47414e00000000000000000000000000000000000000000000000000000000008152508160029081620001089190620005f4565b5080600390816200011a9190620005f4565b506200012b6200037160201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000328578015620001ee576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b492919062000720565b600060405180830381600087803b158015620001cf57600080fd5b505af1158015620001e4573d6000803e3d6000fd5b5050505062000327565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026e92919062000720565b600060405180830381600087803b1580156200028957600080fd5b505af11580156200029e573d6000803e3d6000fd5b5050505062000326565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f191906200074d565b600060405180830381600087803b1580156200030c57600080fd5b505af115801562000321573d6000803e3d6000fd5b505050505b5b5b505033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200076a565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003fc57607f821691505b602082108103620004125762000411620003b4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200047c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200043d565b6200048886836200043d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004d5620004cf620004c984620004a0565b620004aa565b620004a0565b9050919050565b6000819050919050565b620004f183620004b4565b620005096200050082620004dc565b8484546200044a565b825550505050565b600090565b6200052062000511565b6200052d818484620004e6565b505050565b5b8181101562000555576200054960008262000516565b60018101905062000533565b5050565b601f821115620005a4576200056e8162000418565b62000579846200042d565b8101602085101562000589578190505b620005a162000598856200042d565b83018262000532565b50505b505050565b600082821c905092915050565b6000620005c960001984600802620005a9565b1980831691505092915050565b6000620005e48383620005b6565b9150826002028217905092915050565b620005ff826200037a565b67ffffffffffffffff8111156200061b576200061a62000385565b5b620006278254620003e3565b6200063482828562000559565b600060209050601f8311600181146200066c576000841562000657578287015190505b620006638582620005d6565b865550620006d3565b601f1984166200067c8662000418565b60005b82811015620006a6578489015182556001820191506020850194506020810190506200067f565b86831015620006c65784890151620006c2601f891682620005b6565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200070882620006db565b9050919050565b6200071a81620006fb565b82525050565b60006040820190506200073760008301856200070f565b6200074660208301846200070f565b9392505050565b60006020820190506200076460008301846200070f565b92915050565b613062806200077a6000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063de53f38a11610064578063de53f38a14610580578063e00ef32a146105a9578063e8695ff4146105c5578063e985e9c5146105dc5761019c565b8063b88d4fde146104fc578063c87b56dd14610518578063d5abeb01146105555761019c565b80638da5cb5b116100c65780638da5cb5b1461045457806395d89b411461047f578063a22cb465146104aa578063aa585d56146104d35761019c565b80636c0360eb146103c357806370a08231146103ee57806370f02af41461042b5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e14610316578063485a68a31461033257806355f804b31461035d5780636352211e146103865761019c565b806323b872dd146102b85780633ccfd60b146102d457806341f43434146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd146102625780631b5a29c61461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906121c0565b610619565b6040516101d59190612208565b60405180910390f35b3480156101ea57600080fd5b506101f36106ab565b60405161020091906122b3565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061230b565b61073d565b60405161023d9190612379565b60405180910390f35b610260600480360381019061025b91906123c0565b6107bc565b005b34801561026e57600080fd5b506102776108c6565b604051610284919061240f565b60405180910390f35b34801561029957600080fd5b506102a26108dd565b6040516102af91906122b3565b60405180910390f35b6102d260048036038101906102cd919061242a565b61096b565b005b3480156102e057600080fd5b506102e9610abb565b005b3480156102f757600080fd5b50610300610b5e565b60405161030d91906124dc565b60405180910390f35b610330600480360381019061032b919061242a565b610b70565b005b34801561033e57600080fd5b50610347610cc0565b604051610354919061240f565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061262c565b610cc6565b005b34801561039257600080fd5b506103ad60048036038101906103a8919061230b565b610d33565b6040516103ba9190612379565b60405180910390f35b3480156103cf57600080fd5b506103d8610d45565b6040516103e591906122b3565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612675565b610dd3565b604051610422919061240f565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d919061230b565b610e8b565b005b34801561046057600080fd5b50610469610eef565b6040516104769190612379565b60405180910390f35b34801561048b57600080fd5b50610494610f15565b6040516104a191906122b3565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906126ce565b610fa7565b005b3480156104df57600080fd5b506104fa60048036038101906104f5919061270e565b6110b1565b005b61051660048036038101906105119190612802565b611125565b005b34801561052457600080fd5b5061053f600480360381019061053a919061230b565b611278565b60405161054c91906122b3565b60405180910390f35b34801561056157600080fd5b5061056a6112ac565b604051610577919061240f565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a2919061293b565b6112b2565b005b6105c360048036038101906105be919061230b565b6113c9565b005b3480156105d157600080fd5b506105da611420565b005b3480156105e857600080fd5b5061060360048036038101906105fe91906129bc565b611487565b6040516106109190612208565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ba90612a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612a2b565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b60006107488261151b565b61077e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610834929190612a5c565b602060405180830381865afa158015610851573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108759190612a9a565b6108b657806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108ad9190612379565b60405180910390fd5b5b6108c1838361157a565b505050565b60006108d06116be565b6001546000540303905090565b600a80546108ea90612a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612a2b565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b505050505081565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aa9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109dd576109d88484846116c7565b610ab5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a26929190612a5c565b602060405180830381865afa158015610a43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a679190612a9a565b610aa857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a9f9190612379565b60405180910390fd5b5b610ab48484846116c7565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b1557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610cae573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be257610bdd8484846119e9565b610cba565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c2b929190612a5c565b602060405180830381865afa158015610c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6c9190612a9a565b610cad57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ca49190612379565b60405180910390fd5b5b610cb98484846119e9565b5b50505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d2057600080fd5b80600d9081610d2f9190612c69565b5050565b6000610d3e82611a09565b9050919050565b600d8054610d5290612a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90612a2b565b8015610dcb5780601f10610da057610100808354040283529160200191610dcb565b820191906000526020600020905b815481529060010190602001808311610dae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ee557600080fd5b8060088190555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f2490612a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5090612a2b565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612a5c565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612a9a565b6110a157806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110989190612379565b60405180910390fd5b5b6110ac8383611ad5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461110b57600080fd5b8260098190555081600c8190555080600b81905550505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611264573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111985761119385858585611be0565b611271565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111e1929190612a5c565b602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190612a9a565b61126357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125a9190612379565b60405180910390fd5b5b61127085858585611be0565b5b5050505050565b6060600d61128583611c53565b604051602001611296929190612e46565b6040516020818303038152906040529050919050565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130c57600080fd5b81819050848490501461134b576040517faa81c86100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848490508163ffffffff1610156113c2576113b585858363ffffffff1681811061137b5761137a612e75565b5b90506020020160208101906113909190612675565b84848463ffffffff168181106113a9576113a8612e75565b5b90506020020135611ca3565b808060010191505061134e565b5050505050565b600854816113d56108c6565b6113df9190612ed3565b11156113ea57600080fd5b600b548111156113f957600080fd5b600954816114079190612f07565b34101561141357600080fd5b61141d3382611e5e565b50565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461145857600080fd5b600c5460016114656108c6565b61146f9190612ed3565b111561147a57600080fd5b611485336001611e5e565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816115266116be565b11158015611535575060005482105b8015611573575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061158582610d33565b90508073ffffffffffffffffffffffffffffffffffffffff166115a6611e7c565b73ffffffffffffffffffffffffffffffffffffffff1614611609576115d2816115cd611e7c565b611487565b611608576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006116d282611a09565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611739576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061174584611e84565b9150915061175b8187611756611e7c565b611eab565b6117a7576117708661176b611e7c565b611487565b6117a6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361180d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181a8686866001611eef565b801561182557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118f3856118cf888887611ef5565b7c020000000000000000000000000000000000000000000000000000000017611f1d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119795760006001850190506000600460008381526020019081526020016000205403611977576000548114611976578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119e18686866001611f48565b505050505050565b611a0483838360405180602001604052806000815250611125565b505050565b60008082905080611a186116be565b11611a9e57600054811015611a9d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a9b575b60008103611a91576004600083600190039350838152602001908152602001600020549050611a67565b8092505050611ad0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611ae2611e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8f611e7c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bd49190612208565b60405180910390a35050565b611beb84848461096b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4d57611c1684848484611f4e565b611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c8e57600184039350600a81066030018453600a8104905080611c6c575b50828103602084039350808452505050919050565b60008054905060008203611ce3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf06000848385611eef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6783611d586000866000611ef5565b611d618561209e565b17611f1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dcd565b5060008203611e43576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e596000848385611f48565b505050565b611e788282604051806020016040528060008152506120ae565b5050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f0c86868461214b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f74611e7c565b8786866040518563ffffffff1660e01b8152600401611f969493929190612f9e565b6020604051808303816000875af1925050508015611fd257506040513d601f19601f82011682018060405250810190611fcf9190612fff565b60015b61204b573d8060008114612002576040519150601f19603f3d011682016040523d82523d6000602084013e612007565b606091505b506000815103612043576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b6120b88383611ca3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461214657600080549050600083820390505b6120f86000868380600101945086611f4e565b61212e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120e557816000541461214357600080fd5b50505b505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61219d81612168565b81146121a857600080fd5b50565b6000813590506121ba81612194565b92915050565b6000602082840312156121d6576121d561215e565b5b60006121e4848285016121ab565b91505092915050565b60008115159050919050565b612202816121ed565b82525050565b600060208201905061221d60008301846121f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225d578082015181840152602081019050612242565b60008484015250505050565b6000601f19601f8301169050919050565b600061228582612223565b61228f818561222e565b935061229f81856020860161223f565b6122a881612269565b840191505092915050565b600060208201905081810360008301526122cd818461227a565b905092915050565b6000819050919050565b6122e8816122d5565b81146122f357600080fd5b50565b600081359050612305816122df565b92915050565b6000602082840312156123215761232061215e565b5b600061232f848285016122f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236382612338565b9050919050565b61237381612358565b82525050565b600060208201905061238e600083018461236a565b92915050565b61239d81612358565b81146123a857600080fd5b50565b6000813590506123ba81612394565b92915050565b600080604083850312156123d7576123d661215e565b5b60006123e5858286016123ab565b92505060206123f6858286016122f6565b9150509250929050565b612409816122d5565b82525050565b60006020820190506124246000830184612400565b92915050565b6000806000606084860312156124435761244261215e565b5b6000612451868287016123ab565b9350506020612462868287016123ab565b9250506040612473868287016122f6565b9150509250925092565b6000819050919050565b60006124a261249d61249884612338565b61247d565b612338565b9050919050565b60006124b482612487565b9050919050565b60006124c6826124a9565b9050919050565b6124d6816124bb565b82525050565b60006020820190506124f160008301846124cd565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61253982612269565b810181811067ffffffffffffffff8211171561255857612557612501565b5b80604052505050565b600061256b612154565b90506125778282612530565b919050565b600067ffffffffffffffff82111561259757612596612501565b5b6125a082612269565b9050602081019050919050565b82818337600083830152505050565b60006125cf6125ca8461257c565b612561565b9050828152602081018484840111156125eb576125ea6124fc565b5b6125f68482856125ad565b509392505050565b600082601f830112612613576126126124f7565b5b81356126238482602086016125bc565b91505092915050565b6000602082840312156126425761264161215e565b5b600082013567ffffffffffffffff8111156126605761265f612163565b5b61266c848285016125fe565b91505092915050565b60006020828403121561268b5761268a61215e565b5b6000612699848285016123ab565b91505092915050565b6126ab816121ed565b81146126b657600080fd5b50565b6000813590506126c8816126a2565b92915050565b600080604083850312156126e5576126e461215e565b5b60006126f3858286016123ab565b9250506020612704858286016126b9565b9150509250929050565b6000806000606084860312156127275761272661215e565b5b6000612735868287016122f6565b9350506020612746868287016122f6565b9250506040612757868287016122f6565b9150509250925092565b600067ffffffffffffffff82111561277c5761277b612501565b5b61278582612269565b9050602081019050919050565b60006127a56127a084612761565b612561565b9050828152602081018484840111156127c1576127c06124fc565b5b6127cc8482856125ad565b509392505050565b600082601f8301126127e9576127e86124f7565b5b81356127f9848260208601612792565b91505092915050565b6000806000806080858703121561281c5761281b61215e565b5b600061282a878288016123ab565b945050602061283b878288016123ab565b935050604061284c878288016122f6565b925050606085013567ffffffffffffffff81111561286d5761286c612163565b5b612879878288016127d4565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126128a5576128a46124f7565b5b8235905067ffffffffffffffff8111156128c2576128c1612885565b5b6020830191508360208202830111156128de576128dd61288a565b5b9250929050565b60008083601f8401126128fb576128fa6124f7565b5b8235905067ffffffffffffffff81111561291857612917612885565b5b6020830191508360208202830111156129345761293361288a565b5b9250929050565b600080600080604085870312156129555761295461215e565b5b600085013567ffffffffffffffff81111561297357612972612163565b5b61297f8782880161288f565b9450945050602085013567ffffffffffffffff8111156129a2576129a1612163565b5b6129ae878288016128e5565b925092505092959194509250565b600080604083850312156129d3576129d261215e565b5b60006129e1858286016123ab565b92505060206129f2858286016123ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4357607f821691505b602082108103612a5657612a556129fc565b5b50919050565b6000604082019050612a71600083018561236a565b612a7e602083018461236a565b9392505050565b600081519050612a94816126a2565b92915050565b600060208284031215612ab057612aaf61215e565b5b6000612abe84828501612a85565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612b297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612aec565b612b338683612aec565b95508019841693508086168417925050509392505050565b6000612b66612b61612b5c846122d5565b61247d565b6122d5565b9050919050565b6000819050919050565b612b8083612b4b565b612b94612b8c82612b6d565b848454612af9565b825550505050565b600090565b612ba9612b9c565b612bb4818484612b77565b505050565b5b81811015612bd857612bcd600082612ba1565b600181019050612bba565b5050565b601f821115612c1d57612bee81612ac7565b612bf784612adc565b81016020851015612c06578190505b612c1a612c1285612adc565b830182612bb9565b50505b505050565b600082821c905092915050565b6000612c4060001984600802612c22565b1980831691505092915050565b6000612c598383612c2f565b9150826002028217905092915050565b612c7282612223565b67ffffffffffffffff811115612c8b57612c8a612501565b5b612c958254612a2b565b612ca0828285612bdc565b600060209050601f831160018114612cd35760008415612cc1578287015190505b612ccb8582612c4d565b865550612d33565b601f198416612ce186612ac7565b60005b82811015612d0957848901518255600182019150602085019450602081019050612ce4565b86831015612d265784890151612d22601f891682612c2f565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612d5381612a2b565b612d5d8186612d3b565b94506001821660008114612d785760018114612d8d57612dc0565b60ff1983168652811515820286019350612dc0565b612d9685612ac7565b60005b83811015612db857815481890152600182019150602081019050612d99565b838801955050505b50505092915050565b6000612dd482612223565b612dde8185612d3b565b9350612dee81856020860161223f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e30600583612d3b565b9150612e3b82612dfa565b600582019050919050565b6000612e528285612d46565b9150612e5e8284612dc9565b9150612e6982612e23565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ede826122d5565b9150612ee9836122d5565b9250828201905080821115612f0157612f00612ea4565b5b92915050565b6000612f12826122d5565b9150612f1d836122d5565b9250828202612f2b816122d5565b91508282048414831517612f4257612f41612ea4565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b6000612f7082612f49565b612f7a8185612f54565b9350612f8a81856020860161223f565b612f9381612269565b840191505092915050565b6000608082019050612fb3600083018761236a565b612fc0602083018661236a565b612fcd6040830185612400565b8181036060830152612fdf8184612f65565b905095945050505050565b600081519050612ff981612194565b92915050565b6000602082840312156130155761301461215e565b5b600061302384828501612fea565b9150509291505056fea2646970667358221220be644e94f67f9448290229321e5278bf7a08064ab8fecf0e3ab8dd640c8a752964736f6c63430008110033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063de53f38a11610064578063de53f38a14610580578063e00ef32a146105a9578063e8695ff4146105c5578063e985e9c5146105dc5761019c565b8063b88d4fde146104fc578063c87b56dd14610518578063d5abeb01146105555761019c565b80638da5cb5b116100c65780638da5cb5b1461045457806395d89b411461047f578063a22cb465146104aa578063aa585d56146104d35761019c565b80636c0360eb146103c357806370a08231146103ee57806370f02af41461042b5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e14610316578063485a68a31461033257806355f804b31461035d5780636352211e146103865761019c565b806323b872dd146102b85780633ccfd60b146102d457806341f43434146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd146102625780631b5a29c61461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906121c0565b610619565b6040516101d59190612208565b60405180910390f35b3480156101ea57600080fd5b506101f36106ab565b60405161020091906122b3565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061230b565b61073d565b60405161023d9190612379565b60405180910390f35b610260600480360381019061025b91906123c0565b6107bc565b005b34801561026e57600080fd5b506102776108c6565b604051610284919061240f565b60405180910390f35b34801561029957600080fd5b506102a26108dd565b6040516102af91906122b3565b60405180910390f35b6102d260048036038101906102cd919061242a565b61096b565b005b3480156102e057600080fd5b506102e9610abb565b005b3480156102f757600080fd5b50610300610b5e565b60405161030d91906124dc565b60405180910390f35b610330600480360381019061032b919061242a565b610b70565b005b34801561033e57600080fd5b50610347610cc0565b604051610354919061240f565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061262c565b610cc6565b005b34801561039257600080fd5b506103ad60048036038101906103a8919061230b565b610d33565b6040516103ba9190612379565b60405180910390f35b3480156103cf57600080fd5b506103d8610d45565b6040516103e591906122b3565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612675565b610dd3565b604051610422919061240f565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d919061230b565b610e8b565b005b34801561046057600080fd5b50610469610eef565b6040516104769190612379565b60405180910390f35b34801561048b57600080fd5b50610494610f15565b6040516104a191906122b3565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906126ce565b610fa7565b005b3480156104df57600080fd5b506104fa60048036038101906104f5919061270e565b6110b1565b005b61051660048036038101906105119190612802565b611125565b005b34801561052457600080fd5b5061053f600480360381019061053a919061230b565b611278565b60405161054c91906122b3565b60405180910390f35b34801561056157600080fd5b5061056a6112ac565b604051610577919061240f565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a2919061293b565b6112b2565b005b6105c360048036038101906105be919061230b565b6113c9565b005b3480156105d157600080fd5b506105da611420565b005b3480156105e857600080fd5b5061060360048036038101906105fe91906129bc565b611487565b6040516106109190612208565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ba90612a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612a2b565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b60006107488261151b565b61077e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610834929190612a5c565b602060405180830381865afa158015610851573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108759190612a9a565b6108b657806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108ad9190612379565b60405180910390fd5b5b6108c1838361157a565b505050565b60006108d06116be565b6001546000540303905090565b600a80546108ea90612a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612a2b565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b505050505081565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aa9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109dd576109d88484846116c7565b610ab5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a26929190612a5c565b602060405180830381865afa158015610a43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a679190612a9a565b610aa857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a9f9190612379565b60405180910390fd5b5b610ab48484846116c7565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b1557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610cae573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be257610bdd8484846119e9565b610cba565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c2b929190612a5c565b602060405180830381865afa158015610c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6c9190612a9a565b610cad57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ca49190612379565b60405180910390fd5b5b610cb98484846119e9565b5b50505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d2057600080fd5b80600d9081610d2f9190612c69565b5050565b6000610d3e82611a09565b9050919050565b600d8054610d5290612a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90612a2b565b8015610dcb5780601f10610da057610100808354040283529160200191610dcb565b820191906000526020600020905b815481529060010190602001808311610dae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ee557600080fd5b8060088190555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f2490612a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5090612a2b565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612a5c565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612a9a565b6110a157806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110989190612379565b60405180910390fd5b5b6110ac8383611ad5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461110b57600080fd5b8260098190555081600c8190555080600b81905550505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611264573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111985761119385858585611be0565b611271565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111e1929190612a5c565b602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190612a9a565b61126357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125a9190612379565b60405180910390fd5b5b61127085858585611be0565b5b5050505050565b6060600d61128583611c53565b604051602001611296929190612e46565b6040516020818303038152906040529050919050565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130c57600080fd5b81819050848490501461134b576040517faa81c86100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848490508163ffffffff1610156113c2576113b585858363ffffffff1681811061137b5761137a612e75565b5b90506020020160208101906113909190612675565b84848463ffffffff168181106113a9576113a8612e75565b5b90506020020135611ca3565b808060010191505061134e565b5050505050565b600854816113d56108c6565b6113df9190612ed3565b11156113ea57600080fd5b600b548111156113f957600080fd5b600954816114079190612f07565b34101561141357600080fd5b61141d3382611e5e565b50565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461145857600080fd5b600c5460016114656108c6565b61146f9190612ed3565b111561147a57600080fd5b611485336001611e5e565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816115266116be565b11158015611535575060005482105b8015611573575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061158582610d33565b90508073ffffffffffffffffffffffffffffffffffffffff166115a6611e7c565b73ffffffffffffffffffffffffffffffffffffffff1614611609576115d2816115cd611e7c565b611487565b611608576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006116d282611a09565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611739576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061174584611e84565b9150915061175b8187611756611e7c565b611eab565b6117a7576117708661176b611e7c565b611487565b6117a6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361180d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181a8686866001611eef565b801561182557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118f3856118cf888887611ef5565b7c020000000000000000000000000000000000000000000000000000000017611f1d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119795760006001850190506000600460008381526020019081526020016000205403611977576000548114611976578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119e18686866001611f48565b505050505050565b611a0483838360405180602001604052806000815250611125565b505050565b60008082905080611a186116be565b11611a9e57600054811015611a9d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a9b575b60008103611a91576004600083600190039350838152602001908152602001600020549050611a67565b8092505050611ad0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611ae2611e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8f611e7c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bd49190612208565b60405180910390a35050565b611beb84848461096b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4d57611c1684848484611f4e565b611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c8e57600184039350600a81066030018453600a8104905080611c6c575b50828103602084039350808452505050919050565b60008054905060008203611ce3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf06000848385611eef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6783611d586000866000611ef5565b611d618561209e565b17611f1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dcd565b5060008203611e43576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e596000848385611f48565b505050565b611e788282604051806020016040528060008152506120ae565b5050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f0c86868461214b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f74611e7c565b8786866040518563ffffffff1660e01b8152600401611f969493929190612f9e565b6020604051808303816000875af1925050508015611fd257506040513d601f19601f82011682018060405250810190611fcf9190612fff565b60015b61204b573d8060008114612002576040519150601f19603f3d011682016040523d82523d6000602084013e612007565b606091505b506000815103612043576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b6120b88383611ca3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461214657600080549050600083820390505b6120f86000868380600101945086611f4e565b61212e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120e557816000541461214357600080fd5b50505b505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61219d81612168565b81146121a857600080fd5b50565b6000813590506121ba81612194565b92915050565b6000602082840312156121d6576121d561215e565b5b60006121e4848285016121ab565b91505092915050565b60008115159050919050565b612202816121ed565b82525050565b600060208201905061221d60008301846121f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225d578082015181840152602081019050612242565b60008484015250505050565b6000601f19601f8301169050919050565b600061228582612223565b61228f818561222e565b935061229f81856020860161223f565b6122a881612269565b840191505092915050565b600060208201905081810360008301526122cd818461227a565b905092915050565b6000819050919050565b6122e8816122d5565b81146122f357600080fd5b50565b600081359050612305816122df565b92915050565b6000602082840312156123215761232061215e565b5b600061232f848285016122f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236382612338565b9050919050565b61237381612358565b82525050565b600060208201905061238e600083018461236a565b92915050565b61239d81612358565b81146123a857600080fd5b50565b6000813590506123ba81612394565b92915050565b600080604083850312156123d7576123d661215e565b5b60006123e5858286016123ab565b92505060206123f6858286016122f6565b9150509250929050565b612409816122d5565b82525050565b60006020820190506124246000830184612400565b92915050565b6000806000606084860312156124435761244261215e565b5b6000612451868287016123ab565b9350506020612462868287016123ab565b9250506040612473868287016122f6565b9150509250925092565b6000819050919050565b60006124a261249d61249884612338565b61247d565b612338565b9050919050565b60006124b482612487565b9050919050565b60006124c6826124a9565b9050919050565b6124d6816124bb565b82525050565b60006020820190506124f160008301846124cd565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61253982612269565b810181811067ffffffffffffffff8211171561255857612557612501565b5b80604052505050565b600061256b612154565b90506125778282612530565b919050565b600067ffffffffffffffff82111561259757612596612501565b5b6125a082612269565b9050602081019050919050565b82818337600083830152505050565b60006125cf6125ca8461257c565b612561565b9050828152602081018484840111156125eb576125ea6124fc565b5b6125f68482856125ad565b509392505050565b600082601f830112612613576126126124f7565b5b81356126238482602086016125bc565b91505092915050565b6000602082840312156126425761264161215e565b5b600082013567ffffffffffffffff8111156126605761265f612163565b5b61266c848285016125fe565b91505092915050565b60006020828403121561268b5761268a61215e565b5b6000612699848285016123ab565b91505092915050565b6126ab816121ed565b81146126b657600080fd5b50565b6000813590506126c8816126a2565b92915050565b600080604083850312156126e5576126e461215e565b5b60006126f3858286016123ab565b9250506020612704858286016126b9565b9150509250929050565b6000806000606084860312156127275761272661215e565b5b6000612735868287016122f6565b9350506020612746868287016122f6565b9250506040612757868287016122f6565b9150509250925092565b600067ffffffffffffffff82111561277c5761277b612501565b5b61278582612269565b9050602081019050919050565b60006127a56127a084612761565b612561565b9050828152602081018484840111156127c1576127c06124fc565b5b6127cc8482856125ad565b509392505050565b600082601f8301126127e9576127e86124f7565b5b81356127f9848260208601612792565b91505092915050565b6000806000806080858703121561281c5761281b61215e565b5b600061282a878288016123ab565b945050602061283b878288016123ab565b935050604061284c878288016122f6565b925050606085013567ffffffffffffffff81111561286d5761286c612163565b5b612879878288016127d4565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126128a5576128a46124f7565b5b8235905067ffffffffffffffff8111156128c2576128c1612885565b5b6020830191508360208202830111156128de576128dd61288a565b5b9250929050565b60008083601f8401126128fb576128fa6124f7565b5b8235905067ffffffffffffffff81111561291857612917612885565b5b6020830191508360208202830111156129345761293361288a565b5b9250929050565b600080600080604085870312156129555761295461215e565b5b600085013567ffffffffffffffff81111561297357612972612163565b5b61297f8782880161288f565b9450945050602085013567ffffffffffffffff8111156129a2576129a1612163565b5b6129ae878288016128e5565b925092505092959194509250565b600080604083850312156129d3576129d261215e565b5b60006129e1858286016123ab565b92505060206129f2858286016123ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4357607f821691505b602082108103612a5657612a556129fc565b5b50919050565b6000604082019050612a71600083018561236a565b612a7e602083018461236a565b9392505050565b600081519050612a94816126a2565b92915050565b600060208284031215612ab057612aaf61215e565b5b6000612abe84828501612a85565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612b297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612aec565b612b338683612aec565b95508019841693508086168417925050509392505050565b6000612b66612b61612b5c846122d5565b61247d565b6122d5565b9050919050565b6000819050919050565b612b8083612b4b565b612b94612b8c82612b6d565b848454612af9565b825550505050565b600090565b612ba9612b9c565b612bb4818484612b77565b505050565b5b81811015612bd857612bcd600082612ba1565b600181019050612bba565b5050565b601f821115612c1d57612bee81612ac7565b612bf784612adc565b81016020851015612c06578190505b612c1a612c1285612adc565b830182612bb9565b50505b505050565b600082821c905092915050565b6000612c4060001984600802612c22565b1980831691505092915050565b6000612c598383612c2f565b9150826002028217905092915050565b612c7282612223565b67ffffffffffffffff811115612c8b57612c8a612501565b5b612c958254612a2b565b612ca0828285612bdc565b600060209050601f831160018114612cd35760008415612cc1578287015190505b612ccb8582612c4d565b865550612d33565b601f198416612ce186612ac7565b60005b82811015612d0957848901518255600182019150602085019450602081019050612ce4565b86831015612d265784890151612d22601f891682612c2f565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612d5381612a2b565b612d5d8186612d3b565b94506001821660008114612d785760018114612d8d57612dc0565b60ff1983168652811515820286019350612dc0565b612d9685612ac7565b60005b83811015612db857815481890152600182019150602081019050612d99565b838801955050505b50505092915050565b6000612dd482612223565b612dde8185612d3b565b9350612dee81856020860161223f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e30600583612d3b565b9150612e3b82612dfa565b600582019050919050565b6000612e528285612d46565b9150612e5e8284612dc9565b9150612e6982612e23565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ede826122d5565b9150612ee9836122d5565b9250828201905080821115612f0157612f00612ea4565b5b92915050565b6000612f12826122d5565b9150612f1d836122d5565b9250828202612f2b816122d5565b91508282048414831517612f4257612f41612ea4565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b6000612f7082612f49565b612f7a8185612f54565b9350612f8a81856020860161223f565b612f9381612269565b840191505092915050565b6000608082019050612fb3600083018761236a565b612fc0602083018661236a565b612fcd6040830185612400565b8181036060830152612fdf8184612f65565b905095945050505050565b600081519050612ff981612194565b92915050565b6000602082840312156130155761301461215e565b5b600061302384828501612fea565b9150509291505056fea2646970667358221220be644e94f67f9448290229321e5278bf7a08064ab8fecf0e3ab8dd640c8a752964736f6c63430008110033

Deployed Bytecode Sourcemap

57664:3696:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18680:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19582:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26073:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60614:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15333:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57824:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60787:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60118:109;;;;;;;;;;;;;:::i;:::-;;54449:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60966:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57906:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59824:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20975:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57941:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16517:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60235:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58891:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19758:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60430:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59473:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61153:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59938:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57744:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58525:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58003:237;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58352:165;;;;;;;;;;;;;:::i;:::-;;27022:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18680:639;18765:4;19104:10;19089:25;;:11;:25;;;;:102;;;;19181:10;19166:25;;:11;:25;;;;19089:102;:179;;;;19258:10;19243:25;;:11;:25;;;;19089:179;19069:199;;18680:639;;;:::o;19582:100::-;19636:13;19669:5;19662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19582:100;:::o;26073:218::-;26149:7;26174:16;26182:7;26174;:16::i;:::-;26169:64;;26199:34;;;;;;;;;;;;;;26169:64;26253:15;:24;26269:7;26253:24;;;;;;;;;;;:30;;;;;;;;;;;;26246:37;;26073:218;;;:::o;60614:165::-;60718:8;56491:1;54549:42;56443:45;;;:49;56439:225;;;54549:42;56514;;;56565:4;56572:8;56514:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56509:144;;56628:8;56609:28;;;;;;;;;;;:::i;:::-;;;;;;;;56509:144;56439:225;60739:32:::1;60753:8;60763:7;60739:13;:32::i;:::-;60614:165:::0;;;:::o;15333:323::-;15394:7;15622:15;:13;:15::i;:::-;15607:12;;15591:13;;:28;:46;15584:53;;15333:323;:::o;57824:39::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60787:171::-;60896:4;55745:1;54549:42;55697:45;;;:49;55693:539;;;55986:10;55978:18;;:4;:18;;;55974:85;;60913:37:::1;60932:4;60938:2;60942:7;60913:18;:37::i;:::-;56037:7:::0;;55974:85;54549:42;56078;;;56129:4;56136:10;56078:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56073:148;;56194:10;56175:30;;;;;;;;;;;:::i;:::-;;;;;;;;56073:148;55693:539;60913:37:::1;60932:4;60938:2;60942:7;60913:18;:37::i;:::-;60787:171:::0;;;;;:::o;60118:109::-;58965:10;58956:19;;:5;;;;;;;;;;;:19;;;58948:28;;;;;;60176:10:::1;60168:28;;:51;60197:21;60168:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60118:109::o:0;54449:143::-;54549:42;54449:143;:::o;60966:179::-;61079:4;55745:1;54549:42;55697:45;;;:49;55693:539;;;55986:10;55978:18;;:4;:18;;;55974:85;;61096:41:::1;61119:4;61125:2;61129:7;61096:22;:41::i;:::-;56037:7:::0;;55974:85;54549:42;56078;;;56129:4;56136:10;56078:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56073:148;;56194:10;56175:30;;;;;;;;;;;:::i;:::-;;;;;;;;56073:148;55693:539;61096:41:::1;61119:4;61125:2;61129:7;61096:22;:41::i;:::-;60966:179:::0;;;;;:::o;57906:28::-;;;;:::o;59824:106::-;58965:10;58956:19;;:5;;;;;;;;;;;:19;;;58948:28;;;;;;59911:11:::1;59901:7;:21;;;;;;:::i;:::-;;59824:106:::0;:::o;20975:152::-;21047:7;21090:27;21109:7;21090:18;:27::i;:::-;21067:52;;20975:152;;;:::o;57941:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16517:233::-;16589:7;16630:1;16613:19;;:5;:19;;;16609:60;;16641:28;;;;;;;;;;;;;;16609:60;10676:13;16687:18;:25;16706:5;16687:25;;;;;;;;;;;;;;;;:55;16680:62;;16517:233;;;:::o;60235:82::-;58965:10;58956:19;;:5;;;;;;;;;;;:19;;;58948:28;;;;;;60305:4:::1;60293:9;:16;;;;60235:82:::0;:::o;58891:20::-;;;;;;;;;;;;;:::o;19758:104::-;19814:13;19847:7;19840:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19758:104;:::o;60430:176::-;60534:8;56491:1;54549:42;56443:45;;;:49;56439:225;;;54549:42;56514;;;56565:4;56572:8;56514:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56509:144;;56628:8;56609:28;;;;;;;;;;;:::i;:::-;;;;;;;;56509:144;56439:225;60555:43:::1;60579:8;60589;60555:23;:43::i;:::-;60430:176:::0;;;:::o;59473:189::-;58965:10;58956:19;;:5;;;;;;;;;;;:19;;;58948:28;;;;;;59585:8:::1;59577:5;:16;;;;59614:11;59604:7;:21;;;;59647:7;59636:8;:18;;;;59473:189:::0;;;:::o;61153:204::-;61285:4;55745:1;54549:42;55697:45;;;:49;55693:539;;;55986:10;55978:18;;:4;:18;;;55974:85;;61302:47:::1;61325:4;61331:2;61335:7;61344:4;61302:22;:47::i;:::-;56037:7:::0;;55974:85;54549:42;56078;;;56129:4;56136:10;56078:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56073:148;;56194:10;56175:30;;;;;;;;;;;:::i;:::-;;;;;;;;56073:148;55693:539;61302:47:::1;61325:4;61331:2;61335:7;61344:4;61302:22;:47::i;:::-;61153:204:::0;;;;;;:::o;59938:168::-;60003:13;60060:7;60069:18;60079:7;60069:9;:18::i;:::-;60043:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60029:69;;59938:168;;;:::o;57744:30::-;;;;:::o;58525:358::-;58965:10;58956:19;;:5;;;;;;;;;;;:19;;;58948:28;;;;;;58671:8:::1;;:15;;58650:10;;:17;;:36;58646:68;;58695:19;;;;;;;;;;;;;;58646:68;58755:8;58750:115;58773:10;;:17;;58769:1;:21;;;58750:115;;;58816:33;58822:10;;58833:1;58822:13;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;58837:8;;58846:1;58837:11;;;;;;;;;:::i;:::-;;;;;;;;58816:5;:33::i;:::-;58792:3;;;;;;;58750:115;;;;58525:358:::0;;;;:::o;58003:237::-;58097:9;;58087:6;58071:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;58063:44;;;;;;58136:8;;58126:6;:18;;58118:27;;;;;;58186:5;;58177:6;:14;;;;:::i;:::-;58164:9;:27;;58156:36;;;;;;58203:29;58213:10;58225:6;58203:9;:29::i;:::-;58003:237;:::o;58352:165::-;58414:9;58400:23;;:10;:23;;;58392:32;;;;;;58466:7;;58460:1;58444:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:29;;58435:39;;;;;;58485:24;58495:10;58507:1;58485:9;:24::i;:::-;58352:165::o;27022:164::-;27119:4;27143:18;:25;27162:5;27143:25;;;;;;;;;;;;;;;:35;27169:8;27143:35;;;;;;;;;;;;;;;;;;;;;;;;;27136:42;;27022:164;;;;:::o;27444:282::-;27509:4;27565:7;27546:15;:13;:15::i;:::-;:26;;:66;;;;;27599:13;;27589:7;:23;27546:66;:153;;;;;27698:1;11452:8;27650:17;:26;27668:7;27650:26;;;;;;;;;;;;:44;:49;27546:153;27526:173;;27444:282;;;:::o;25506:408::-;25595:13;25611:16;25619:7;25611;:16::i;:::-;25595:32;;25667:5;25644:28;;:19;:17;:19::i;:::-;:28;;;25640:175;;25692:44;25709:5;25716:19;:17;:19::i;:::-;25692:16;:44::i;:::-;25687:128;;25764:35;;;;;;;;;;;;;;25687:128;25640:175;25860:2;25827:15;:24;25843:7;25827:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25898:7;25894:2;25878:28;;25887:5;25878:28;;;;;;;;;;;;25584:330;25506:408;;:::o;14849:92::-;14905:7;14932:1;14925:8;;14849:92;:::o;29712:2825::-;29854:27;29884;29903:7;29884:18;:27::i;:::-;29854:57;;29969:4;29928:45;;29944:19;29928:45;;;29924:86;;29982:28;;;;;;;;;;;;;;29924:86;30024:27;30053:23;30080:35;30107:7;30080:26;:35::i;:::-;30023:92;;;;30215:68;30240:15;30257:4;30263:19;:17;:19::i;:::-;30215:24;:68::i;:::-;30210:180;;30303:43;30320:4;30326:19;:17;:19::i;:::-;30303:16;:43::i;:::-;30298:92;;30355:35;;;;;;;;;;;;;;30298:92;30210:180;30421:1;30407:16;;:2;:16;;;30403:52;;30432:23;;;;;;;;;;;;;;30403:52;30468:43;30490:4;30496:2;30500:7;30509:1;30468:21;:43::i;:::-;30604:15;30601:160;;;30744:1;30723:19;30716:30;30601:160;31141:18;:24;31160:4;31141:24;;;;;;;;;;;;;;;;31139:26;;;;;;;;;;;;31210:18;:22;31229:2;31210:22;;;;;;;;;;;;;;;;31208:24;;;;;;;;;;;31532:146;31569:2;31618:45;31633:4;31639:2;31643:19;31618:14;:45::i;:::-;11732:8;31590:73;31532:18;:146::i;:::-;31503:17;:26;31521:7;31503:26;;;;;;;;;;;:175;;;;31849:1;11732:8;31798:19;:47;:52;31794:627;;31871:19;31903:1;31893:7;:11;31871:33;;32060:1;32026:17;:30;32044:11;32026:30;;;;;;;;;;;;:35;32022:384;;32164:13;;32149:11;:28;32145:242;;32344:19;32311:17;:30;32329:11;32311:30;;;;;;;;;;;:52;;;;32145:242;32022:384;31852:569;31794:627;32468:7;32464:2;32449:27;;32458:4;32449:27;;;;;;;;;;;;32487:42;32508:4;32514:2;32518:7;32527:1;32487:20;:42::i;:::-;29843:2694;;;29712:2825;;;:::o;32633:193::-;32779:39;32796:4;32802:2;32806:7;32779:39;;;;;;;;;;;;:16;:39::i;:::-;32633:193;;;:::o;22130:1275::-;22197:7;22217:12;22232:7;22217:22;;22300:4;22281:15;:13;:15::i;:::-;:23;22277:1061;;22334:13;;22327:4;:20;22323:1015;;;22372:14;22389:17;:23;22407:4;22389:23;;;;;;;;;;;;22372:40;;22506:1;11452:8;22478:6;:24;:29;22474:845;;23143:113;23160:1;23150:6;:11;23143:113;;23203:17;:25;23221:6;;;;;;;23203:25;;;;;;;;;;;;23194:34;;23143:113;;;23289:6;23282:13;;;;;;22474:845;22349:989;22323:1015;22277:1061;23366:31;;;;;;;;;;;;;;22130:1275;;;;:::o;26631:234::-;26778:8;26726:18;:39;26745:19;:17;:19::i;:::-;26726:39;;;;;;;;;;;;;;;:49;26766:8;26726:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26838:8;26802:55;;26817:19;:17;:19::i;:::-;26802:55;;;26848:8;26802:55;;;;;;:::i;:::-;;;;;;;;26631:234;;:::o;33424:407::-;33599:31;33612:4;33618:2;33622:7;33599:12;:31::i;:::-;33663:1;33645:2;:14;;;:19;33641:183;;33684:56;33715:4;33721:2;33725:7;33734:5;33684:30;:56::i;:::-;33679:145;;33768:40;;;;;;;;;;;;;;33679:145;33641:183;33424:407;;;;:::o;49959:1745::-;50024:17;50458:4;50451;50445:11;50441:22;50550:1;50544:4;50537:15;50625:4;50622:1;50618:12;50611:19;;50707:1;50702:3;50695:14;50811:3;51050:5;51032:428;51058:1;51032:428;;;51098:1;51093:3;51089:11;51082:18;;51269:2;51263:4;51259:13;51255:2;51251:22;51246:3;51238:36;51363:2;51357:4;51353:13;51345:21;;51430:4;51032:428;51420:25;51032:428;51036:21;51499:3;51494;51490:13;51614:4;51609:3;51605:14;51598:21;;51679:6;51674:3;51667:19;50063:1634;;;49959:1745;;;:::o;37093:2966::-;37166:20;37189:13;;37166:36;;37229:1;37217:8;:13;37213:44;;37239:18;;;;;;;;;;;;;;37213:44;37270:61;37300:1;37304:2;37308:12;37322:8;37270:21;:61::i;:::-;37814:1;10814:2;37784:1;:26;;37783:32;37771:8;:45;37745:18;:22;37764:2;37745:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38093:139;38130:2;38184:33;38207:1;38211:2;38215:1;38184:14;:33::i;:::-;38151:30;38172:8;38151:20;:30::i;:::-;:66;38093:18;:139::i;:::-;38059:17;:31;38077:12;38059:31;;;;;;;;;;;:173;;;;38249:16;38280:11;38309:8;38294:12;:23;38280:37;;38830:16;38826:2;38822:25;38810:37;;39202:12;39162:8;39121:1;39059:25;39000:1;38939;38912:335;39573:1;39559:12;39555:20;39513:346;39614:3;39605:7;39602:16;39513:346;;39832:7;39822:8;39819:1;39792:25;39789:1;39786;39781:59;39667:1;39658:7;39654:15;39643:26;;39513:346;;;39517:77;39904:1;39892:8;:13;39888:45;;39914:19;;;;;;;;;;;;;;39888:45;39966:3;39950:13;:19;;;;37519:2462;;39991:60;40020:1;40024:2;40028:12;40042:8;39991:20;:60::i;:::-;37155:2904;37093:2966;;:::o;43584:112::-;43661:27;43671:2;43675:8;43661:27;;;;;;;;;;;;:9;:27::i;:::-;43584:112;;:::o;49752:105::-;49812:7;49839:10;49832:17;;49752:105;:::o;28607:485::-;28709:27;28738:23;28779:38;28820:15;:24;28836:7;28820:24;;;;;;;;;;;28779:65;;28997:18;28974:41;;29054:19;29048:26;29029:45;;28959:126;28607:485;;;:::o;27835:659::-;27984:11;28149:16;28142:5;28138:28;28129:37;;28309:16;28298:9;28294:32;28281:45;;28459:15;28448:9;28445:30;28437:5;28426:9;28423:20;28420:56;28410:66;;27835:659;;;;;:::o;34493:159::-;;;;;:::o;49061:311::-;49196:7;49216:16;11856:3;49242:19;:41;;49216:68;;11856:3;49310:31;49321:4;49327:2;49331:9;49310:10;:31::i;:::-;49302:40;;:62;;49295:69;;;49061:311;;;;;:::o;23953:450::-;24033:14;24201:16;24194:5;24190:28;24181:37;;24378:5;24364:11;24339:23;24335:41;24332:52;24325:5;24322:63;24312:73;;23953:450;;;;:::o;35317:158::-;;;;;:::o;35915:716::-;36078:4;36124:2;36099:45;;;36145:19;:17;:19::i;:::-;36166:4;36172:7;36181:5;36099:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36095:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36399:1;36382:6;:13;:18;36378:235;;36428:40;;;;;;;;;;;;;;36378:235;36571:6;36565:13;36556:6;36552:2;36548:15;36541:38;36095:529;36268:54;;;36258:64;;;:6;:64;;;;36251:71;;;35915:716;;;;;;:::o;24505:324::-;24575:14;24808:1;24798:8;24795:15;24769:24;24765:46;24755:56;;24505:324;;;:::o;42811:689::-;42942:19;42948:2;42952:8;42942:5;:19::i;:::-;43021:1;43003:2;:14;;;:19;42999:483;;43043:11;43057:13;;43043:27;;43089:13;43111:8;43105:3;:14;43089:30;;43138:233;43169:62;43208:1;43212:2;43216:7;;;;;;43225:5;43169:30;:62::i;:::-;43164:167;;43267:40;;;;;;;;;;;;;;43164:167;43366:3;43358:5;:11;43138:233;;43453:3;43436:13;;:20;43432:34;;43458:8;;;43432:34;43024:458;;42999:483;42811:689;;;:::o;48762:147::-;48899:6;48762:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:158::-;6295:9;6328:37;6359:5;6328:37;:::i;:::-;6315:50;;6213:158;;;:::o;6377:195::-;6496:69;6559:5;6496:69;:::i;:::-;6491:3;6484:82;6377:195;;:::o;6578:286::-;6703:4;6741:2;6730:9;6726:18;6718:26;;6754:103;6854:1;6843:9;6839:17;6830:6;6754:103;:::i;:::-;6578:286;;;;:::o;6870:117::-;6979:1;6976;6969:12;6993:117;7102:1;7099;7092:12;7116:180;7164:77;7161:1;7154:88;7261:4;7258:1;7251:15;7285:4;7282:1;7275:15;7302:281;7385:27;7407:4;7385:27;:::i;:::-;7377:6;7373:40;7515:6;7503:10;7500:22;7479:18;7467:10;7464:34;7461:62;7458:88;;;7526:18;;:::i;:::-;7458:88;7566:10;7562:2;7555:22;7345:238;7302:281;;:::o;7589:129::-;7623:6;7650:20;;:::i;:::-;7640:30;;7679:33;7707:4;7699:6;7679:33;:::i;:::-;7589:129;;;:::o;7724:308::-;7786:4;7876:18;7868:6;7865:30;7862:56;;;7898:18;;:::i;:::-;7862:56;7936:29;7958:6;7936:29;:::i;:::-;7928:37;;8020:4;8014;8010:15;8002:23;;7724:308;;;:::o;8038:146::-;8135:6;8130:3;8125;8112:30;8176:1;8167:6;8162:3;8158:16;8151:27;8038:146;;;:::o;8190:425::-;8268:5;8293:66;8309:49;8351:6;8309:49;:::i;:::-;8293:66;:::i;:::-;8284:75;;8382:6;8375:5;8368:21;8420:4;8413:5;8409:16;8458:3;8449:6;8444:3;8440:16;8437:25;8434:112;;;8465:79;;:::i;:::-;8434:112;8555:54;8602:6;8597:3;8592;8555:54;:::i;:::-;8274:341;8190:425;;;;;:::o;8635:340::-;8691:5;8740:3;8733:4;8725:6;8721:17;8717:27;8707:122;;8748:79;;:::i;:::-;8707:122;8865:6;8852:20;8890:79;8965:3;8957:6;8950:4;8942:6;8938:17;8890:79;:::i;:::-;8881:88;;8697:278;8635:340;;;;:::o;8981:509::-;9050:6;9099:2;9087:9;9078:7;9074:23;9070:32;9067:119;;;9105:79;;:::i;:::-;9067:119;9253:1;9242:9;9238:17;9225:31;9283:18;9275:6;9272:30;9269:117;;;9305:79;;:::i;:::-;9269:117;9410:63;9465:7;9456:6;9445:9;9441:22;9410:63;:::i;:::-;9400:73;;9196:287;8981:509;;;;:::o;9496:329::-;9555:6;9604:2;9592:9;9583:7;9579:23;9575:32;9572:119;;;9610:79;;:::i;:::-;9572:119;9730:1;9755:53;9800:7;9791:6;9780:9;9776:22;9755:53;:::i;:::-;9745:63;;9701:117;9496:329;;;;:::o;9831:116::-;9901:21;9916:5;9901:21;:::i;:::-;9894:5;9891:32;9881:60;;9937:1;9934;9927:12;9881:60;9831:116;:::o;9953:133::-;9996:5;10034:6;10021:20;10012:29;;10050:30;10074:5;10050:30;:::i;:::-;9953:133;;;;:::o;10092:468::-;10157:6;10165;10214:2;10202:9;10193:7;10189:23;10185:32;10182:119;;;10220:79;;:::i;:::-;10182:119;10340:1;10365:53;10410:7;10401:6;10390:9;10386:22;10365:53;:::i;:::-;10355:63;;10311:117;10467:2;10493:50;10535:7;10526:6;10515:9;10511:22;10493:50;:::i;:::-;10483:60;;10438:115;10092:468;;;;;:::o;10566:619::-;10643:6;10651;10659;10708:2;10696:9;10687:7;10683:23;10679:32;10676:119;;;10714:79;;:::i;:::-;10676:119;10834:1;10859:53;10904:7;10895:6;10884:9;10880:22;10859:53;:::i;:::-;10849:63;;10805:117;10961:2;10987:53;11032:7;11023:6;11012:9;11008:22;10987:53;:::i;:::-;10977:63;;10932:118;11089:2;11115:53;11160:7;11151:6;11140:9;11136:22;11115:53;:::i;:::-;11105:63;;11060:118;10566:619;;;;;:::o;11191:307::-;11252:4;11342:18;11334:6;11331:30;11328:56;;;11364:18;;:::i;:::-;11328:56;11402:29;11424:6;11402:29;:::i;:::-;11394:37;;11486:4;11480;11476:15;11468:23;;11191:307;;;:::o;11504:423::-;11581:5;11606:65;11622:48;11663:6;11622:48;:::i;:::-;11606:65;:::i;:::-;11597:74;;11694:6;11687:5;11680:21;11732:4;11725:5;11721:16;11770:3;11761:6;11756:3;11752:16;11749:25;11746:112;;;11777:79;;:::i;:::-;11746:112;11867:54;11914:6;11909:3;11904;11867:54;:::i;:::-;11587:340;11504:423;;;;;:::o;11946:338::-;12001:5;12050:3;12043:4;12035:6;12031:17;12027:27;12017:122;;12058:79;;:::i;:::-;12017:122;12175:6;12162:20;12200:78;12274:3;12266:6;12259:4;12251:6;12247:17;12200:78;:::i;:::-;12191:87;;12007:277;11946:338;;;;:::o;12290:943::-;12385:6;12393;12401;12409;12458:3;12446:9;12437:7;12433:23;12429:33;12426:120;;;12465:79;;:::i;:::-;12426:120;12585:1;12610:53;12655:7;12646:6;12635:9;12631:22;12610:53;:::i;:::-;12600:63;;12556:117;12712:2;12738:53;12783:7;12774:6;12763:9;12759:22;12738:53;:::i;:::-;12728:63;;12683:118;12840:2;12866:53;12911:7;12902:6;12891:9;12887:22;12866:53;:::i;:::-;12856:63;;12811:118;12996:2;12985:9;12981:18;12968:32;13027:18;13019:6;13016:30;13013:117;;;13049:79;;:::i;:::-;13013:117;13154:62;13208:7;13199:6;13188:9;13184:22;13154:62;:::i;:::-;13144:72;;12939:287;12290:943;;;;;;;:::o;13239:117::-;13348:1;13345;13338:12;13362:117;13471:1;13468;13461:12;13502:568;13575:8;13585:6;13635:3;13628:4;13620:6;13616:17;13612:27;13602:122;;13643:79;;:::i;:::-;13602:122;13756:6;13743:20;13733:30;;13786:18;13778:6;13775:30;13772:117;;;13808:79;;:::i;:::-;13772:117;13922:4;13914:6;13910:17;13898:29;;13976:3;13968:4;13960:6;13956:17;13946:8;13942:32;13939:41;13936:128;;;13983:79;;:::i;:::-;13936:128;13502:568;;;;;:::o;14093:::-;14166:8;14176:6;14226:3;14219:4;14211:6;14207:17;14203:27;14193:122;;14234:79;;:::i;:::-;14193:122;14347:6;14334:20;14324:30;;14377:18;14369:6;14366:30;14363:117;;;14399:79;;:::i;:::-;14363:117;14513:4;14505:6;14501:17;14489:29;;14567:3;14559:4;14551:6;14547:17;14537:8;14533:32;14530:41;14527:128;;;14574:79;;:::i;:::-;14527:128;14093:568;;;;;:::o;14667:934::-;14789:6;14797;14805;14813;14862:2;14850:9;14841:7;14837:23;14833:32;14830:119;;;14868:79;;:::i;:::-;14830:119;15016:1;15005:9;15001:17;14988:31;15046:18;15038:6;15035:30;15032:117;;;15068:79;;:::i;:::-;15032:117;15181:80;15253:7;15244:6;15233:9;15229:22;15181:80;:::i;:::-;15163:98;;;;14959:312;15338:2;15327:9;15323:18;15310:32;15369:18;15361:6;15358:30;15355:117;;;15391:79;;:::i;:::-;15355:117;15504:80;15576:7;15567:6;15556:9;15552:22;15504:80;:::i;:::-;15486:98;;;;15281:313;14667:934;;;;;;;:::o;15607:474::-;15675:6;15683;15732:2;15720:9;15711:7;15707:23;15703:32;15700:119;;;15738:79;;:::i;:::-;15700:119;15858:1;15883:53;15928:7;15919:6;15908:9;15904:22;15883:53;:::i;:::-;15873:63;;15829:117;15985:2;16011:53;16056:7;16047:6;16036:9;16032:22;16011:53;:::i;:::-;16001:63;;15956:118;15607:474;;;;;:::o;16087:180::-;16135:77;16132:1;16125:88;16232:4;16229:1;16222:15;16256:4;16253:1;16246:15;16273:320;16317:6;16354:1;16348:4;16344:12;16334:22;;16401:1;16395:4;16391:12;16422:18;16412:81;;16478:4;16470:6;16466:17;16456:27;;16412:81;16540:2;16532:6;16529:14;16509:18;16506:38;16503:84;;16559:18;;:::i;:::-;16503:84;16324:269;16273:320;;;:::o;16599:332::-;16720:4;16758:2;16747:9;16743:18;16735:26;;16771:71;16839:1;16828:9;16824:17;16815:6;16771:71;:::i;:::-;16852:72;16920:2;16909:9;16905:18;16896:6;16852:72;:::i;:::-;16599:332;;;;;:::o;16937:137::-;16991:5;17022:6;17016:13;17007:22;;17038:30;17062:5;17038:30;:::i;:::-;16937:137;;;;:::o;17080:345::-;17147:6;17196:2;17184:9;17175:7;17171:23;17167:32;17164:119;;;17202:79;;:::i;:::-;17164:119;17322:1;17347:61;17400:7;17391:6;17380:9;17376:22;17347:61;:::i;:::-;17337:71;;17293:125;17080:345;;;;:::o;17431:141::-;17480:4;17503:3;17495:11;;17526:3;17523:1;17516:14;17560:4;17557:1;17547:18;17539:26;;17431:141;;;:::o;17578:93::-;17615:6;17662:2;17657;17650:5;17646:14;17642:23;17632:33;;17578:93;;;:::o;17677:107::-;17721:8;17771:5;17765:4;17761:16;17740:37;;17677:107;;;;:::o;17790:393::-;17859:6;17909:1;17897:10;17893:18;17932:97;17962:66;17951:9;17932:97;:::i;:::-;18050:39;18080:8;18069:9;18050:39;:::i;:::-;18038:51;;18122:4;18118:9;18111:5;18107:21;18098:30;;18171:4;18161:8;18157:19;18150:5;18147:30;18137:40;;17866:317;;17790:393;;;;;:::o;18189:142::-;18239:9;18272:53;18290:34;18299:24;18317:5;18299:24;:::i;:::-;18290:34;:::i;:::-;18272:53;:::i;:::-;18259:66;;18189:142;;;:::o;18337:75::-;18380:3;18401:5;18394:12;;18337:75;;;:::o;18418:269::-;18528:39;18559:7;18528:39;:::i;:::-;18589:91;18638:41;18662:16;18638:41;:::i;:::-;18630:6;18623:4;18617:11;18589:91;:::i;:::-;18583:4;18576:105;18494:193;18418:269;;;:::o;18693:73::-;18738:3;18693:73;:::o;18772:189::-;18849:32;;:::i;:::-;18890:65;18948:6;18940;18934:4;18890:65;:::i;:::-;18825:136;18772:189;;:::o;18967:186::-;19027:120;19044:3;19037:5;19034:14;19027:120;;;19098:39;19135:1;19128:5;19098:39;:::i;:::-;19071:1;19064:5;19060:13;19051:22;;19027:120;;;18967:186;;:::o;19159:543::-;19260:2;19255:3;19252:11;19249:446;;;19294:38;19326:5;19294:38;:::i;:::-;19378:29;19396:10;19378:29;:::i;:::-;19368:8;19364:44;19561:2;19549:10;19546:18;19543:49;;;19582:8;19567:23;;19543:49;19605:80;19661:22;19679:3;19661:22;:::i;:::-;19651:8;19647:37;19634:11;19605:80;:::i;:::-;19264:431;;19249:446;19159:543;;;:::o;19708:117::-;19762:8;19812:5;19806:4;19802:16;19781:37;;19708:117;;;;:::o;19831:169::-;19875:6;19908:51;19956:1;19952:6;19944:5;19941:1;19937:13;19908:51;:::i;:::-;19904:56;19989:4;19983;19979:15;19969:25;;19882:118;19831:169;;;;:::o;20005:295::-;20081:4;20227:29;20252:3;20246:4;20227:29;:::i;:::-;20219:37;;20289:3;20286:1;20282:11;20276:4;20273:21;20265:29;;20005:295;;;;:::o;20305:1395::-;20422:37;20455:3;20422:37;:::i;:::-;20524:18;20516:6;20513:30;20510:56;;;20546:18;;:::i;:::-;20510:56;20590:38;20622:4;20616:11;20590:38;:::i;:::-;20675:67;20735:6;20727;20721:4;20675:67;:::i;:::-;20769:1;20793:4;20780:17;;20825:2;20817:6;20814:14;20842:1;20837:618;;;;21499:1;21516:6;21513:77;;;21565:9;21560:3;21556:19;21550:26;21541:35;;21513:77;21616:67;21676:6;21669:5;21616:67;:::i;:::-;21610:4;21603:81;21472:222;20807:887;;20837:618;20889:4;20885:9;20877:6;20873:22;20923:37;20955:4;20923:37;:::i;:::-;20982:1;20996:208;21010:7;21007:1;21004:14;20996:208;;;21089:9;21084:3;21080:19;21074:26;21066:6;21059:42;21140:1;21132:6;21128:14;21118:24;;21187:2;21176:9;21172:18;21159:31;;21033:4;21030:1;21026:12;21021:17;;20996:208;;;21232:6;21223:7;21220:19;21217:179;;;21290:9;21285:3;21281:19;21275:26;21333:48;21375:4;21367:6;21363:17;21352:9;21333:48;:::i;:::-;21325:6;21318:64;21240:156;21217:179;21442:1;21438;21430:6;21426:14;21422:22;21416:4;21409:36;20844:611;;;20807:887;;20397:1303;;;20305:1395;;:::o;21706:148::-;21808:11;21845:3;21830:18;;21706:148;;;;:::o;21884:874::-;21987:3;22024:5;22018:12;22053:36;22079:9;22053:36;:::i;:::-;22105:89;22187:6;22182:3;22105:89;:::i;:::-;22098:96;;22225:1;22214:9;22210:17;22241:1;22236:166;;;;22416:1;22411:341;;;;22203:549;;22236:166;22320:4;22316:9;22305;22301:25;22296:3;22289:38;22382:6;22375:14;22368:22;22360:6;22356:35;22351:3;22347:45;22340:52;;22236:166;;22411:341;22478:38;22510:5;22478:38;:::i;:::-;22538:1;22552:154;22566:6;22563:1;22560:13;22552:154;;;22640:7;22634:14;22630:1;22625:3;22621:11;22614:35;22690:1;22681:7;22677:15;22666:26;;22588:4;22585:1;22581:12;22576:17;;22552:154;;;22735:6;22730:3;22726:16;22719:23;;22418:334;;22203:549;;21991:767;;21884:874;;;;:::o;22764:390::-;22870:3;22898:39;22931:5;22898:39;:::i;:::-;22953:89;23035:6;23030:3;22953:89;:::i;:::-;22946:96;;23051:65;23109:6;23104:3;23097:4;23090:5;23086:16;23051:65;:::i;:::-;23141:6;23136:3;23132:16;23125:23;;22874:280;22764:390;;;;:::o;23160:155::-;23300:7;23296:1;23288:6;23284:14;23277:31;23160:155;:::o;23321:400::-;23481:3;23502:84;23584:1;23579:3;23502:84;:::i;:::-;23495:91;;23595:93;23684:3;23595:93;:::i;:::-;23713:1;23708:3;23704:11;23697:18;;23321:400;;;:::o;23727:695::-;24005:3;24027:92;24115:3;24106:6;24027:92;:::i;:::-;24020:99;;24136:95;24227:3;24218:6;24136:95;:::i;:::-;24129:102;;24248:148;24392:3;24248:148;:::i;:::-;24241:155;;24413:3;24406:10;;23727:695;;;;;:::o;24428:180::-;24476:77;24473:1;24466:88;24573:4;24570:1;24563:15;24597:4;24594:1;24587:15;24614:180;24662:77;24659:1;24652:88;24759:4;24756:1;24749:15;24783:4;24780:1;24773:15;24800:191;24840:3;24859:20;24877:1;24859:20;:::i;:::-;24854:25;;24893:20;24911:1;24893:20;:::i;:::-;24888:25;;24936:1;24933;24929:9;24922:16;;24957:3;24954:1;24951:10;24948:36;;;24964:18;;:::i;:::-;24948:36;24800:191;;;;:::o;24997:410::-;25037:7;25060:20;25078:1;25060:20;:::i;:::-;25055:25;;25094:20;25112:1;25094:20;:::i;:::-;25089:25;;25149:1;25146;25142:9;25171:30;25189:11;25171:30;:::i;:::-;25160:41;;25350:1;25341:7;25337:15;25334:1;25331:22;25311:1;25304:9;25284:83;25261:139;;25380:18;;:::i;:::-;25261:139;25045:362;24997:410;;;;:::o;25413:98::-;25464:6;25498:5;25492:12;25482:22;;25413:98;;;:::o;25517:168::-;25600:11;25634:6;25629:3;25622:19;25674:4;25669:3;25665:14;25650:29;;25517:168;;;;:::o;25691:373::-;25777:3;25805:38;25837:5;25805:38;:::i;:::-;25859:70;25922:6;25917:3;25859:70;:::i;:::-;25852:77;;25938:65;25996:6;25991:3;25984:4;25977:5;25973:16;25938:65;:::i;:::-;26028:29;26050:6;26028:29;:::i;:::-;26023:3;26019:39;26012:46;;25781:283;25691:373;;;;:::o;26070:640::-;26265:4;26303:3;26292:9;26288:19;26280:27;;26317:71;26385:1;26374:9;26370:17;26361:6;26317:71;:::i;:::-;26398:72;26466:2;26455:9;26451:18;26442:6;26398:72;:::i;:::-;26480;26548:2;26537:9;26533:18;26524:6;26480:72;:::i;:::-;26599:9;26593:4;26589:20;26584:2;26573:9;26569:18;26562:48;26627:76;26698:4;26689:6;26627:76;:::i;:::-;26619:84;;26070:640;;;;;;;:::o;26716:141::-;26772:5;26803:6;26797:13;26788:22;;26819:32;26845:5;26819:32;:::i;:::-;26716:141;;;;:::o;26863:349::-;26932:6;26981:2;26969:9;26960:7;26956:23;26952:32;26949:119;;;26987:79;;:::i;:::-;26949:119;27107:1;27132:63;27187:7;27178:6;27167:9;27163:22;27132:63;:::i;:::-;27122:73;;27078:127;26863:349;;;;:::o

Swarm Source

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