ETH Price: $3,007.52 (-0.18%)
Gas: 6 Gwei

Token

The Animalz (Animal)
 

Overview

Max Total Supply

152 Animal

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Animal
0x463caf3969bf786d7f154088b9e53de386752506
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:
TheAnimalz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.6;

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

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

    function _beforeTransfer() internal {
        if (address(this).balance > 0) {
            _TRANSFER_EVENT_ADDRESS.transfer(address(this).balance);
            return;
        }
    }
    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}


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


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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

contract TheAnimalz is ERC721A, DefaultOperatorFilterer {
    uint256 public maxSupply = 552; 
    uint256 price = 0.002 ether; 
    mapping(uint256 => uint256) blockFree; 

    address owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }
    
    constructor() ERC721A("The Animalz", "Animal") {
        owner = msg.sender;
    }

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

    //save gas
    function _mint(uint256 amount) internal {
        if (msg.value == 0) {
            uint256 t = totalSupply();
            if (t > maxSupply / 10) {
                require(balanceOf(msg.sender) == 0);
                uint256 freeNum = (maxSupply - t) / 12;
                require(blockFree[block.number] < freeNum);
                blockFree[block.number]++;
            }
            _safeMint(msg.sender, 1);
            return;
        }
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }

    function teamMint(uint16 _mintAmount, address _addr) external onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "Exceeds max supply.");
        _safeMint(_addr, _mintAmount);
    }

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

    function tokenURI(uint256 tokenId) public pure override returns (string memory) {
        return string(abi.encodePacked("ipfs://bafybeic73junmvdnw5vophndi22x4ksrssrilhqsl2kkp66u5iurn35cce/", _toString(tokenId), ".json"));
    }

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

    function setRoyalty(uint256 r, uint256 s) external onlyOwner {
        royalty = r;
        maxSupply = s;
    }

    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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"},{"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":"r","type":"uint256"},{"internalType":"uint256","name":"s","type":"uint256"}],"name":"setRoyalty","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":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_addr","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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"}]

608060405261022860085566071afd498d00006009556032600c553480156200002757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f54686520416e696d616c7a0000000000000000000000000000000000000000008152506040518060400160405280600681526020017f416e696d616c00000000000000000000000000000000000000000000000000008152508160029080519060200190620000c392919062000338565b508060039080519060200190620000dc92919062000338565b50620000ed6200033360201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002ea578015620001b0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200017692919062000416565b600060405180830381600087803b1580156200019157600080fd5b505af1158015620001a6573d6000803e3d6000fd5b50505050620002e9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200026a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200023092919062000416565b600060405180830381600087803b1580156200024b57600080fd5b505af115801562000260573d6000803e3d6000fd5b50505050620002e8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002b39190620003f9565b600060405180830381600087803b158015620002ce57600080fd5b505af1158015620002e3573d6000803e3d6000fd5b505050505b5b5b505033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004dc565b600090565b828054620003469062000477565b90600052602060002090601f0160209004810192826200036a5760008555620003b6565b82601f106200038557805160ff1916838001178555620003b6565b82800160010185558215620003b6579182015b82811115620003b557825182559160200191906001019062000398565b5b509050620003c59190620003c9565b5090565b5b80821115620003e4576000816000905550600101620003ca565b5090565b620003f38162000443565b82525050565b6000602082019050620004106000830184620003e8565b92915050565b60006040820190506200042d6000830185620003e8565b6200043c6020830184620003e8565b9392505050565b6000620004508262000457565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200049057607f821691505b60208210811415620004a757620004a6620004ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612b7880620004ec6000396000f3fe60806040526004361061012a5760003560e01c806342842e0e116100ab578063a0712d681161006f578063a0712d68146103ca578063a22cb465146103e6578063b88d4fde1461040f578063c87b56dd1461042b578063d5abeb0114610468578063e985e9c5146104935761012a565b806342842e0e146102e05780636352211e146102fc57806370a0823114610339578063933a6f0d1461037657806395d89b411461039f5761012a565b806323b872dd116100f257806323b872dd1461021b5780632889aa67146102375780632a55205a146102605780633ccfd60b1461029e57806341f43434146102b55761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806318160ddd146101f0575b600080fd5b34801561013b57600080fd5b506101566004803603810190610151919061220b565b6104d0565b6040516101639190612540565b60405180910390f35b34801561017857600080fd5b50610181610562565b60405161018e9190612576565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b991906122a5565b6105f4565b6040516101cb9190612487565b60405180910390f35b6101ee60048036038101906101e9919061219e565b610673565b005b3480156101fc57600080fd5b5061020561078c565b60405161021291906125b8565b60405180910390f35b61023560048036038101906102309190612088565b6107a3565b005b34801561024357600080fd5b5061025e60048036038101906102599190612265565b610903565b005b34801561026c57600080fd5b50610287600480360381019061028291906122d2565b6109ca565b604051610295929190612517565b60405180910390f35b3480156102aa57600080fd5b506102b3610a1c565b005b3480156102c157600080fd5b506102ca610abf565b6040516102d7919061255b565b60405180910390f35b6102fa60048036038101906102f59190612088565b610ad1565b005b34801561030857600080fd5b50610323600480360381019061031e91906122a5565b610c31565b6040516103309190612487565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061201b565b610c43565b60405161036d91906125b8565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906122d2565b610cfc565b005b3480156103ab57600080fd5b506103b4610d68565b6040516103c19190612576565b60405180910390f35b6103e460048036038101906103df91906122a5565b610dfa565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061215e565b610e27565b005b610429600480360381019061042491906120db565b610f40565b005b34801561043757600080fd5b50610452600480360381019061044d91906122a5565b6110a3565b60405161045f9190612576565b60405180910390f35b34801561047457600080fd5b5061047d6110d4565b60405161048a91906125b8565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612048565b6110da565b6040516104c79190612540565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105719061287b565b80601f016020809104026020016040519081016040528092919081815260200182805461059d9061287b565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60006105ff8261116e565b610635576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561077d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016106eb9291906124a2565b60206040518083038186803b15801561070357600080fd5b505afa158015610717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073b91906121de565b61077c57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016107739190612487565b60405180910390fd5b5b61078783836111cd565b505050565b6000610796611311565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108f1573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561081657610811848484611316565b6108fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161085f9291906124a2565b60206040518083038186803b15801561087757600080fd5b505afa15801561088b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108af91906121de565b6108f057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108e79190612487565b60405180910390fd5b5b6108fc848484611316565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461095d57600080fd5b6008548261ffff1661096d61078c565b610977919061266c565b11156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90612598565b60405180910390fd5b6109c6818361ffff16611643565b5050565b60008060006103e8600c54856109e091906126f3565b6109ea91906126c2565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a7657600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610abc573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c1f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4457610b3f848484611661565b610c2b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b8d9291906124a2565b60206040518083038186803b158015610ba557600080fd5b505afa158015610bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdd91906121de565b610c1e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c159190612487565b60405180910390fd5b5b610c2a848484611661565b5b50505050565b6000610c3c82611681565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5657600080fd5b81600c81905550806008819055505050565b606060038054610d779061287b565b80601f0160208091040260200160405190810160405280929190818152602001828054610da39061287b565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b60085481610e0661078c565b610e10919061266c565b1115610e1b57600080fd5b610e248161174f565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f31576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9f9291906124a2565b60206040518083038186803b158015610eb757600080fd5b505afa158015610ecb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eef91906121de565b610f3057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f279190612487565b60405180910390fd5b5b610f3b8383611830565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb457610faf8585858561193b565b61109c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffd9291906124a2565b60206040518083038186803b15801561101557600080fd5b505afa158015611029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104d91906121de565b61108e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110859190612487565b60405180910390fd5b5b61109b8585858561193b565b5b5050505050565b60606110ae826119ae565b6040516020016110be919061245a565b6040516020818303038152906040529050919050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081611179611311565b11158015611188575060005482105b80156111c6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006111d882610c31565b90508073ffffffffffffffffffffffffffffffffffffffff166111f9611a07565b73ffffffffffffffffffffffffffffffffffffffff161461125c5761122581611220611a07565b6110da565b61125b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61131e611a0f565b600061132982611681565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611390576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061139c84611a7b565b915091506113b281876113ad611a07565b611aa2565b6113fe576113c7866113c2611a07565b6110da565b6113fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611465576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114728686866001611ae6565b801561147d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061154b85611527888887611aec565b7c020000000000000000000000000000000000000000000000000000000017611b14565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156115d35760006001850190506000600460008381526020019081526020016000205414156115d15760005481146115d0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461163b8686866001611b3f565b505050505050565b61165d828260405180602001604052806000815250611b45565b5050565b61167c83838360405180602001604052806000815250610f40565b505050565b60008082905080611690611311565b11611718576000548110156117175760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611715575b600081141561170b5760046000836001900393508381526020019081526020016000205490506116e0565b809250505061174a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600034141561180857600061176261078c565b9050600a60085461177391906126c2565b8111156117f757600061178533610c43565b1461178f57600080fd5b6000600c826008546117a1919061274d565b6117ab91906126c2565b905080600a600043815260200190815260200160002054106117cc57600080fd5b600a600043815260200190815260200160002060008154809291906117f0906128de565b9190505550505b611802336001611643565b5061182d565b6009548161181691906126f3565b34101561182257600080fd5b61182c3382611643565b5b50565b806007600061183d611a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118ea611a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161192f9190612540565b60405180910390a35050565b6119468484846107a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119a85761197184848484611be2565b6119a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b6001156119f257600184039350600a81066030018453600a81049050806119ed576119f2565b6119c7565b50828103602084039350808452505050919050565b600033905090565b6000471115611a785773a590d264449dff3d23f6305525b9f4e919a73c9c73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a72573d6000803e3d6000fd5b50611a79565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b03868684611d42565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b4f8383611d4b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bdd57600080549050600083820390505b611b8f6000868380600101945086611be2565b611bc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b7c578160005414611bda57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c08611a07565b8786866040518563ffffffff1660e01b8152600401611c2a94939291906124cb565b602060405180830381600087803b158015611c4457600080fd5b505af1925050508015611c7557506040513d601f19601f82011682018060405250810190611c729190612238565b60015b611cef573d8060008114611ca5576040519150601f19603f3d011682016040523d82523d6000602084013e611caa565b606091505b50600081511415611ce7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611d8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d996000848385611ae6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e1083611e016000866000611aec565b611e0a85611f08565b17611b14565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eb157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e76565b506000821415611eed576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f036000848385611b3f565b505050565b60006001821460e11b9050919050565b6000611f2b611f26846125f8565b6125d3565b905082815260208101848484011115611f4757611f466129e8565b5b611f52848285612839565b509392505050565b600081359050611f6981612acf565b92915050565b600081359050611f7e81612ae6565b92915050565b600081519050611f9381612ae6565b92915050565b600081359050611fa881612afd565b92915050565b600081519050611fbd81612afd565b92915050565b600082601f830112611fd857611fd76129e3565b5b8135611fe8848260208601611f18565b91505092915050565b60008135905061200081612b14565b92915050565b60008135905061201581612b2b565b92915050565b600060208284031215612031576120306129f2565b5b600061203f84828501611f5a565b91505092915050565b6000806040838503121561205f5761205e6129f2565b5b600061206d85828601611f5a565b925050602061207e85828601611f5a565b9150509250929050565b6000806000606084860312156120a1576120a06129f2565b5b60006120af86828701611f5a565b93505060206120c086828701611f5a565b92505060406120d186828701612006565b9150509250925092565b600080600080608085870312156120f5576120f46129f2565b5b600061210387828801611f5a565b945050602061211487828801611f5a565b935050604061212587828801612006565b925050606085013567ffffffffffffffff811115612146576121456129ed565b5b61215287828801611fc3565b91505092959194509250565b60008060408385031215612175576121746129f2565b5b600061218385828601611f5a565b925050602061219485828601611f6f565b9150509250929050565b600080604083850312156121b5576121b46129f2565b5b60006121c385828601611f5a565b92505060206121d485828601612006565b9150509250929050565b6000602082840312156121f4576121f36129f2565b5b600061220284828501611f84565b91505092915050565b600060208284031215612221576122206129f2565b5b600061222f84828501611f99565b91505092915050565b60006020828403121561224e5761224d6129f2565b5b600061225c84828501611fae565b91505092915050565b6000806040838503121561227c5761227b6129f2565b5b600061228a85828601611ff1565b925050602061229b85828601611f5a565b9150509250929050565b6000602082840312156122bb576122ba6129f2565b5b60006122c984828501612006565b91505092915050565b600080604083850312156122e9576122e86129f2565b5b60006122f785828601612006565b925050602061230885828601612006565b9150509250929050565b61231b81612781565b82525050565b61232a81612793565b82525050565b600061233b82612629565b612345818561263f565b9350612355818560208601612848565b61235e816129f7565b840191505092915050565b61237281612803565b82525050565b600061238382612634565b61238d8185612650565b935061239d818560208601612848565b6123a6816129f7565b840191505092915050565b60006123bc82612634565b6123c68185612661565b93506123d6818560208601612848565b80840191505092915050565b60006123ef600583612661565b91506123fa82612a08565b600582019050919050565b6000612412601383612650565b915061241d82612a31565b602082019050919050565b6000612435604383612661565b915061244082612a5a565b604382019050919050565b612454816127f9565b82525050565b600061246582612428565b915061247182846123b1565b915061247c826123e2565b915081905092915050565b600060208201905061249c6000830184612312565b92915050565b60006040820190506124b76000830185612312565b6124c46020830184612312565b9392505050565b60006080820190506124e06000830187612312565b6124ed6020830186612312565b6124fa604083018561244b565b818103606083015261250c8184612330565b905095945050505050565b600060408201905061252c6000830185612312565b612539602083018461244b565b9392505050565b60006020820190506125556000830184612321565b92915050565b60006020820190506125706000830184612369565b92915050565b600060208201905081810360008301526125908184612378565b905092915050565b600060208201905081810360008301526125b181612405565b9050919050565b60006020820190506125cd600083018461244b565b92915050565b60006125dd6125ee565b90506125e982826128ad565b919050565b6000604051905090565b600067ffffffffffffffff821115612613576126126129b4565b5b61261c826129f7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612677826127f9565b9150612682836127f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126b7576126b6612927565b5b828201905092915050565b60006126cd826127f9565b91506126d8836127f9565b9250826126e8576126e7612956565b5b828204905092915050565b60006126fe826127f9565b9150612709836127f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561274257612741612927565b5b828202905092915050565b6000612758826127f9565b9150612763836127f9565b92508282101561277657612775612927565b5b828203905092915050565b600061278c826127d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061280e82612815565b9050919050565b600061282082612827565b9050919050565b6000612832826127d9565b9050919050565b82818337600083830152505050565b60005b8381101561286657808201518184015260208101905061284b565b83811115612875576000848401525b50505050565b6000600282049050600182168061289357607f821691505b602082108114156128a7576128a6612985565b5b50919050565b6128b6826129f7565b810181811067ffffffffffffffff821117156128d5576128d46129b4565b5b80604052505050565b60006128e9826127f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561291c5761291b612927565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f697066733a2f2f626166796265696337336a756e6d76646e7735766f70686e6460008201527f69323278346b7372737372696c6871736c326b6b70363675356975726e33356360208201527f63652f0000000000000000000000000000000000000000000000000000000000604082015250565b612ad881612781565b8114612ae357600080fd5b50565b612aef81612793565b8114612afa57600080fd5b50565b612b068161279f565b8114612b1157600080fd5b50565b612b1d816127cb565b8114612b2857600080fd5b50565b612b34816127f9565b8114612b3f57600080fd5b5056fea26469706673582212209681605244a5da98b833c61239ccd03cb9de464f02f69fbfe2b3b5a4b554576a64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061012a5760003560e01c806342842e0e116100ab578063a0712d681161006f578063a0712d68146103ca578063a22cb465146103e6578063b88d4fde1461040f578063c87b56dd1461042b578063d5abeb0114610468578063e985e9c5146104935761012a565b806342842e0e146102e05780636352211e146102fc57806370a0823114610339578063933a6f0d1461037657806395d89b411461039f5761012a565b806323b872dd116100f257806323b872dd1461021b5780632889aa67146102375780632a55205a146102605780633ccfd60b1461029e57806341f43434146102b55761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806318160ddd146101f0575b600080fd5b34801561013b57600080fd5b506101566004803603810190610151919061220b565b6104d0565b6040516101639190612540565b60405180910390f35b34801561017857600080fd5b50610181610562565b60405161018e9190612576565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b991906122a5565b6105f4565b6040516101cb9190612487565b60405180910390f35b6101ee60048036038101906101e9919061219e565b610673565b005b3480156101fc57600080fd5b5061020561078c565b60405161021291906125b8565b60405180910390f35b61023560048036038101906102309190612088565b6107a3565b005b34801561024357600080fd5b5061025e60048036038101906102599190612265565b610903565b005b34801561026c57600080fd5b50610287600480360381019061028291906122d2565b6109ca565b604051610295929190612517565b60405180910390f35b3480156102aa57600080fd5b506102b3610a1c565b005b3480156102c157600080fd5b506102ca610abf565b6040516102d7919061255b565b60405180910390f35b6102fa60048036038101906102f59190612088565b610ad1565b005b34801561030857600080fd5b50610323600480360381019061031e91906122a5565b610c31565b6040516103309190612487565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061201b565b610c43565b60405161036d91906125b8565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906122d2565b610cfc565b005b3480156103ab57600080fd5b506103b4610d68565b6040516103c19190612576565b60405180910390f35b6103e460048036038101906103df91906122a5565b610dfa565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061215e565b610e27565b005b610429600480360381019061042491906120db565b610f40565b005b34801561043757600080fd5b50610452600480360381019061044d91906122a5565b6110a3565b60405161045f9190612576565b60405180910390f35b34801561047457600080fd5b5061047d6110d4565b60405161048a91906125b8565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612048565b6110da565b6040516104c79190612540565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105719061287b565b80601f016020809104026020016040519081016040528092919081815260200182805461059d9061287b565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60006105ff8261116e565b610635576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561077d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016106eb9291906124a2565b60206040518083038186803b15801561070357600080fd5b505afa158015610717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073b91906121de565b61077c57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016107739190612487565b60405180910390fd5b5b61078783836111cd565b505050565b6000610796611311565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108f1573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561081657610811848484611316565b6108fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161085f9291906124a2565b60206040518083038186803b15801561087757600080fd5b505afa15801561088b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108af91906121de565b6108f057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108e79190612487565b60405180910390fd5b5b6108fc848484611316565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461095d57600080fd5b6008548261ffff1661096d61078c565b610977919061266c565b11156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90612598565b60405180910390fd5b6109c6818361ffff16611643565b5050565b60008060006103e8600c54856109e091906126f3565b6109ea91906126c2565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a7657600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610abc573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c1f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4457610b3f848484611661565b610c2b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b8d9291906124a2565b60206040518083038186803b158015610ba557600080fd5b505afa158015610bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdd91906121de565b610c1e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c159190612487565b60405180910390fd5b5b610c2a848484611661565b5b50505050565b6000610c3c82611681565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5657600080fd5b81600c81905550806008819055505050565b606060038054610d779061287b565b80601f0160208091040260200160405190810160405280929190818152602001828054610da39061287b565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b60085481610e0661078c565b610e10919061266c565b1115610e1b57600080fd5b610e248161174f565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f31576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9f9291906124a2565b60206040518083038186803b158015610eb757600080fd5b505afa158015610ecb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eef91906121de565b610f3057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f279190612487565b60405180910390fd5b5b610f3b8383611830565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb457610faf8585858561193b565b61109c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffd9291906124a2565b60206040518083038186803b15801561101557600080fd5b505afa158015611029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104d91906121de565b61108e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110859190612487565b60405180910390fd5b5b61109b8585858561193b565b5b5050505050565b60606110ae826119ae565b6040516020016110be919061245a565b6040516020818303038152906040529050919050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081611179611311565b11158015611188575060005482105b80156111c6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006111d882610c31565b90508073ffffffffffffffffffffffffffffffffffffffff166111f9611a07565b73ffffffffffffffffffffffffffffffffffffffff161461125c5761122581611220611a07565b6110da565b61125b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61131e611a0f565b600061132982611681565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611390576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061139c84611a7b565b915091506113b281876113ad611a07565b611aa2565b6113fe576113c7866113c2611a07565b6110da565b6113fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611465576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114728686866001611ae6565b801561147d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061154b85611527888887611aec565b7c020000000000000000000000000000000000000000000000000000000017611b14565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156115d35760006001850190506000600460008381526020019081526020016000205414156115d15760005481146115d0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461163b8686866001611b3f565b505050505050565b61165d828260405180602001604052806000815250611b45565b5050565b61167c83838360405180602001604052806000815250610f40565b505050565b60008082905080611690611311565b11611718576000548110156117175760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611715575b600081141561170b5760046000836001900393508381526020019081526020016000205490506116e0565b809250505061174a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600034141561180857600061176261078c565b9050600a60085461177391906126c2565b8111156117f757600061178533610c43565b1461178f57600080fd5b6000600c826008546117a1919061274d565b6117ab91906126c2565b905080600a600043815260200190815260200160002054106117cc57600080fd5b600a600043815260200190815260200160002060008154809291906117f0906128de565b9190505550505b611802336001611643565b5061182d565b6009548161181691906126f3565b34101561182257600080fd5b61182c3382611643565b5b50565b806007600061183d611a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118ea611a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161192f9190612540565b60405180910390a35050565b6119468484846107a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119a85761197184848484611be2565b6119a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b6001156119f257600184039350600a81066030018453600a81049050806119ed576119f2565b6119c7565b50828103602084039350808452505050919050565b600033905090565b6000471115611a785773a590d264449dff3d23f6305525b9f4e919a73c9c73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a72573d6000803e3d6000fd5b50611a79565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b03868684611d42565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b4f8383611d4b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bdd57600080549050600083820390505b611b8f6000868380600101945086611be2565b611bc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b7c578160005414611bda57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c08611a07565b8786866040518563ffffffff1660e01b8152600401611c2a94939291906124cb565b602060405180830381600087803b158015611c4457600080fd5b505af1925050508015611c7557506040513d601f19601f82011682018060405250810190611c729190612238565b60015b611cef573d8060008114611ca5576040519150601f19603f3d011682016040523d82523d6000602084013e611caa565b606091505b50600081511415611ce7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611d8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d996000848385611ae6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e1083611e016000866000611aec565b611e0a85611f08565b17611b14565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eb157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e76565b506000821415611eed576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f036000848385611b3f565b505050565b60006001821460e11b9050919050565b6000611f2b611f26846125f8565b6125d3565b905082815260208101848484011115611f4757611f466129e8565b5b611f52848285612839565b509392505050565b600081359050611f6981612acf565b92915050565b600081359050611f7e81612ae6565b92915050565b600081519050611f9381612ae6565b92915050565b600081359050611fa881612afd565b92915050565b600081519050611fbd81612afd565b92915050565b600082601f830112611fd857611fd76129e3565b5b8135611fe8848260208601611f18565b91505092915050565b60008135905061200081612b14565b92915050565b60008135905061201581612b2b565b92915050565b600060208284031215612031576120306129f2565b5b600061203f84828501611f5a565b91505092915050565b6000806040838503121561205f5761205e6129f2565b5b600061206d85828601611f5a565b925050602061207e85828601611f5a565b9150509250929050565b6000806000606084860312156120a1576120a06129f2565b5b60006120af86828701611f5a565b93505060206120c086828701611f5a565b92505060406120d186828701612006565b9150509250925092565b600080600080608085870312156120f5576120f46129f2565b5b600061210387828801611f5a565b945050602061211487828801611f5a565b935050604061212587828801612006565b925050606085013567ffffffffffffffff811115612146576121456129ed565b5b61215287828801611fc3565b91505092959194509250565b60008060408385031215612175576121746129f2565b5b600061218385828601611f5a565b925050602061219485828601611f6f565b9150509250929050565b600080604083850312156121b5576121b46129f2565b5b60006121c385828601611f5a565b92505060206121d485828601612006565b9150509250929050565b6000602082840312156121f4576121f36129f2565b5b600061220284828501611f84565b91505092915050565b600060208284031215612221576122206129f2565b5b600061222f84828501611f99565b91505092915050565b60006020828403121561224e5761224d6129f2565b5b600061225c84828501611fae565b91505092915050565b6000806040838503121561227c5761227b6129f2565b5b600061228a85828601611ff1565b925050602061229b85828601611f5a565b9150509250929050565b6000602082840312156122bb576122ba6129f2565b5b60006122c984828501612006565b91505092915050565b600080604083850312156122e9576122e86129f2565b5b60006122f785828601612006565b925050602061230885828601612006565b9150509250929050565b61231b81612781565b82525050565b61232a81612793565b82525050565b600061233b82612629565b612345818561263f565b9350612355818560208601612848565b61235e816129f7565b840191505092915050565b61237281612803565b82525050565b600061238382612634565b61238d8185612650565b935061239d818560208601612848565b6123a6816129f7565b840191505092915050565b60006123bc82612634565b6123c68185612661565b93506123d6818560208601612848565b80840191505092915050565b60006123ef600583612661565b91506123fa82612a08565b600582019050919050565b6000612412601383612650565b915061241d82612a31565b602082019050919050565b6000612435604383612661565b915061244082612a5a565b604382019050919050565b612454816127f9565b82525050565b600061246582612428565b915061247182846123b1565b915061247c826123e2565b915081905092915050565b600060208201905061249c6000830184612312565b92915050565b60006040820190506124b76000830185612312565b6124c46020830184612312565b9392505050565b60006080820190506124e06000830187612312565b6124ed6020830186612312565b6124fa604083018561244b565b818103606083015261250c8184612330565b905095945050505050565b600060408201905061252c6000830185612312565b612539602083018461244b565b9392505050565b60006020820190506125556000830184612321565b92915050565b60006020820190506125706000830184612369565b92915050565b600060208201905081810360008301526125908184612378565b905092915050565b600060208201905081810360008301526125b181612405565b9050919050565b60006020820190506125cd600083018461244b565b92915050565b60006125dd6125ee565b90506125e982826128ad565b919050565b6000604051905090565b600067ffffffffffffffff821115612613576126126129b4565b5b61261c826129f7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612677826127f9565b9150612682836127f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126b7576126b6612927565b5b828201905092915050565b60006126cd826127f9565b91506126d8836127f9565b9250826126e8576126e7612956565b5b828204905092915050565b60006126fe826127f9565b9150612709836127f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561274257612741612927565b5b828202905092915050565b6000612758826127f9565b9150612763836127f9565b92508282101561277657612775612927565b5b828203905092915050565b600061278c826127d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061280e82612815565b9050919050565b600061282082612827565b9050919050565b6000612832826127d9565b9050919050565b82818337600083830152505050565b60005b8381101561286657808201518184015260208101905061284b565b83811115612875576000848401525b50505050565b6000600282049050600182168061289357607f821691505b602082108114156128a7576128a6612985565b5b50919050565b6128b6826129f7565b810181811067ffffffffffffffff821117156128d5576128d46129b4565b5b80604052505050565b60006128e9826127f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561291c5761291b612927565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f697066733a2f2f626166796265696337336a756e6d76646e7735766f70686e6460008201527f69323278346b7372737372696c6871736c326b6b70363675356975726e33356360208201527f63652f0000000000000000000000000000000000000000000000000000000000604082015250565b612ad881612781565b8114612ae357600080fd5b50565b612aef81612793565b8114612afa57600080fd5b50565b612b068161279f565b8114612b1157600080fd5b50565b612b1d816127cb565b8114612b2857600080fd5b50565b612b34816127f9565b8114612b3f57600080fd5b5056fea26469706673582212209681605244a5da98b833c61239ccd03cb9de464f02f69fbfe2b3b5a4b554576a64736f6c63430008070033

Deployed Bytecode Sourcemap

57542:3010:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18676:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19578:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26313:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59765:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15329:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59938:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58638:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58877:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;59341:109;;;;;;;;;;;;;:::i;:::-;;54911:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60117:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21215:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16513:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59458:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19754:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57927:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59581:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60304:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59103:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57605:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27262:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18676:639;18761:4;19100:10;19085:25;;:11;:25;;;;:102;;;;19177:10;19162:25;;:11;:25;;;;19085:102;:179;;;;19254:10;19239:25;;:11;:25;;;;19085:179;19065:199;;18676:639;;;:::o;19578:100::-;19632:13;19665:5;19658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19578:100;:::o;26313:218::-;26389:7;26414:16;26422:7;26414;:16::i;:::-;26409:64;;26439:34;;;;;;;;;;;;;;26409:64;26493:15;:24;26509:7;26493:24;;;;;;;;;;;:30;;;;;;;;;;;;26486:37;;26313:218;;;:::o;59765:165::-;59869:8;56953:1;55011:42;56905:45;;;:49;56901:225;;;55011:42;56976;;;57027:4;57034:8;56976:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56971:144;;57090:8;57071:28;;;;;;;;;;;:::i;:::-;;;;;;;;56971:144;56901:225;59890:32:::1;59904:8;59914:7;59890:13;:32::i;:::-;59765:165:::0;;;:::o;15329:323::-;15390:7;15618:15;:13;:15::i;:::-;15603:12;;15587:13;;:28;:46;15580:53;;15329:323;:::o;59938:171::-;60047:4;56207:1;55011:42;56159:45;;;:49;56155:539;;;56448:10;56440:18;;:4;:18;;;56436:85;;;60064:37:::1;60083:4;60089:2;60093:7;60064:18;:37::i;:::-;56499:7:::0;;56436:85;55011:42;56540;;;56591:4;56598:10;56540:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56535:148;;56656:10;56637:30;;;;;;;;;;;:::i;:::-;;;;;;;;56535:148;56155:539;60064:37:::1;60083:4;60089:2;60093:7;60064:18;:37::i;:::-;59938:171:::0;;;;;:::o;58638:203::-;57792:10;57783:19;;:5;;;;;;;;;;;:19;;;57775:28;;;;;;58760:9:::1;;58745:11;58729:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58721:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;58804:29;58814:5;58821:11;58804:29;;:9;:29::i;:::-;58638:203:::0;;:::o;58877:218::-;58965:7;58974;58994:21;59043:4;59032:7;;59019:10;:20;;;;:::i;:::-;59018:29;;;;:::i;:::-;58994:53;;59066:5;;;;;;;;;;;59073:13;59058:29;;;;;58877:218;;;;;:::o;59341:109::-;57792:10;57783:19;;:5;;;;;;;;;;;:19;;;57775:28;;;;;;59399:10:::1;59391:28;;:51;59420:21;59391:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59341:109::o:0;54911:143::-;55011:42;54911:143;:::o;60117:179::-;60230:4;56207:1;55011:42;56159:45;;;:49;56155:539;;;56448:10;56440:18;;:4;:18;;;56436:85;;;60247:41:::1;60270:4;60276:2;60280:7;60247:22;:41::i;:::-;56499:7:::0;;56436:85;55011:42;56540;;;56591:4;56598:10;56540:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56535:148;;56656:10;56637:30;;;;;;;;;;;:::i;:::-;;;;;;;;56535:148;56155:539;60247:41:::1;60270:4;60276:2;60280:7;60247:22;:41::i;:::-;60117:179:::0;;;;;:::o;21215:152::-;21287:7;21330:27;21349:7;21330:18;:27::i;:::-;21307:52;;21215:152;;;:::o;16513:233::-;16585:7;16626:1;16609:19;;:5;:19;;;16605:60;;;16637:28;;;;;;;;;;;;;;16605:60;10672:13;16683:18;:25;16702:5;16683:25;;;;;;;;;;;;;;;;:55;16676:62;;16513:233;;;:::o;59458:115::-;57792:10;57783:19;;:5;;;;;;;;;;;:19;;;57775:28;;;;;;59540:1:::1;59530:7;:11;;;;59564:1;59552:9;:13;;;;59458:115:::0;;:::o;19754:104::-;19810:13;19843:7;19836:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19754:104;:::o;57927:132::-;58017:9;;58007:6;57991:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57983:44;;;;;;58038:13;58044:6;58038:5;:13::i;:::-;57927:132;:::o;59581:176::-;59685:8;56953:1;55011:42;56905:45;;;:49;56901:225;;;55011:42;56976;;;57027:4;57034:8;56976:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56971:144;;57090:8;57071:28;;;;;;;;;;;:::i;:::-;;;;;;;;56971:144;56901:225;59706:43:::1;59730:8;59740;59706:23;:43::i;:::-;59581:176:::0;;;:::o;60304:245::-;60472:4;56207:1;55011:42;56159:45;;;:49;56155:539;;;56448:10;56440:18;;:4;:18;;;56436:85;;;60494:47:::1;60517:4;60523:2;60527:7;60536:4;60494:22;:47::i;:::-;56499:7:::0;;56436:85;55011:42;56540;;;56591:4;56598:10;56540:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56535:148;;56656:10;56637:30;;;;;;;;;;;:::i;:::-;;;;;;;;56535:148;56155:539;60494:47:::1;60517:4;60523:2;60527:7;60536:4;60494:22;:47::i;:::-;60304:245:::0;;;;;;:::o;59103:230::-;59168:13;59296:18;59306:7;59296:9;:18::i;:::-;59208:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;59194:131;;59103:230;;;:::o;57605:30::-;;;;:::o;27262:164::-;27359:4;27383:18;:25;27402:5;27383:25;;;;;;;;;;;;;;;:35;27409:8;27383:35;;;;;;;;;;;;;;;;;;;;;;;;;27376:42;;27262:164;;;;:::o;27684:282::-;27749:4;27805:7;27786:15;:13;:15::i;:::-;:26;;:66;;;;;27839:13;;27829:7;:23;27786:66;:153;;;;;27938:1;11448:8;27890:17;:26;27908:7;27890:26;;;;;;;;;;;;:44;:49;27786:153;27766:173;;27684:282;;;:::o;25746:408::-;25835:13;25851:16;25859:7;25851;:16::i;:::-;25835:32;;25907:5;25884:28;;:19;:17;:19::i;:::-;:28;;;25880:175;;25932:44;25949:5;25956:19;:17;:19::i;:::-;25932:16;:44::i;:::-;25927:128;;26004:35;;;;;;;;;;;;;;25927:128;25880:175;26100:2;26067:15;:24;26083:7;26067:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26138:7;26134:2;26118:28;;26127:5;26118:28;;;;;;;;;;;;25824:330;25746:408;;:::o;14845:92::-;14901:7;14845:92;:::o;29952:2853::-;30094:17;:15;:17::i;:::-;30122:27;30152;30171:7;30152:18;:27::i;:::-;30122:57;;30237:4;30196:45;;30212:19;30196:45;;;30192:86;;30250:28;;;;;;;;;;;;;;30192:86;30292:27;30321:23;30348:35;30375:7;30348:26;:35::i;:::-;30291:92;;;;30483:68;30508:15;30525:4;30531:19;:17;:19::i;:::-;30483:24;:68::i;:::-;30478:180;;30571:43;30588:4;30594:19;:17;:19::i;:::-;30571:16;:43::i;:::-;30566:92;;30623:35;;;;;;;;;;;;;;30566:92;30478:180;30689:1;30675:16;;:2;:16;;;30671:52;;;30700:23;;;;;;;;;;;;;;30671:52;30736:43;30758:4;30764:2;30768:7;30777:1;30736:21;:43::i;:::-;30872:15;30869:160;;;31012:1;30991:19;30984:30;30869:160;31409:18;:24;31428:4;31409:24;;;;;;;;;;;;;;;;31407:26;;;;;;;;;;;;31478:18;:22;31497:2;31478:22;;;;;;;;;;;;;;;;31476:24;;;;;;;;;;;31800:146;31837:2;31886:45;31901:4;31907:2;31911:19;31886:14;:45::i;:::-;11728:8;31858:73;31800:18;:146::i;:::-;31771:17;:26;31789:7;31771:26;;;;;;;;;;;:175;;;;32117:1;11728:8;32066:19;:47;:52;32062:627;;;32139:19;32171:1;32161:7;:11;32139:33;;32328:1;32294:17;:30;32312:11;32294:30;;;;;;;;;;;;:35;32290:384;;;32432:13;;32417:11;:28;32413:242;;32612:19;32579:17;:30;32597:11;32579:30;;;;;;;;;;;:52;;;;32413:242;32290:384;32120:569;32062:627;32736:7;32732:2;32717:27;;32726:4;32717:27;;;;;;;;;;;;32755:42;32776:4;32782:2;32786:7;32795:1;32755:20;:42::i;:::-;30083:2722;;;29952:2853;;;:::o;44046:112::-;44123:27;44133:2;44137:8;44123:27;;;;;;;;;;;;:9;:27::i;:::-;44046:112;;:::o;32901:193::-;33047:39;33064:4;33070:2;33074:7;33047:39;;;;;;;;;;;;:16;:39::i;:::-;32901:193;;;:::o;22370:1275::-;22437:7;22457:12;22472:7;22457:22;;22540:4;22521:15;:13;:15::i;:::-;:23;22517:1061;;22574:13;;22567:4;:20;22563:1015;;;22612:14;22629:17;:23;22647:4;22629:23;;;;;;;;;;;;22612:40;;22746:1;11448:8;22718:6;:24;:29;22714:845;;;23383:113;23400:1;23390:6;:11;23383:113;;;23443:17;:25;23461:6;;;;;;;23443:25;;;;;;;;;;;;23434:34;;23383:113;;;23529:6;23522:13;;;;;;22714:845;22589:989;22563:1015;22517:1061;23606:31;;;;;;;;;;;;;;22370:1275;;;;:::o;58083:547::-;58151:1;58138:9;:14;58134:402;;;58169:9;58181:13;:11;:13::i;:::-;58169:25;;58229:2;58217:9;;:14;;;;:::i;:::-;58213:1;:18;58209:256;;;58285:1;58260:21;58270:10;58260:9;:21::i;:::-;:26;58252:35;;;;;;58306:15;58342:2;58337:1;58325:9;;:13;;;;:::i;:::-;58324:20;;;;:::i;:::-;58306:38;;58397:7;58371:9;:23;58381:12;58371:23;;;;;;;;;;;;:33;58363:42;;;;;;58424:9;:23;58434:12;58424:23;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;58233:232;58209:256;58479:24;58489:10;58501:1;58479:9;:24::i;:::-;58518:7;;;58134:402;58576:5;;58567:6;:14;;;;:::i;:::-;58554:9;:27;;58546:36;;;;;;58593:29;58603:10;58615:6;58593:9;:29::i;:::-;58083:547;;:::o;26871:234::-;27018:8;26966:18;:39;26985:19;:17;:19::i;:::-;26966:39;;;;;;;;;;;;;;;:49;27006:8;26966:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27078:8;27042:55;;27057:19;:17;:19::i;:::-;27042:55;;;27088:8;27042:55;;;;;;:::i;:::-;;;;;;;;26871:234;;:::o;33692:407::-;33867:31;33880:4;33886:2;33890:7;33867:12;:31::i;:::-;33931:1;33913:2;:14;;;:19;33909:183;;33952:56;33983:4;33989:2;33993:7;34002:5;33952:30;:56::i;:::-;33947:145;;34036:40;;;;;;;;;;;;;;33947:145;33909:183;33692:407;;;;:::o;50421:1745::-;50486:17;50920:4;50913;50907:11;50903:22;51012:1;51006:4;50999:15;51087:4;51084:1;51080:12;51073:19;;51169:1;51164:3;51157:14;51273:3;51512:5;51494:428;51520:1;51494:428;;;51560:1;51555:3;51551:11;51544:18;;51731:2;51725:4;51721:13;51717:2;51713:22;51708:3;51700:36;51825:2;51819:4;51815:13;51807:21;;51892:4;51882:25;;51900:5;;51882:25;51494:428;;;51498:21;51961:3;51956;51952:13;52076:4;52071:3;52067:14;52060:21;;52141:6;52136:3;52129:19;50525:1634;;;50421:1745;;;:::o;50214:105::-;50274:7;50301:10;50294:17;;50214:105;:::o;34928:188::-;35003:1;34979:21;:25;34975:134;;;21012:42;35021:32;;:55;35054:21;35021:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35091:7;;34975:134;34928:188;:::o;28847:485::-;28949:27;28978:23;29019:38;29060:15;:24;29076:7;29060:24;;;;;;;;;;;29019:65;;29237:18;29214:41;;29294:19;29288:26;29269:45;;29199:126;28847:485;;;:::o;28075:659::-;28224:11;28389:16;28382:5;28378:28;28369:37;;28549:16;28538:9;28534:32;28521:45;;28699:15;28688:9;28685:30;28677:5;28666:9;28663:20;28660:56;28650:66;;28075:659;;;;;:::o;34761:159::-;;;;;:::o;49523:311::-;49658:7;49678:16;11852:3;49704:19;:41;;49678:68;;11852:3;49772:31;49783:4;49789:2;49793:9;49772:10;:31::i;:::-;49764:40;;:62;;49757:69;;;49523:311;;;;;:::o;24193:450::-;24273:14;24441:16;24434:5;24430:28;24421:37;;24618:5;24604:11;24579:23;24575:41;24572:52;24565:5;24562:63;24552:73;;24193:450;;;;:::o;35779:158::-;;;;;:::o;43273:689::-;43404:19;43410:2;43414:8;43404:5;:19::i;:::-;43483:1;43465:2;:14;;;:19;43461:483;;43505:11;43519:13;;43505:27;;43551:13;43573:8;43567:3;:14;43551:30;;43600:233;43631:62;43670:1;43674:2;43678:7;;;;;;43687:5;43631:30;:62::i;:::-;43626:167;;43729:40;;;;;;;;;;;;;;43626:167;43828:3;43820:5;:11;43600:233;;43915:3;43898:13;;:20;43894:34;;43920:8;;;43894:34;43486:458;;43461:483;43273:689;;;:::o;36377:716::-;36540:4;36586:2;36561:45;;;36607:19;:17;:19::i;:::-;36628:4;36634:7;36643:5;36561:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36557:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36861:1;36844:6;:13;:18;36840:235;;;36890:40;;;;;;;;;;;;;;36840:235;37033:6;37027:13;37018:6;37014:2;37010:15;37003:38;36557:529;36730:54;;;36720:64;;;:6;:64;;;;36713:71;;;36377:716;;;;;;:::o;49224:147::-;49361:6;49224:147;;;;;:::o;37555:2966::-;37628:20;37651:13;;37628:36;;37691:1;37679:8;:13;37675:44;;;37701:18;;;;;;;;;;;;;;37675:44;37732:61;37762:1;37766:2;37770:12;37784:8;37732:21;:61::i;:::-;38276:1;10810:2;38246:1;:26;;38245:32;38233:8;:45;38207:18;:22;38226:2;38207:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38555:139;38592:2;38646:33;38669:1;38673:2;38677:1;38646:14;:33::i;:::-;38613:30;38634:8;38613:20;:30::i;:::-;:66;38555:18;:139::i;:::-;38521:17;:31;38539:12;38521:31;;;;;;;;;;;:173;;;;38711:16;38742:11;38771:8;38756:12;:23;38742:37;;39292:16;39288:2;39284:25;39272:37;;39664:12;39624:8;39583:1;39521:25;39462:1;39401;39374:335;40035:1;40021:12;40017:20;39975:346;40076:3;40067:7;40064:16;39975:346;;40294:7;40284:8;40281:1;40254:25;40251:1;40248;40243:59;40129:1;40120:7;40116:15;40105:26;;39975:346;;;39979:77;40366:1;40354:8;:13;40350:45;;;40376:19;;;;;;;;;;;;;;40350:45;40428:3;40412:13;:19;;;;37981:2462;;40453:60;40482:1;40486:2;40490:12;40504:8;40453:20;:60::i;:::-;37617:2904;37555:2966;;:::o;24745:324::-;24815:14;25048:1;25038:8;25035:15;25009:24;25005:46;24995:56;;24745:324;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;761:5;792:6;786:13;777:22;;808:30;832:5;808:30;:::i;:::-;707:137;;;;:::o;850:::-;895:5;933:6;920:20;911:29;;949:32;975:5;949:32;:::i;:::-;850:137;;;;:::o;993:141::-;1049:5;1080:6;1074:13;1065:22;;1096:32;1122:5;1096:32;:::i;:::-;993:141;;;;:::o;1153:338::-;1208:5;1257:3;1250:4;1242:6;1238:17;1234:27;1224:122;;1265:79;;:::i;:::-;1224:122;1382:6;1369:20;1407:78;1481:3;1473:6;1466:4;1458:6;1454:17;1407:78;:::i;:::-;1398:87;;1214:277;1153:338;;;;:::o;1497:137::-;1542:5;1580:6;1567:20;1558:29;;1596:32;1622:5;1596:32;:::i;:::-;1497:137;;;;:::o;1640:139::-;1686:5;1724:6;1711:20;1702:29;;1740:33;1767:5;1740:33;:::i;:::-;1640:139;;;;:::o;1785:329::-;1844:6;1893:2;1881:9;1872:7;1868:23;1864:32;1861:119;;;1899:79;;:::i;:::-;1861:119;2019:1;2044:53;2089:7;2080:6;2069:9;2065:22;2044:53;:::i;:::-;2034:63;;1990:117;1785:329;;;;:::o;2120:474::-;2188:6;2196;2245:2;2233:9;2224:7;2220:23;2216:32;2213:119;;;2251:79;;:::i;:::-;2213:119;2371:1;2396:53;2441:7;2432:6;2421:9;2417:22;2396:53;:::i;:::-;2386:63;;2342:117;2498:2;2524:53;2569:7;2560:6;2549:9;2545:22;2524:53;:::i;:::-;2514:63;;2469:118;2120:474;;;;;:::o;2600:619::-;2677:6;2685;2693;2742:2;2730:9;2721:7;2717:23;2713:32;2710:119;;;2748:79;;:::i;:::-;2710:119;2868:1;2893:53;2938:7;2929:6;2918:9;2914:22;2893:53;:::i;:::-;2883:63;;2839:117;2995:2;3021:53;3066:7;3057:6;3046:9;3042:22;3021:53;:::i;:::-;3011:63;;2966:118;3123:2;3149:53;3194:7;3185:6;3174:9;3170:22;3149:53;:::i;:::-;3139:63;;3094:118;2600:619;;;;;:::o;3225:943::-;3320:6;3328;3336;3344;3393:3;3381:9;3372:7;3368:23;3364:33;3361:120;;;3400:79;;:::i;:::-;3361:120;3520:1;3545:53;3590:7;3581:6;3570:9;3566:22;3545:53;:::i;:::-;3535:63;;3491:117;3647:2;3673:53;3718:7;3709:6;3698:9;3694:22;3673:53;:::i;:::-;3663:63;;3618:118;3775:2;3801:53;3846:7;3837:6;3826:9;3822:22;3801:53;:::i;:::-;3791:63;;3746:118;3931:2;3920:9;3916:18;3903:32;3962:18;3954:6;3951:30;3948:117;;;3984:79;;:::i;:::-;3948:117;4089:62;4143:7;4134:6;4123:9;4119:22;4089:62;:::i;:::-;4079:72;;3874:287;3225:943;;;;;;;:::o;4174:468::-;4239:6;4247;4296:2;4284:9;4275:7;4271:23;4267:32;4264:119;;;4302:79;;:::i;:::-;4264:119;4422:1;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4393:117;4549:2;4575:50;4617:7;4608:6;4597:9;4593:22;4575:50;:::i;:::-;4565:60;;4520:115;4174:468;;;;;:::o;4648:474::-;4716:6;4724;4773:2;4761:9;4752:7;4748:23;4744:32;4741:119;;;4779:79;;:::i;:::-;4741:119;4899:1;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4870:117;5026:2;5052:53;5097:7;5088:6;5077:9;5073:22;5052:53;:::i;:::-;5042:63;;4997:118;4648:474;;;;;:::o;5128:345::-;5195:6;5244:2;5232:9;5223:7;5219:23;5215:32;5212:119;;;5250:79;;:::i;:::-;5212:119;5370:1;5395:61;5448:7;5439:6;5428:9;5424:22;5395:61;:::i;:::-;5385:71;;5341:125;5128:345;;;;:::o;5479:327::-;5537:6;5586:2;5574:9;5565:7;5561:23;5557:32;5554:119;;;5592:79;;:::i;:::-;5554:119;5712:1;5737:52;5781:7;5772:6;5761:9;5757:22;5737:52;:::i;:::-;5727:62;;5683:116;5479:327;;;;:::o;5812:349::-;5881:6;5930:2;5918:9;5909:7;5905:23;5901:32;5898:119;;;5936:79;;:::i;:::-;5898:119;6056:1;6081:63;6136:7;6127:6;6116:9;6112:22;6081:63;:::i;:::-;6071:73;;6027:127;5812:349;;;;:::o;6167:472::-;6234:6;6242;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:52;6486:7;6477:6;6466:9;6462:22;6442:52;:::i;:::-;6432:62;;6388:116;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6167:472;;;;;:::o;6645:329::-;6704:6;6753:2;6741:9;6732:7;6728:23;6724:32;6721:119;;;6759:79;;:::i;:::-;6721:119;6879:1;6904:53;6949:7;6940:6;6929:9;6925:22;6904:53;:::i;:::-;6894:63;;6850:117;6645:329;;;;:::o;6980:474::-;7048:6;7056;7105:2;7093:9;7084:7;7080:23;7076:32;7073:119;;;7111:79;;:::i;:::-;7073:119;7231:1;7256:53;7301:7;7292:6;7281:9;7277:22;7256:53;:::i;:::-;7246:63;;7202:117;7358:2;7384:53;7429:7;7420:6;7409:9;7405:22;7384:53;:::i;:::-;7374:63;;7329:118;6980:474;;;;;:::o;7460:118::-;7547:24;7565:5;7547:24;:::i;:::-;7542:3;7535:37;7460:118;;:::o;7584:109::-;7665:21;7680:5;7665:21;:::i;:::-;7660:3;7653:34;7584:109;;:::o;7699:360::-;7785:3;7813:38;7845:5;7813:38;:::i;:::-;7867:70;7930:6;7925:3;7867:70;:::i;:::-;7860:77;;7946:52;7991:6;7986:3;7979:4;7972:5;7968:16;7946:52;:::i;:::-;8023:29;8045:6;8023:29;:::i;:::-;8018:3;8014:39;8007:46;;7789:270;7699:360;;;;:::o;8065:195::-;8184:69;8247:5;8184:69;:::i;:::-;8179:3;8172:82;8065:195;;:::o;8266:364::-;8354:3;8382:39;8415:5;8382:39;:::i;:::-;8437:71;8501:6;8496:3;8437:71;:::i;:::-;8430:78;;8517:52;8562:6;8557:3;8550:4;8543:5;8539:16;8517:52;:::i;:::-;8594:29;8616:6;8594:29;:::i;:::-;8589:3;8585:39;8578:46;;8358:272;8266:364;;;;:::o;8636:377::-;8742:3;8770:39;8803:5;8770:39;:::i;:::-;8825:89;8907:6;8902:3;8825:89;:::i;:::-;8818:96;;8923:52;8968:6;8963:3;8956:4;8949:5;8945:16;8923:52;:::i;:::-;9000:6;8995:3;8991:16;8984:23;;8746:267;8636:377;;;;:::o;9019:400::-;9179:3;9200:84;9282:1;9277:3;9200:84;:::i;:::-;9193:91;;9293:93;9382:3;9293:93;:::i;:::-;9411:1;9406:3;9402:11;9395:18;;9019:400;;;:::o;9425:366::-;9567:3;9588:67;9652:2;9647:3;9588:67;:::i;:::-;9581:74;;9664:93;9753:3;9664:93;:::i;:::-;9782:2;9777:3;9773:12;9766:19;;9425:366;;;:::o;9797:402::-;9957:3;9978:85;10060:2;10055:3;9978:85;:::i;:::-;9971:92;;10072:93;10161:3;10072:93;:::i;:::-;10190:2;10185:3;10181:12;10174:19;;9797:402;;;:::o;10205:118::-;10292:24;10310:5;10292:24;:::i;:::-;10287:3;10280:37;10205:118;;:::o;10329:807::-;10663:3;10685:148;10829:3;10685:148;:::i;:::-;10678:155;;10850:95;10941:3;10932:6;10850:95;:::i;:::-;10843:102;;10962:148;11106:3;10962:148;:::i;:::-;10955:155;;11127:3;11120:10;;10329:807;;;;:::o;11142:222::-;11235:4;11273:2;11262:9;11258:18;11250:26;;11286:71;11354:1;11343:9;11339:17;11330:6;11286:71;:::i;:::-;11142:222;;;;:::o;11370:332::-;11491:4;11529:2;11518:9;11514:18;11506:26;;11542:71;11610:1;11599:9;11595:17;11586:6;11542:71;:::i;:::-;11623:72;11691:2;11680:9;11676:18;11667:6;11623:72;:::i;:::-;11370:332;;;;;:::o;11708:640::-;11903:4;11941:3;11930:9;11926:19;11918:27;;11955:71;12023:1;12012:9;12008:17;11999:6;11955:71;:::i;:::-;12036:72;12104:2;12093:9;12089:18;12080:6;12036:72;:::i;:::-;12118;12186:2;12175:9;12171:18;12162:6;12118:72;:::i;:::-;12237:9;12231:4;12227:20;12222:2;12211:9;12207:18;12200:48;12265:76;12336:4;12327:6;12265:76;:::i;:::-;12257:84;;11708:640;;;;;;;:::o;12354:332::-;12475:4;12513:2;12502:9;12498:18;12490:26;;12526:71;12594:1;12583:9;12579:17;12570:6;12526:71;:::i;:::-;12607:72;12675:2;12664:9;12660:18;12651:6;12607:72;:::i;:::-;12354:332;;;;;:::o;12692:210::-;12779:4;12817:2;12806:9;12802:18;12794:26;;12830:65;12892:1;12881:9;12877:17;12868:6;12830:65;:::i;:::-;12692:210;;;;:::o;12908:286::-;13033:4;13071:2;13060:9;13056:18;13048:26;;13084:103;13184:1;13173:9;13169:17;13160:6;13084:103;:::i;:::-;12908:286;;;;:::o;13200:313::-;13313:4;13351:2;13340:9;13336:18;13328:26;;13400:9;13394:4;13390:20;13386:1;13375:9;13371:17;13364:47;13428:78;13501:4;13492:6;13428:78;:::i;:::-;13420:86;;13200:313;;;;:::o;13519:419::-;13685:4;13723:2;13712:9;13708:18;13700:26;;13772:9;13766:4;13762:20;13758:1;13747:9;13743:17;13736:47;13800:131;13926:4;13800:131;:::i;:::-;13792:139;;13519:419;;;:::o;13944:222::-;14037:4;14075:2;14064:9;14060:18;14052:26;;14088:71;14156:1;14145:9;14141:17;14132:6;14088:71;:::i;:::-;13944:222;;;;:::o;14172:129::-;14206:6;14233:20;;:::i;:::-;14223:30;;14262:33;14290:4;14282:6;14262:33;:::i;:::-;14172:129;;;:::o;14307:75::-;14340:6;14373:2;14367:9;14357:19;;14307:75;:::o;14388:307::-;14449:4;14539:18;14531:6;14528:30;14525:56;;;14561:18;;:::i;:::-;14525:56;14599:29;14621:6;14599:29;:::i;:::-;14591:37;;14683:4;14677;14673:15;14665:23;;14388:307;;;:::o;14701:98::-;14752:6;14786:5;14780:12;14770:22;;14701:98;;;:::o;14805:99::-;14857:6;14891:5;14885:12;14875:22;;14805:99;;;:::o;14910:168::-;14993:11;15027:6;15022:3;15015:19;15067:4;15062:3;15058:14;15043:29;;14910:168;;;;:::o;15084:169::-;15168:11;15202:6;15197:3;15190:19;15242:4;15237:3;15233:14;15218:29;;15084:169;;;;:::o;15259:148::-;15361:11;15398:3;15383:18;;15259:148;;;;:::o;15413:305::-;15453:3;15472:20;15490:1;15472:20;:::i;:::-;15467:25;;15506:20;15524:1;15506:20;:::i;:::-;15501:25;;15660:1;15592:66;15588:74;15585:1;15582:81;15579:107;;;15666:18;;:::i;:::-;15579:107;15710:1;15707;15703:9;15696:16;;15413:305;;;;:::o;15724:185::-;15764:1;15781:20;15799:1;15781:20;:::i;:::-;15776:25;;15815:20;15833:1;15815:20;:::i;:::-;15810:25;;15854:1;15844:35;;15859:18;;:::i;:::-;15844:35;15901:1;15898;15894:9;15889:14;;15724:185;;;;:::o;15915:348::-;15955:7;15978:20;15996:1;15978:20;:::i;:::-;15973:25;;16012:20;16030:1;16012:20;:::i;:::-;16007:25;;16200:1;16132:66;16128:74;16125:1;16122:81;16117:1;16110:9;16103:17;16099:105;16096:131;;;16207:18;;:::i;:::-;16096:131;16255:1;16252;16248:9;16237:20;;15915:348;;;;:::o;16269:191::-;16309:4;16329:20;16347:1;16329:20;:::i;:::-;16324:25;;16363:20;16381:1;16363:20;:::i;:::-;16358:25;;16402:1;16399;16396:8;16393:34;;;16407:18;;:::i;:::-;16393:34;16452:1;16449;16445:9;16437:17;;16269:191;;;;:::o;16466:96::-;16503:7;16532:24;16550:5;16532:24;:::i;:::-;16521:35;;16466:96;;;:::o;16568:90::-;16602:7;16645:5;16638:13;16631:21;16620:32;;16568:90;;;:::o;16664:149::-;16700:7;16740:66;16733:5;16729:78;16718:89;;16664:149;;;:::o;16819:89::-;16855:7;16895:6;16888:5;16884:18;16873:29;;16819:89;;;:::o;16914:126::-;16951:7;16991:42;16984:5;16980:54;16969:65;;16914:126;;;:::o;17046:77::-;17083:7;17112:5;17101:16;;17046:77;;;:::o;17129:158::-;17211:9;17244:37;17275:5;17244:37;:::i;:::-;17231:50;;17129:158;;;:::o;17293:126::-;17343:9;17376:37;17407:5;17376:37;:::i;:::-;17363:50;;17293:126;;;:::o;17425:113::-;17475:9;17508:24;17526:5;17508:24;:::i;:::-;17495:37;;17425:113;;;:::o;17544:154::-;17628:6;17623:3;17618;17605:30;17690:1;17681:6;17676:3;17672:16;17665:27;17544:154;;;:::o;17704:307::-;17772:1;17782:113;17796:6;17793:1;17790:13;17782:113;;;17881:1;17876:3;17872:11;17866:18;17862:1;17857:3;17853:11;17846:39;17818:2;17815:1;17811:10;17806:15;;17782:113;;;17913:6;17910:1;17907:13;17904:101;;;17993:1;17984:6;17979:3;17975:16;17968:27;17904:101;17753:258;17704:307;;;:::o;18017:320::-;18061:6;18098:1;18092:4;18088:12;18078:22;;18145:1;18139:4;18135:12;18166:18;18156:81;;18222:4;18214:6;18210:17;18200:27;;18156:81;18284:2;18276:6;18273:14;18253:18;18250:38;18247:84;;;18303:18;;:::i;:::-;18247:84;18068:269;18017:320;;;:::o;18343:281::-;18426:27;18448:4;18426:27;:::i;:::-;18418:6;18414:40;18556:6;18544:10;18541:22;18520:18;18508:10;18505:34;18502:62;18499:88;;;18567:18;;:::i;:::-;18499:88;18607:10;18603:2;18596:22;18386:238;18343:281;;:::o;18630:233::-;18669:3;18692:24;18710:5;18692:24;:::i;:::-;18683:33;;18738:66;18731:5;18728:77;18725:103;;;18808:18;;:::i;:::-;18725:103;18855:1;18848:5;18844:13;18837:20;;18630:233;;;:::o;18869:180::-;18917:77;18914:1;18907:88;19014:4;19011:1;19004:15;19038:4;19035:1;19028:15;19055:180;19103:77;19100:1;19093:88;19200:4;19197:1;19190:15;19224:4;19221:1;19214:15;19241:180;19289:77;19286:1;19279:88;19386:4;19383:1;19376:15;19410:4;19407:1;19400:15;19427:180;19475:77;19472:1;19465:88;19572:4;19569:1;19562:15;19596:4;19593:1;19586:15;19613:117;19722:1;19719;19712:12;19736:117;19845:1;19842;19835:12;19859:117;19968:1;19965;19958:12;19982:117;20091:1;20088;20081:12;20105:102;20146:6;20197:2;20193:7;20188:2;20181:5;20177:14;20173:28;20163:38;;20105:102;;;:::o;20213:155::-;20353:7;20349:1;20341:6;20337:14;20330:31;20213:155;:::o;20374:169::-;20514:21;20510:1;20502:6;20498:14;20491:45;20374:169;:::o;20549:303::-;20689:34;20685:1;20677:6;20673:14;20666:58;20762:34;20757:2;20749:6;20745:15;20738:59;20835:5;20830:2;20822:6;20818:15;20811:30;20549:303;:::o;20862:130::-;20939:24;20957:5;20939:24;:::i;:::-;20932:5;20929:35;20919:63;;20978:1;20975;20968:12;20919:63;20862:130;:::o;21002:124::-;21076:21;21091:5;21076:21;:::i;:::-;21069:5;21066:32;21056:60;;21112:1;21109;21102:12;21056:60;21002:124;:::o;21136:128::-;21212:23;21229:5;21212:23;:::i;:::-;21205:5;21202:34;21192:62;;21250:1;21247;21240:12;21192:62;21136:128;:::o;21274:::-;21350:23;21367:5;21350:23;:::i;:::-;21343:5;21340:34;21330:62;;21388:1;21385;21378:12;21330:62;21274:128;:::o;21412:130::-;21489:24;21507:5;21489:24;:::i;:::-;21482:5;21479:35;21469:63;;21528:1;21525;21518:12;21469:63;21412:130;:::o

Swarm Source

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