ETH Price: $3,361.99 (-0.64%)
Gas: 2 Gwei

Token

Under The Sign Of The Owl (OWLF)
 

Overview

Max Total Supply

551 OWLF

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
illuminaticongo.eth
Balance
3 OWLF
0x857D5884FC42CEa646bD62Cc84F806aEB9a2AE6F
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:
OWLF

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// @author dniminenn - SingOwl


pragma solidity ^0.8.13;

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);
}
// File: contracts/bananas/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @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);
            }
        }
        _;
    }
}
// File: contracts/bananas/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @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) {}
}
// File: contracts/bananas/IERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * 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;

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

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

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

    /**
     * @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);
}
// File: contracts/bananas/ERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
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 {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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)
        }
    }
}
// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.3.2/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.3.2/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.3.2/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: contracts/bananas/owl.sol


// @author dniminenn - SingOwl

pragma solidity ^0.8.13;






/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature)
    internal
    pure
    returns (address)
    {
        // Check the signature length
        if (signature.length != 65) {
            revert("ECDSA: invalid signature size.");
        }

        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // ecrecover takes the signature parameters, and the only way to get them
        // currently is to use assembly.
        // solhint-disable-next-line no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (
            uint256(s) >
            0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0
        ) {
            revert("ECDSA: invalid sign 's' value");
        }

        if (v != 27 && v != 28) {
            revert("ECDSA: invalid sign 'v' value");
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature or signer.");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * replicates the behavior of the
     * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
     * JSON-RPC method.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash)
    internal
    pure
    returns (bytes32)
    {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return
        keccak256(
            abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
        );
    }
}



contract OWLF is ERC721A, DefaultOperatorFilterer, Ownable {
    string public _baseUrl = "https://owl.fantomized.art/owl/";
    string public _contractUrl = "https://owl.fantomized.art/owl.json";
    uint private _amountClaim;
    uint private _maxClaim;
    uint public constant MAX_SUPPLY = 2899;
    uint public constant MAX_FREE_PER_ADDRESS = 3;
    address private constant AUTH_ADDRESS = 0x0D654EDb68684e7F66093d6366c309315aAC882F;

    using ECDSA for bytes32;
    mapping(address => uint) internal freemints;

    constructor() ERC721A("Under The Sign Of The Owl", "OWLF") {}

    function _startTokenId() override internal view virtual returns (uint) {
        return 1;
    }

    function setClaim(uint _max, uint _amount) public onlyOwner {
        _amountClaim = _amount;
        _maxClaim = _max;
    }

    function getClaimAmount() public view returns (uint) {
        return _amountClaim;
    }

    function getClaimMax() public view returns (uint) {
        return _maxClaim;
    }

    function mintTo(address _to) public onlyOwner {
       require(totalSupply() < MAX_SUPPLY, "Over supply");
       _safeMint(_to, 1);
    }

    function mintTo(address _to, uint _quantity) public onlyOwner {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Over supply");
        _safeMint(_to, _quantity);
    }

    function freemintTo(address _to, uint _quantity, bytes memory approvalData) public {
       require(totalSupply() + _quantity <= MAX_SUPPLY, "Over supply");
       require(freemints[_to] + _quantity <= MAX_FREE_PER_ADDRESS, "Exhausted freemints for that address");
       require(totalSupply() + _quantity <= _maxClaim, "Minting is paused");
       bytes memory blob = abi.encodePacked("Under The Sign Of The Owl Free Mint", _to);
       address who = keccak256(blob).toEthSignedMessageHash().recover(approvalData);
       require(who == AUTH_ADDRESS, "Wrong Auth");
       freemints[_to] = freemints[_to] + _quantity;
       _safeMint(_to, _quantity);
    }


    function withdraw(address payable _to, uint _amount) public onlyOwner {
        _to.transfer(_amount);
    }

     function withdrawAll(address payable _to) public onlyOwner {
        _to.transfer(address(this).balance);
    }

    function claim(address _to) public payable {
        require(totalSupply() < MAX_SUPPLY, "Minting is over");
        require(totalSupply() < _maxClaim, "Minting is paused");
        require(msg.value >= _amountClaim, "Incorrect price");
        _safeMint(_to, 1);
    }

    function claim(address _to, uint _quantity) public payable {
        require(_quantity <= 5, "Max 5 mint per tx");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Minting is over");
        require(totalSupply() + _quantity <= _maxClaim, "Minting is paused");
        require(msg.value >= _amountClaim * _quantity, "Incorrect price");
        _safeMint(_to, _quantity);
    }

    function baseTokenURI() public view returns (string memory) {
        return _baseUrl;
    }

    function updateBase(string memory newBase) public onlyOwner {
        _baseUrl = newBase;
    }

    function tokenURI(uint _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId), ".json"));
    }

    function contractURI() public view returns (string memory) {
        return _contractUrl;
    }

    function setcontractURI(string memory newURI) public onlyOwner {
        _contractUrl = newURI;
    }


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

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

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

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

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        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":"ApproveToCaller","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"MAX_FREE_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"approvalData","type":"bytes"}],"name":"freemintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","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":"_max","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setcontractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBase","type":"string"}],"name":"updateBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601f60808190527f68747470733a2f2f6f776c2e66616e746f6d697a65642e6172742f6f776c2f0060a0908152620000409160099190620002c3565b5060405180606001604052806023815260200162002a1e6023913980516200007191600a91602090910190620002c3565b503480156200007f57600080fd5b50604080518082018252601981527f556e64657220546865205369676e204f6620546865204f776c0000000000000060208083019182528351808501909452600484526327aba62360e11b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000fa91600291620002c3565b50805162000110906003906020840190620002c3565b50600160005550506daaeb6d7670e522a718067333cd4e3b156200025d578015620001ab57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200018c57600080fd5b505af1158015620001a1573d6000803e3d6000fd5b505050506200025d565b6001600160a01b03821615620001fc5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000171565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200024357600080fd5b505af115801562000258573d6000803e3d6000fd5b505050505b506200026b90503362000271565b620003a5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002d19062000369565b90600052602060002090601f016020900481019282620002f5576000855562000340565b82601f106200031057805160ff191683800117855562000340565b8280016001018555821562000340579182015b828111156200034057825182559160200191906001019062000323565b506200034e92915062000352565b5090565b5b808211156200034e576000815560010162000353565b600181811c908216806200037e57607f821691505b6020821081036200039f57634e487b7160e01b600052602260045260246000fd5b50919050565b61266980620003b56000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063d547cfb7116100a0578063efa00ce71161006f578063efa00ce7146105d9578063f2fde38b146105f9578063f34a39d414610619578063f3fef3a31461062e578063fa09e6301461064e57600080fd5b8063d547cfb714610546578063dbe59bc41461055b578063e8a3d4851461057b578063e985e9c51461059057600080fd5b8063a22cb465116100e7578063a22cb465146104be578063aad3ec96146104de578063b88d4fde146104f1578063c87b56dd14610511578063cb2c78c61461053157600080fd5b80638da5cb5b1461045657806395d89b4114610474578063a0927c4614610489578063a16c6a731461049e57600080fd5b806332cb6b0c1161019b5780636352211e1161016a5780636352211e146103cc57806370a08231146103ec57806371127ed21461040c578063715018a614610421578063755edd171461043657600080fd5b806332cb6b0c1461035457806341f434341461036a57806342842e0e1461038c578063449a52f8146103ac57600080fd5b80630f77282a116101e25780630f77282a146102c557806318160ddd146102e55780631e83409a1461030c57806323b872dd1461031f578063274503fc1461033f57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046120cc565b61066e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c0565b6040516102409190612141565b34801561027757600080fd5b5061028b610286366004612154565b610752565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612182565b610796565b005b3480156102d157600080fd5b506102c36102e036600461223a565b610864565b3480156102f157600080fd5b5060015460005403600019015b604051908152602001610240565b6102c361031a366004612283565b6108c3565b34801561032b57600080fd5b506102c361033a3660046122a0565b6109b3565b34801561034b57600080fd5b506102fe600381565b34801561036057600080fd5b506102fe610b5381565b34801561037657600080fd5b5061028b6daaeb6d7670e522a718067333cd4e81565b34801561039857600080fd5b506102c36103a73660046122a0565b610a8c565b3480156103b857600080fd5b506102c36103c7366004612182565b610b5a565b3480156103d857600080fd5b5061028b6103e7366004612154565b610c03565b3480156103f857600080fd5b506102fe610407366004612283565b610c0e565b34801561041857600080fd5b50600b546102fe565b34801561042d57600080fd5b506102c3610c5d565b34801561044257600080fd5b506102c3610451366004612283565b610cb1565b34801561046257600080fd5b506008546001600160a01b031661028b565b34801561048057600080fd5b5061025e610d44565b34801561049557600080fd5b5061025e610d53565b3480156104aa57600080fd5b506102c36104b93660046122e1565b610de1565b3480156104ca57600080fd5b506102c36104d9366004612311565b610e31565b6102c36104ec366004612182565b610ef5565b3480156104fd57600080fd5b506102c361050c36600461236a565b61104d565b34801561051d57600080fd5b5061025e61052c366004612154565b611129565b34801561053d57600080fd5b50600c546102fe565b34801561055257600080fd5b5061025e611163565b34801561056757600080fd5b506102c36105763660046123d6565b611172565b34801561058757600080fd5b5061025e611421565b34801561059c57600080fd5b506102346105ab36600461242f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e557600080fd5b506102c36105f436600461223a565b611430565b34801561060557600080fd5b506102c3610614366004612283565b61148b565b34801561062557600080fd5b5061025e611541565b34801561063a57600080fd5b506102c3610649366004612182565b61154e565b34801561065a57600080fd5b506102c3610669366004612283565b6115cc565b60006301ffc9a760e01b6001600160e01b03198316148061069f57506380ac58cd60e01b6001600160e01b03198316145b806106ba5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106cf9061245d565b80601f01602080910402602001604051908101604052809291908181526020018280546106fb9061245d565b80156107485780601f1061071d57610100808354040283529160200191610748565b820191906000526020600020905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b600061075d82611649565b61077a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1561085557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610804573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108289190612497565b61085557604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b61085f838361167e565b505050565b6008546001600160a01b031633146108ac5760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b80516108bf90600990602084019061201d565b5050565b600154600054610b5391900360001901106109125760405162461bcd60e51b815260206004820152600f60248201526e26b4b73a34b7339034b99037bb32b960891b604482015260640161084c565b600c546001546000540360001901106109615760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161084c565b600b543410156109a55760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420707269636560881b604482015260640161084c565b6109b081600161172b565b50565b826daaeb6d7670e522a718067333cd4e3b15610a7b57336001600160a01b038216036109e9576109e4848484611745565b610a86565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5c9190612497565b610a7b57604051633b79c77360e21b815233600482015260240161084c565b610a86848484611745565b50505050565b826daaeb6d7670e522a718067333cd4e3b15610b4f57336001600160a01b03821603610abd576109e48484846118dd565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b309190612497565b610b4f57604051633b79c77360e21b815233600482015260240161084c565b610a868484846118dd565b6008546001600160a01b03163314610ba25760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b600154600054610b539183910360001901610bbd91906124ca565b1115610bf95760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161084c565b6108bf828261172b565b60006106ba826118f8565b60006001600160a01b038216610c37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ca55760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b610caf600061196e565b565b6008546001600160a01b03163314610cf95760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b600154600054610b5391900360001901106109a55760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161084c565b6060600380546106cf9061245d565b600a8054610d609061245d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8c9061245d565b8015610dd95780601f10610dae57610100808354040283529160200191610dd9565b820191906000526020600020905b815481529060010190602001808311610dbc57829003601f168201915b505050505081565b6008546001600160a01b03163314610e295760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b600b55600c55565b816daaeb6d7670e522a718067333cd4e3b15610eeb57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190612497565b610eeb57604051633b79c77360e21b81526001600160a01b038216600482015260240161084c565b61085f83836119cd565b6005811115610f465760405162461bcd60e51b815260206004820152601160248201527f4d61782035206d696e7420706572207478000000000000000000000000000000604482015260640161084c565b600154600054610b539183910360001901610f6191906124ca565b1115610fa15760405162461bcd60e51b815260206004820152600f60248201526e26b4b73a34b7339034b99037bb32b960891b604482015260640161084c565b600c546001546000548391900360001901610fbc91906124ca565b1115610ffe5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161084c565b80600b5461100c91906124e2565b341015610bf95760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420707269636560881b604482015260640161084c565b836daaeb6d7670e522a718067333cd4e3b1561111657336001600160a01b038216036110845761107f85858585611a62565b611122565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f79190612497565b61111657604051633b79c77360e21b815233600482015260240161084c565b61112285858585611a62565b5050505050565b6060611133611163565b61113c83611aa6565b60405160200161114d929190612501565b6040516020818303038152906040529050919050565b6060600980546106cf9061245d565b600154600054610b53918491036000190161118d91906124ca565b11156111c95760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161084c565b6001600160a01b0383166000908152600d60205260409020546003906111f09084906124ca565b111561124a5760405162461bcd60e51b8152602060048201526024808201527f45786861757374656420667265656d696e747320666f722074686174206164646044820152637265737360e01b606482015260840161084c565b600c54600154600054849190036000190161126591906124ca565b11156112a75760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161084c565b60008360405160200161130491907f556e64657220546865205369676e204f6620546865204f776c2046726565204d8152621a5b9d60ea1b602082015260609190911b6bffffffffffffffffffffffff1916602382015260370190565b6040516020818303038152906040529050600061137f8361137984805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611bc7565b90506001600160a01b038116730d654edb68684e7f66093d6366c309315aac882f146113da5760405162461bcd60e51b815260206004820152600a6024820152690aee4dedcce4082eae8d60b31b604482015260640161084c565b6001600160a01b0385166000908152600d60205260409020546113fe9085906124ca565b6001600160a01b0386166000908152600d6020526040902055611122858561172b565b6060600a80546106cf9061245d565b6008546001600160a01b031633146114785760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b80516108bf90600a90602084019061201d565b6008546001600160a01b031633146114d35760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b6001600160a01b0381166115385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084c565b6109b08161196e565b60098054610d609061245d565b6008546001600160a01b031633146115965760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b6040516001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561085f573d6000803e3d6000fd5b6008546001600160a01b031633146116145760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108bf573d6000803e3d6000fd5b60008160011115801561165d575060005482105b80156106ba575050600090815260046020526040902054600160e01b161590565b600061168982610c03565b9050336001600160a01b038216146116c2576116a581336105ab565b6116c2576040516367d9dca160e11b815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108bf828260405180602001604052806000815250611dce565b6000611750826118f8565b9050836001600160a01b0316816001600160a01b0316146117835760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176117d0576117b386336105ab565b6117d057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166117f757604051633a954ecd60e21b815260040160405180910390fd5b801561180257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611894576001840160008181526004602052604081205490036118925760005481146118925760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61085f8383836040518060200160405280600081525061104d565b60008180600111611955576000548110156119555760008181526004602052604081205490600160e01b82169003611953575b8060000361194c57506000190160008181526004602052604090205461192b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036119f65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a6d8484846109b3565b6001600160a01b0383163b15610a8657611a8984848484611e34565b610a86576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611acd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af75780611ae181612540565b9150611af09050600a8361256f565b9150611ad1565b60008167ffffffffffffffff811115611b1257611b126121ae565b6040519080825280601f01601f191660200182016040528015611b3c576020820181803683370190505b5090505b8415611bbf57611b51600183612583565b9150611b5e600a8661259a565b611b699060306124ca565b60f81b818381518110611b7e57611b7e6125ae565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bb8600a8661256f565b9450611b40565b949350505050565b60008151604114611c1a5760405162461bcd60e51b815260206004820152601e60248201527f45434453413a20696e76616c6964207369676e61747572652073697a652e0000604482015260640161084c565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611c9c5760405162461bcd60e51b815260206004820152601d60248201527f45434453413a20696e76616c6964207369676e202773272076616c7565000000604482015260640161084c565b8060ff16601b14158015611cb457508060ff16601c14155b15611d015760405162461bcd60e51b815260206004820152601d60248201527f45434453413a20696e76616c6964207369676e202776272076616c7565000000604482015260640161084c565b6040805160008082526020820180845289905260ff841692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611d55573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611dc45760405162461bcd60e51b815260206004820152602360248201527f45434453413a20696e76616c6964207369676e6174757265206f72207369676e60448201526232b91760e91b606482015260840161084c565b9695505050505050565b611dd88383611f1f565b6001600160a01b0383163b1561085f576000548281035b611e026000868380600101945086611e34565b611e1f576040516368d2bf6b60e11b815260040160405180910390fd5b818110611def57816000541461112257600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e699033908990889088906004016125c4565b6020604051808303816000875af1925050508015611ea4575060408051601f3d908101601f19168201909252611ea1918101906125f6565b60015b611f02573d808015611ed2576040519150601f19603f3d011682016040523d82523d6000602084013e611ed7565b606091505b508051600003611efa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000805490829003611f445760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611ff357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611fbb565b508160000361201457604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546120299061245d565b90600052602060002090601f01602090048101928261204b5760008555612091565b82601f1061206457805160ff1916838001178555612091565b82800160010185558215612091579182015b82811115612091578251825591602001919060010190612076565b5061209d9291506120a1565b5090565b5b8082111561209d57600081556001016120a2565b6001600160e01b0319811681146109b057600080fd5b6000602082840312156120de57600080fd5b813561194c816120b6565b60005b838110156121045781810151838201526020016120ec565b83811115610a865750506000910152565b6000815180845261212d8160208601602086016120e9565b601f01601f19169290920160200192915050565b60208152600061194c6020830184612115565b60006020828403121561216657600080fd5b5035919050565b6001600160a01b03811681146109b057600080fd5b6000806040838503121561219557600080fd5b82356121a08161216d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121df576121df6121ae565b604051601f8501601f19908116603f01168101908282118183101715612207576122076121ae565b8160405280935085815286868601111561222057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561224c57600080fd5b813567ffffffffffffffff81111561226357600080fd5b8201601f8101841361227457600080fd5b611bbf848235602084016121c4565b60006020828403121561229557600080fd5b813561194c8161216d565b6000806000606084860312156122b557600080fd5b83356122c08161216d565b925060208401356122d08161216d565b929592945050506040919091013590565b600080604083850312156122f457600080fd5b50508035926020909101359150565b80151581146109b057600080fd5b6000806040838503121561232457600080fd5b823561232f8161216d565b9150602083013561233f81612303565b809150509250929050565b600082601f83011261235b57600080fd5b61194c838335602085016121c4565b6000806000806080858703121561238057600080fd5b843561238b8161216d565b9350602085013561239b8161216d565b925060408501359150606085013567ffffffffffffffff8111156123be57600080fd5b6123ca8782880161234a565b91505092959194509250565b6000806000606084860312156123eb57600080fd5b83356123f68161216d565b925060208401359150604084013567ffffffffffffffff81111561241957600080fd5b6124258682870161234a565b9150509250925092565b6000806040838503121561244257600080fd5b823561244d8161216d565b9150602083013561233f8161216d565b600181811c9082168061247157607f821691505b60208210810361249157634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156124a957600080fd5b815161194c81612303565b634e487b7160e01b600052601160045260246000fd5b600082198211156124dd576124dd6124b4565b500190565b60008160001904831182151516156124fc576124fc6124b4565b500290565b600083516125138184602088016120e9565b8351908301906125278183602088016120e9565b64173539b7b760d91b9101908152600501949350505050565b600060018201612552576125526124b4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261257e5761257e612559565b500490565b600082821015612595576125956124b4565b500390565b6000826125a9576125a9612559565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152611dc46080830184612115565b60006020828403121561260857600080fd5b815161194c816120b656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220106db1693dc648938eee3287d242636bf07502da8d6285215c2284ae734ea65764736f6c634300080d003368747470733a2f2f6f776c2e66616e746f6d697a65642e6172742f6f776c2e6a736f6e

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063d547cfb7116100a0578063efa00ce71161006f578063efa00ce7146105d9578063f2fde38b146105f9578063f34a39d414610619578063f3fef3a31461062e578063fa09e6301461064e57600080fd5b8063d547cfb714610546578063dbe59bc41461055b578063e8a3d4851461057b578063e985e9c51461059057600080fd5b8063a22cb465116100e7578063a22cb465146104be578063aad3ec96146104de578063b88d4fde146104f1578063c87b56dd14610511578063cb2c78c61461053157600080fd5b80638da5cb5b1461045657806395d89b4114610474578063a0927c4614610489578063a16c6a731461049e57600080fd5b806332cb6b0c1161019b5780636352211e1161016a5780636352211e146103cc57806370a08231146103ec57806371127ed21461040c578063715018a614610421578063755edd171461043657600080fd5b806332cb6b0c1461035457806341f434341461036a57806342842e0e1461038c578063449a52f8146103ac57600080fd5b80630f77282a116101e25780630f77282a146102c557806318160ddd146102e55780631e83409a1461030c57806323b872dd1461031f578063274503fc1461033f57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046120cc565b61066e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c0565b6040516102409190612141565b34801561027757600080fd5b5061028b610286366004612154565b610752565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612182565b610796565b005b3480156102d157600080fd5b506102c36102e036600461223a565b610864565b3480156102f157600080fd5b5060015460005403600019015b604051908152602001610240565b6102c361031a366004612283565b6108c3565b34801561032b57600080fd5b506102c361033a3660046122a0565b6109b3565b34801561034b57600080fd5b506102fe600381565b34801561036057600080fd5b506102fe610b5381565b34801561037657600080fd5b5061028b6daaeb6d7670e522a718067333cd4e81565b34801561039857600080fd5b506102c36103a73660046122a0565b610a8c565b3480156103b857600080fd5b506102c36103c7366004612182565b610b5a565b3480156103d857600080fd5b5061028b6103e7366004612154565b610c03565b3480156103f857600080fd5b506102fe610407366004612283565b610c0e565b34801561041857600080fd5b50600b546102fe565b34801561042d57600080fd5b506102c3610c5d565b34801561044257600080fd5b506102c3610451366004612283565b610cb1565b34801561046257600080fd5b506008546001600160a01b031661028b565b34801561048057600080fd5b5061025e610d44565b34801561049557600080fd5b5061025e610d53565b3480156104aa57600080fd5b506102c36104b93660046122e1565b610de1565b3480156104ca57600080fd5b506102c36104d9366004612311565b610e31565b6102c36104ec366004612182565b610ef5565b3480156104fd57600080fd5b506102c361050c36600461236a565b61104d565b34801561051d57600080fd5b5061025e61052c366004612154565b611129565b34801561053d57600080fd5b50600c546102fe565b34801561055257600080fd5b5061025e611163565b34801561056757600080fd5b506102c36105763660046123d6565b611172565b34801561058757600080fd5b5061025e611421565b34801561059c57600080fd5b506102346105ab36600461242f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e557600080fd5b506102c36105f436600461223a565b611430565b34801561060557600080fd5b506102c3610614366004612283565b61148b565b34801561062557600080fd5b5061025e611541565b34801561063a57600080fd5b506102c3610649366004612182565b61154e565b34801561065a57600080fd5b506102c3610669366004612283565b6115cc565b60006301ffc9a760e01b6001600160e01b03198316148061069f57506380ac58cd60e01b6001600160e01b03198316145b806106ba5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106cf9061245d565b80601f01602080910402602001604051908101604052809291908181526020018280546106fb9061245d565b80156107485780601f1061071d57610100808354040283529160200191610748565b820191906000526020600020905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b600061075d82611649565b61077a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1561085557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610804573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108289190612497565b61085557604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b61085f838361167e565b505050565b6008546001600160a01b031633146108ac5760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b80516108bf90600990602084019061201d565b5050565b600154600054610b5391900360001901106109125760405162461bcd60e51b815260206004820152600f60248201526e26b4b73a34b7339034b99037bb32b960891b604482015260640161084c565b600c546001546000540360001901106109615760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161084c565b600b543410156109a55760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420707269636560881b604482015260640161084c565b6109b081600161172b565b50565b826daaeb6d7670e522a718067333cd4e3b15610a7b57336001600160a01b038216036109e9576109e4848484611745565b610a86565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5c9190612497565b610a7b57604051633b79c77360e21b815233600482015260240161084c565b610a86848484611745565b50505050565b826daaeb6d7670e522a718067333cd4e3b15610b4f57336001600160a01b03821603610abd576109e48484846118dd565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b309190612497565b610b4f57604051633b79c77360e21b815233600482015260240161084c565b610a868484846118dd565b6008546001600160a01b03163314610ba25760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b600154600054610b539183910360001901610bbd91906124ca565b1115610bf95760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161084c565b6108bf828261172b565b60006106ba826118f8565b60006001600160a01b038216610c37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ca55760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b610caf600061196e565b565b6008546001600160a01b03163314610cf95760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b600154600054610b5391900360001901106109a55760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161084c565b6060600380546106cf9061245d565b600a8054610d609061245d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8c9061245d565b8015610dd95780601f10610dae57610100808354040283529160200191610dd9565b820191906000526020600020905b815481529060010190602001808311610dbc57829003601f168201915b505050505081565b6008546001600160a01b03163314610e295760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b600b55600c55565b816daaeb6d7670e522a718067333cd4e3b15610eeb57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190612497565b610eeb57604051633b79c77360e21b81526001600160a01b038216600482015260240161084c565b61085f83836119cd565b6005811115610f465760405162461bcd60e51b815260206004820152601160248201527f4d61782035206d696e7420706572207478000000000000000000000000000000604482015260640161084c565b600154600054610b539183910360001901610f6191906124ca565b1115610fa15760405162461bcd60e51b815260206004820152600f60248201526e26b4b73a34b7339034b99037bb32b960891b604482015260640161084c565b600c546001546000548391900360001901610fbc91906124ca565b1115610ffe5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161084c565b80600b5461100c91906124e2565b341015610bf95760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420707269636560881b604482015260640161084c565b836daaeb6d7670e522a718067333cd4e3b1561111657336001600160a01b038216036110845761107f85858585611a62565b611122565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f79190612497565b61111657604051633b79c77360e21b815233600482015260240161084c565b61112285858585611a62565b5050505050565b6060611133611163565b61113c83611aa6565b60405160200161114d929190612501565b6040516020818303038152906040529050919050565b6060600980546106cf9061245d565b600154600054610b53918491036000190161118d91906124ca565b11156111c95760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161084c565b6001600160a01b0383166000908152600d60205260409020546003906111f09084906124ca565b111561124a5760405162461bcd60e51b8152602060048201526024808201527f45786861757374656420667265656d696e747320666f722074686174206164646044820152637265737360e01b606482015260840161084c565b600c54600154600054849190036000190161126591906124ca565b11156112a75760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161084c565b60008360405160200161130491907f556e64657220546865205369676e204f6620546865204f776c2046726565204d8152621a5b9d60ea1b602082015260609190911b6bffffffffffffffffffffffff1916602382015260370190565b6040516020818303038152906040529050600061137f8361137984805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611bc7565b90506001600160a01b038116730d654edb68684e7f66093d6366c309315aac882f146113da5760405162461bcd60e51b815260206004820152600a6024820152690aee4dedcce4082eae8d60b31b604482015260640161084c565b6001600160a01b0385166000908152600d60205260409020546113fe9085906124ca565b6001600160a01b0386166000908152600d6020526040902055611122858561172b565b6060600a80546106cf9061245d565b6008546001600160a01b031633146114785760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b80516108bf90600a90602084019061201d565b6008546001600160a01b031633146114d35760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b6001600160a01b0381166115385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084c565b6109b08161196e565b60098054610d609061245d565b6008546001600160a01b031633146115965760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b6040516001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561085f573d6000803e3d6000fd5b6008546001600160a01b031633146116145760405162461bcd60e51b81526020600482018190526024820152600080516020612614833981519152604482015260640161084c565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108bf573d6000803e3d6000fd5b60008160011115801561165d575060005482105b80156106ba575050600090815260046020526040902054600160e01b161590565b600061168982610c03565b9050336001600160a01b038216146116c2576116a581336105ab565b6116c2576040516367d9dca160e11b815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108bf828260405180602001604052806000815250611dce565b6000611750826118f8565b9050836001600160a01b0316816001600160a01b0316146117835760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176117d0576117b386336105ab565b6117d057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166117f757604051633a954ecd60e21b815260040160405180910390fd5b801561180257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611894576001840160008181526004602052604081205490036118925760005481146118925760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61085f8383836040518060200160405280600081525061104d565b60008180600111611955576000548110156119555760008181526004602052604081205490600160e01b82169003611953575b8060000361194c57506000190160008181526004602052604090205461192b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036119f65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a6d8484846109b3565b6001600160a01b0383163b15610a8657611a8984848484611e34565b610a86576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611acd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af75780611ae181612540565b9150611af09050600a8361256f565b9150611ad1565b60008167ffffffffffffffff811115611b1257611b126121ae565b6040519080825280601f01601f191660200182016040528015611b3c576020820181803683370190505b5090505b8415611bbf57611b51600183612583565b9150611b5e600a8661259a565b611b699060306124ca565b60f81b818381518110611b7e57611b7e6125ae565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bb8600a8661256f565b9450611b40565b949350505050565b60008151604114611c1a5760405162461bcd60e51b815260206004820152601e60248201527f45434453413a20696e76616c6964207369676e61747572652073697a652e0000604482015260640161084c565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611c9c5760405162461bcd60e51b815260206004820152601d60248201527f45434453413a20696e76616c6964207369676e202773272076616c7565000000604482015260640161084c565b8060ff16601b14158015611cb457508060ff16601c14155b15611d015760405162461bcd60e51b815260206004820152601d60248201527f45434453413a20696e76616c6964207369676e202776272076616c7565000000604482015260640161084c565b6040805160008082526020820180845289905260ff841692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611d55573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611dc45760405162461bcd60e51b815260206004820152602360248201527f45434453413a20696e76616c6964207369676e6174757265206f72207369676e60448201526232b91760e91b606482015260840161084c565b9695505050505050565b611dd88383611f1f565b6001600160a01b0383163b1561085f576000548281035b611e026000868380600101945086611e34565b611e1f576040516368d2bf6b60e11b815260040160405180910390fd5b818110611def57816000541461112257600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e699033908990889088906004016125c4565b6020604051808303816000875af1925050508015611ea4575060408051601f3d908101601f19168201909252611ea1918101906125f6565b60015b611f02573d808015611ed2576040519150601f19603f3d011682016040523d82523d6000602084013e611ed7565b606091505b508051600003611efa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000805490829003611f445760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611ff357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611fbb565b508160000361201457604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546120299061245d565b90600052602060002090601f01602090048101928261204b5760008555612091565b82601f1061206457805160ff1916838001178555612091565b82800160010185558215612091579182015b82811115612091578251825591602001919060010190612076565b5061209d9291506120a1565b5090565b5b8082111561209d57600081556001016120a2565b6001600160e01b0319811681146109b057600080fd5b6000602082840312156120de57600080fd5b813561194c816120b6565b60005b838110156121045781810151838201526020016120ec565b83811115610a865750506000910152565b6000815180845261212d8160208601602086016120e9565b601f01601f19169290920160200192915050565b60208152600061194c6020830184612115565b60006020828403121561216657600080fd5b5035919050565b6001600160a01b03811681146109b057600080fd5b6000806040838503121561219557600080fd5b82356121a08161216d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121df576121df6121ae565b604051601f8501601f19908116603f01168101908282118183101715612207576122076121ae565b8160405280935085815286868601111561222057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561224c57600080fd5b813567ffffffffffffffff81111561226357600080fd5b8201601f8101841361227457600080fd5b611bbf848235602084016121c4565b60006020828403121561229557600080fd5b813561194c8161216d565b6000806000606084860312156122b557600080fd5b83356122c08161216d565b925060208401356122d08161216d565b929592945050506040919091013590565b600080604083850312156122f457600080fd5b50508035926020909101359150565b80151581146109b057600080fd5b6000806040838503121561232457600080fd5b823561232f8161216d565b9150602083013561233f81612303565b809150509250929050565b600082601f83011261235b57600080fd5b61194c838335602085016121c4565b6000806000806080858703121561238057600080fd5b843561238b8161216d565b9350602085013561239b8161216d565b925060408501359150606085013567ffffffffffffffff8111156123be57600080fd5b6123ca8782880161234a565b91505092959194509250565b6000806000606084860312156123eb57600080fd5b83356123f68161216d565b925060208401359150604084013567ffffffffffffffff81111561241957600080fd5b6124258682870161234a565b9150509250925092565b6000806040838503121561244257600080fd5b823561244d8161216d565b9150602083013561233f8161216d565b600181811c9082168061247157607f821691505b60208210810361249157634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156124a957600080fd5b815161194c81612303565b634e487b7160e01b600052601160045260246000fd5b600082198211156124dd576124dd6124b4565b500190565b60008160001904831182151516156124fc576124fc6124b4565b500290565b600083516125138184602088016120e9565b8351908301906125278183602088016120e9565b64173539b7b760d91b9101908152600501949350505050565b600060018201612552576125526124b4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261257e5761257e612559565b500490565b600082821015612595576125956124b4565b500390565b6000826125a9576125a9612559565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152611dc46080830184612115565b60006020828403121561260857600080fd5b815161194c816120b656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220106db1693dc648938eee3287d242636bf07502da8d6285215c2284ae734ea65764736f6c634300080d0033

Deployed Bytecode Sourcemap

65742:4519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24064:639;;;;;;;;;;-1:-1:-1;24064:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24064:639:0;;;;;;;;24966:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31449:218::-;;;;;;;;;;-1:-1:-1;31449:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:1;;;1674:74;;1662:2;1647:18;31449:218:0;1528:226:1;69513:157:0;;;;;;;;;;-1:-1:-1;69513:157:0;;;;;:::i;:::-;;:::i;:::-;;68817:97;;;;;;;;;;-1:-1:-1;68817:97:0;;;;;:::i;:::-;;:::i;20717:323::-;;;;;;;;;;-1:-1:-1;66435:1:0;20991:12;20778:7;20975:13;:28;-1:-1:-1;;20975:46:0;20717:323;;;3609:25:1;;;3597:2;3582:18;20717:323:0;3463:177:1;68034:274:0;;;;;;:::i;:::-;;:::i;69678:163::-;;;;;;;;;;-1:-1:-1;69678:163:0;;;;;:::i;:::-;;:::i;66052:45::-;;;;;;;;;;;;66096:1;66052:45;;66007:38;;;;;;;;;;;;66041:4;66007:38;;2912:143;;;;;;;;;;;;3012:42;2912:143;;69849:171;;;;;;;;;;-1:-1:-1;69849:171:0;;;;;:::i;:::-;;:::i;66929:180::-;;;;;;;;;;-1:-1:-1;66929:180:0;;;;;:::i;:::-;;:::i;26359:152::-;;;;;;;;;;-1:-1:-1;26359:152:0;;;;;:::i;:::-;;:::i;21901:233::-;;;;;;;;;;-1:-1:-1;21901:233:0;;;;;:::i;:::-;;:::i;66588:91::-;;;;;;;;;;-1:-1:-1;66659:12:0;;66588:91;;59067:94;;;;;;;;;;;;;:::i;66780:141::-;;;;;;;;;;-1:-1:-1;66780:141:0;;;;;:::i;:::-;;:::i;58416:87::-;;;;;;;;;;-1:-1:-1;58489:6:0;;-1:-1:-1;;;;;58489:6:0;58416:87;;25142:104;;;;;;;;;;;;;:::i;65873:66::-;;;;;;;;;;;;;:::i;66452:128::-;;;;;;;;;;-1:-1:-1;66452:128:0;;;;;:::i;:::-;;:::i;69329:176::-;;;;;;;;;;-1:-1:-1;69329:176:0;;;;;:::i;:::-;;:::i;68316:391::-;;;;;;:::i;:::-;;:::i;70028:228::-;;;;;;;;;;-1:-1:-1;70028:228:0;;;;;:::i;:::-;;:::i;68922:181::-;;;;;;;;;;-1:-1:-1;68922:181:0;;;;;:::i;:::-;;:::i;66687:85::-;;;;;;;;;;-1:-1:-1;66755:9:0;;66687:85;;68715:94;;;;;;;;;;;;;:::i;67117:667::-;;;;;;;;;;-1:-1:-1;67117:667:0;;;;;:::i;:::-;;:::i;69111:97::-;;;;;;;;;;;;;:::i;32472:164::-;;;;;;;;;;-1:-1:-1;32472:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32593:25:0;;;32569:4;32593:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32472:164;69216:103;;;;;;;;;;-1:-1:-1;69216:103:0;;;;;:::i;:::-;;:::i;59316:192::-;;;;;;;;;;-1:-1:-1;59316:192:0;;;;;:::i;:::-;;:::i;65808:58::-;;;;;;;;;;;;;:::i;67794:110::-;;;;;;;;;;-1:-1:-1;67794:110:0;;;;;:::i;:::-;;:::i;67913:113::-;;;;;;;;;;-1:-1:-1;67913:113:0;;;;;:::i;:::-;;:::i;24064:639::-;24149:4;-1:-1:-1;;;;;;;;;24473:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24550:25:0;;;24473:102;:179;;;-1:-1:-1;;;;;;;;;;24627:25:0;;;24473:179;24453:199;24064:639;-1:-1:-1;;24064:639:0:o;24966:100::-;25020:13;25053:5;25046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24966:100;:::o;31449:218::-;31525:7;31550:16;31558:7;31550;:16::i;:::-;31545:64;;31575:34;;-1:-1:-1;;;31575:34:0;;;;;;;;;;;31545:64;-1:-1:-1;31629:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;31629:30:0;;31449:218::o;69513:157::-;69609:8;3012:42;4906:45;:49;4902:225;;4977:67;;-1:-1:-1;;;4977:67:0;;5028:4;4977:67;;;8408:34:1;-1:-1:-1;;;;;8478:15:1;;8458:18;;;8451:43;3012:42:0;;4977;;8320:18:1;;4977:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4972:144;;5072:28;;-1:-1:-1;;;5072:28:0;;-1:-1:-1;;;;;1692:55:1;;5072:28:0;;;1674:74:1;1647:18;;5072:28:0;;;;;;;;4972:144;69630:32:::1;69644:8;69654:7;69630:13;:32::i;:::-;69513:157:::0;;;:::o;68817:97::-;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;68888:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68817:97:::0;:::o;68034:274::-;66435:1;20991:12;20778:7;20975:13;66041:4;;20975:28;;-1:-1:-1;;20975:46:0;68096:26;68088:54;;;;-1:-1:-1;;;68088:54:0;;9318:2:1;68088:54:0;;;9300:21:1;9357:2;9337:18;;;9330:30;-1:-1:-1;;;9376:18:1;;;9369:45;9431:18;;68088:54:0;9116:339:1;68088:54:0;68177:9;;66435:1;20991:12;20778:7;20975:13;:28;-1:-1:-1;;20975:46:0;68161:25;68153:55;;;;-1:-1:-1;;;68153:55:0;;9662:2:1;68153:55:0;;;9644:21:1;9701:2;9681:18;;;9674:30;-1:-1:-1;;;9720:18:1;;;9713:47;9777:18;;68153:55:0;9460:341:1;68153:55:0;68240:12;;68227:9;:25;;68219:53;;;;-1:-1:-1;;;68219:53:0;;10008:2:1;68219:53:0;;;9990:21:1;10047:2;10027:18;;;10020:30;-1:-1:-1;;;10066:18:1;;;10059:45;10121:18;;68219:53:0;9806:339:1;68219:53:0;68283:17;68293:3;68298:1;68283:9;:17::i;:::-;68034:274;:::o;69678:163::-;69779:4;3012:42;4160:45;:49;4156:539;;4449:10;-1:-1:-1;;;;;4441:18:0;;;4437:85;;69796:37:::1;69815:4;69821:2;69825:7;69796:18;:37::i;:::-;4500:7:::0;;4437:85;4541:69;;-1:-1:-1;;;4541:69:0;;4592:4;4541:69;;;8408:34:1;4599:10:0;8458:18:1;;;8451:43;3012:42:0;;4541;;8320:18:1;;4541:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4536:148;;4638:30;;-1:-1:-1;;;4638:30:0;;4657:10;4638:30;;;1674:74:1;1647:18;;4638:30:0;1528:226:1;4536:148:0;69796:37:::1;69815:4;69821:2;69825:7;69796:18;:37::i;:::-;69678:163:::0;;;;:::o;69849:171::-;69954:4;3012:42;4160:45;:49;4156:539;;4449:10;-1:-1:-1;;;;;4441:18:0;;;4437:85;;69971:41:::1;69994:4;70000:2;70004:7;69971:22;:41::i;4437:85::-:0;4541:69;;-1:-1:-1;;;4541:69:0;;4592:4;4541:69;;;8408:34:1;4599:10:0;8458:18:1;;;8451:43;3012:42:0;;4541;;8320:18:1;;4541:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4536:148;;4638:30;;-1:-1:-1;;;4638:30:0;;4657:10;4638:30;;;1674:74:1;1647:18;;4638:30:0;1528:226:1;4536:148:0;69971:41:::1;69994:4;70000:2;70004:7;69971:22;:41::i;66929:180::-:0;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;66435:1;20991:12;20778:7;20975:13;66041:4:::1;::::0;67026:9;;20975:28;-1:-1:-1;;20975:46:0;67010:25:::1;;;;:::i;:::-;:39;;67002:63;;;::::0;-1:-1:-1;;;67002:63:0;;10617:2:1;67002:63:0::1;::::0;::::1;10599:21:1::0;10656:2;10636:18;;;10629:30;-1:-1:-1;;;10675:18:1;;;10668:41;10726:18;;67002:63:0::1;10415:335:1::0;67002:63:0::1;67076:25;67086:3;67091:9;67076;:25::i;26359:152::-:0;26431:7;26474:27;26493:7;26474:18;:27::i;21901:233::-;21973:7;-1:-1:-1;;;;;21997:19:0;;21993:60;;22025:28;;-1:-1:-1;;;22025:28:0;;;;;;;;;;;21993:60;-1:-1:-1;;;;;;22071:25:0;;;;;:18;:25;;;;;;16060:13;22071:55;;21901:233::o;59067:94::-;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;59132:21:::1;59150:1;59132:9;:21::i;:::-;59067:94::o:0;66780:141::-;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;66435:1;20991:12;20778:7;20975:13;66041:4:::1;::::0;20975:28;;-1:-1:-1;;20975:46:0;66844:26:::1;66836:50;;;::::0;-1:-1:-1;;;66836:50:0;;10617:2:1;66836:50:0::1;::::0;::::1;10599:21:1::0;10656:2;10636:18;;;10629:30;-1:-1:-1;;;10675:18:1;;;10668:41;10726:18;;66836:50:0::1;10415:335:1::0;25142:104:0;25198:13;25231:7;25224:14;;;;;:::i;65873:66::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66452:128::-;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;66523:12:::1;:22:::0;66556:9:::1;:16:::0;66452:128::o;69329:176::-;69433:8;3012:42;4906:45;:49;4902:225;;4977:67;;-1:-1:-1;;;4977:67:0;;5028:4;4977:67;;;8408:34:1;-1:-1:-1;;;;;8478:15:1;;8458:18;;;8451:43;3012:42:0;;4977;;8320:18:1;;4977:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4972:144;;5072:28;;-1:-1:-1;;;5072:28:0;;-1:-1:-1;;;;;1692:55:1;;5072:28:0;;;1674:74:1;1647:18;;5072:28:0;1528:226:1;4972:144:0;69454:43:::1;69478:8;69488;69454:23;:43::i;68316:391::-:0;68407:1;68394:9;:14;;68386:44;;;;-1:-1:-1;;;68386:44:0;;10957:2:1;68386:44:0;;;10939:21:1;10996:2;10976:18;;;10969:30;11035:19;11015:18;;;11008:47;11072:18;;68386:44:0;10755:341:1;68386:44:0;66435:1;20991:12;20778:7;20975:13;66041:4;;68465:9;;20975:28;-1:-1:-1;;20975:46:0;68449:25;;;;:::i;:::-;:39;;68441:67;;;;-1:-1:-1;;;68441:67:0;;9318:2:1;68441:67:0;;;9300:21:1;9357:2;9337:18;;;9330:30;-1:-1:-1;;;9376:18:1;;;9369:45;9431:18;;68441:67:0;9116:339:1;68441:67:0;68556:9;;66435:1;20991:12;20778:7;20975:13;68543:9;;20975:28;;-1:-1:-1;;20975:46:0;68527:25;;;;:::i;:::-;:38;;68519:68;;;;-1:-1:-1;;;68519:68:0;;9662:2:1;68519:68:0;;;9644:21:1;9701:2;9681:18;;;9674:30;-1:-1:-1;;;9720:18:1;;;9713:47;9777:18;;68519:68:0;9460:341:1;68519:68:0;68634:9;68619:12;;:24;;;;:::i;:::-;68606:9;:37;;68598:65;;;;-1:-1:-1;;;68598:65:0;;10008:2:1;68598:65:0;;;9990:21:1;10047:2;10027:18;;;10020:30;-1:-1:-1;;;10066:18:1;;;10059:45;10121:18;;68598:65:0;9806:339:1;70028:228:0;70179:4;3012:42;4160:45;:49;4156:539;;4449:10;-1:-1:-1;;;;;4441:18:0;;;4437:85;;70201:47:::1;70224:4;70230:2;70234:7;70243:4;70201:22;:47::i;:::-;4500:7:::0;;4437:85;4541:69;;-1:-1:-1;;;4541:69:0;;4592:4;4541:69;;;8408:34:1;4599:10:0;8458:18:1;;;8451:43;3012:42:0;;4541;;8320:18:1;;4541:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4536:148;;4638:30;;-1:-1:-1;;;4638:30:0;;4657:10;4638:30;;;1674:74:1;1647:18;;4638:30:0;1528:226:1;4536:148:0;70201:47:::1;70224:4;70230:2;70234:7;70243:4;70201:22;:47::i;:::-;70028:228:::0;;;;;:::o;68922:181::-;68985:13;69042:14;:12;:14::i;:::-;69058:26;69075:8;69058:16;:26::i;:::-;69025:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69011:84;;68922:181;;;:::o;68715:94::-;68760:13;68793:8;68786:15;;;;;:::i;67117:667::-;66435:1;20991:12;20778:7;20975:13;66041:4;;67234:9;;20975:28;-1:-1:-1;;20975:46:0;67218:25;;;;:::i;:::-;:39;;67210:63;;;;-1:-1:-1;;;67210:63:0;;10617:2:1;67210:63:0;;;10599:21:1;10656:2;10636:18;;;10629:30;-1:-1:-1;;;10675:18:1;;;10668:41;10726:18;;67210:63:0;10415:335:1;67210:63:0;-1:-1:-1;;;;;67291:14:0;;;;;;:9;:14;;;;;;66096:1;;67291:26;;67308:9;;67291:26;:::i;:::-;:50;;67283:99;;;;-1:-1:-1;;;67283:99:0;;12118:2:1;67283:99:0;;;12100:21:1;12157:2;12137:18;;;12130:30;12196:34;12176:18;;;12169:62;-1:-1:-1;;;12247:18:1;;;12240:34;12291:19;;67283:99:0;11916:400:1;67283:99:0;67429:9;;66435:1;20991:12;20778:7;20975:13;67416:9;;20975:28;;-1:-1:-1;;20975:46:0;67400:25;;;;:::i;:::-;:38;;67392:68;;;;-1:-1:-1;;;67392:68:0;;9662:2:1;67392:68:0;;;9644:21:1;9701:2;9681:18;;;9674:30;-1:-1:-1;;;9720:18:1;;;9713:47;9777:18;;67392:68:0;9460:341:1;67392:68:0;67470:17;67546:3;67490:60;;;;;;;12563:34:1;12551:47;;-1:-1:-1;;;12623:2:1;12614:12;;12607:27;12672:2;12668:15;;;;-1:-1:-1;;12664:53:1;12659:2;12650:12;;12643:75;12743:2;12734:12;;12321:431;67490:60:0;;;;;;;;;;;;;67470:80;;67560:11;67574:62;67623:12;67574:40;67584:4;67574:15;;;;;;65654:58;;14521:66:1;65654:58:0;;;14509:79:1;14604:12;;;14597:28;;;65493:7:0;;14641:12:1;;65654:58:0;;;;;;;;;;;;65630:93;;;;;;65614:109;;65409:322;;;;67574:40;:48;;:62::i;:::-;67560:76;-1:-1:-1;;;;;;67654:19:0;;66144:42;67654:19;67646:42;;;;-1:-1:-1;;;67646:42:0;;12959:2:1;67646:42:0;;;12941:21:1;12998:2;12978:18;;;12971:30;-1:-1:-1;;;13017:18:1;;;13010:40;13067:18;;67646:42:0;12757:334:1;67646:42:0;-1:-1:-1;;;;;67715:14:0;;;;;;:9;:14;;;;;;:26;;67732:9;;67715:26;:::i;:::-;-1:-1:-1;;;;;67698:14:0;;;;;;:9;:14;;;;;:43;67751:25;67708:3;67766:9;67751;:25::i;69111:97::-;69155:13;69188:12;69181:19;;;;;:::i;69216:103::-;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;69290:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;59316:192::-:0;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;-1:-1:-1;;;;;59405:22:0;::::1;59397:73;;;::::0;-1:-1:-1;;;59397:73:0;;13298:2:1;59397:73:0::1;::::0;::::1;13280:21:1::0;13337:2;13317:18;;;13310:30;13376:34;13356:18;;;13349:62;-1:-1:-1;;;13427:18:1;;;13420:36;13473:19;;59397:73:0::1;13096:402:1::0;59397:73:0::1;59481:19;59491:8;59481:9;:19::i;65808:58::-:0;;;;;;;:::i;67794:110::-;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;67875:21:::1;::::0;-1:-1:-1;;;;;67875:12:0;::::1;::::0;:21;::::1;;;::::0;67888:7;;67875:21:::1;::::0;;;67888:7;67875:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;67913:113:::0;58489:6;;-1:-1:-1;;;;;58489:6:0;57221:10;58636:23;58628:68;;;;-1:-1:-1;;;58628:68:0;;8957:2:1;58628:68:0;;;8939:21:1;;;8976:18;;;8969:30;-1:-1:-1;;;;;;;;;;;9015:18:1;;;9008:62;9087:18;;58628:68:0;8755:356:1;58628:68:0;67983:35:::1;::::0;-1:-1:-1;;;;;67983:12:0;::::1;::::0;67996:21:::1;67983:35:::0;::::1;;;::::0;::::1;::::0;;;67996:21;67983:12;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;32894:282:::0;32959:4;33015:7;66435:1;32996:26;;:66;;;;;33049:13;;33039:7;:23;32996:66;:153;;;;-1:-1:-1;;33100:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33100:44:0;:49;;32894:282::o;30890:400::-;30971:13;30987:16;30995:7;30987;:16::i;:::-;30971:32;-1:-1:-1;57221:10:0;-1:-1:-1;;;;;31020:28:0;;;31016:175;;31068:44;31085:5;57221:10;32472:164;:::i;31068:44::-;31063:128;;31140:35;;-1:-1:-1;;;31140:35:0;;;;;;;;;;;31063:128;31203:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;31203:35:0;-1:-1:-1;;;;;31203:35:0;;;;;;;;;31254:28;;31203:24;;31254:28;;;;;;;30960:330;30890:400;;:::o;48492:112::-;48569:27;48579:2;48583:8;48569:27;;;;;;;;;;;;:9;:27::i;35156:2817::-;35290:27;35320;35339:7;35320:18;:27::i;:::-;35290:57;;35405:4;-1:-1:-1;;;;;35364:45:0;35380:19;-1:-1:-1;;;;;35364:45:0;;35360:86;;35418:28;;-1:-1:-1;;;35418:28:0;;;;;;;;;;;35360:86;35460:27;34270:24;;;:15;:24;;;;;34492:26;;57221:10;33895:30;;;-1:-1:-1;;;;;33588:28:0;;33873:20;;;33870:56;35646:180;;35739:43;35756:4;57221:10;32472:164;:::i;35739:43::-;35734:92;;35791:35;;-1:-1:-1;;;35791:35:0;;;;;;;;;;;35734:92;-1:-1:-1;;;;;35843:16:0;;35839:52;;35868:23;;-1:-1:-1;;;35868:23:0;;;;;;;;;;;35839:52;36040:15;36037:160;;;36180:1;36159:19;36152:30;36037:160;-1:-1:-1;;;;;36577:24:0;;;;;;;:18;:24;;;;;;36575:26;;-1:-1:-1;;36575:26:0;;;36646:22;;;;;;;;;36644:24;;-1:-1:-1;36644:24:0;;;29748:11;29723:23;29719:41;29706:63;-1:-1:-1;;;29706:63:0;36939:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;37234:47:0;;:52;;37230:627;;37339:1;37329:11;;37307:19;37462:30;;;:17;:30;;;;;;:35;;37458:384;;37600:13;;37585:11;:28;37581:242;;37747:30;;;;:17;:30;;;;;:52;;;37581:242;37288:569;37230:627;37904:7;37900:2;-1:-1:-1;;;;;37885:27:0;37894:4;-1:-1:-1;;;;;37885:27:0;;;;;;;;;;;35279:2694;;;35156:2817;;;:::o;38069:185::-;38207:39;38224:4;38230:2;38234:7;38207:39;;;;;;;;;;;;:16;:39::i;27514:1275::-;27581:7;27616;;66435:1;27665:23;27661:1061;;27718:13;;27711:4;:20;27707:1015;;;27756:14;27773:23;;;:17;:23;;;;;;;-1:-1:-1;;;27862:24:0;;:29;;27858:845;;28527:113;28534:6;28544:1;28534:11;28527:113;;-1:-1:-1;;;28605:6:0;28587:25;;;;:17;:25;;;;;;28527:113;;;28673:6;27514:1275;-1:-1:-1;;;27514:1275:0:o;27858:845::-;27733:989;27707:1015;28750:31;;-1:-1:-1;;;28750:31:0;;;;;;;;;;;59516:173;59591:6;;;-1:-1:-1;;;;;59608:17:0;;;-1:-1:-1;;59608:17:0;;;;;;;59641:40;;59591:6;;;59608:17;59591:6;;59641:40;;59572:16;;59641:40;59561:128;59516:173;:::o;32007:308::-;57221:10;-1:-1:-1;;;;;32106:31:0;;;32102:61;;32146:17;;-1:-1:-1;;;32146:17:0;;;;;;;;;;;32102:61;57221:10;32176:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32176:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32176:60:0;;;;;;;;;;32252:55;;540:41:1;;;32176:49:0;;57221:10;32252:55;;513:18:1;32252:55:0;;;;;;;32007:308;;:::o;38852:399::-;39019:31;39032:4;39038:2;39042:7;39019:12;:31::i;:::-;-1:-1:-1;;;;;39065:14:0;;;:19;39061:183;;39104:56;39135:4;39141:2;39145:7;39154:5;39104:30;:56::i;:::-;39099:145;;39188:40;;-1:-1:-1;;;39188:40:0;;;;;;;;;;;60070:723;60126:13;60347:5;60356:1;60347:10;60343:53;;-1:-1:-1;;60374:10:0;;;;;;;;;;;;-1:-1:-1;;;60374:10:0;;;;;60070:723::o;60343:53::-;60421:5;60406:12;60462:78;60469:9;;60462:78;;60495:8;;;;:::i;:::-;;-1:-1:-1;60518:10:0;;-1:-1:-1;60526:2:0;60518:10;;:::i;:::-;;;60462:78;;;60550:19;60582:6;60572:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60572:17:0;;60550:39;;60600:154;60607:10;;60600:154;;60634:11;60644:1;60634:11;;:::i;:::-;;-1:-1:-1;60703:10:0;60711:2;60703:5;:10;:::i;:::-;60690:24;;:2;:24;:::i;:::-;60677:39;;60660:6;60667;60660:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;60731:11:0;60740:2;60731:11;;:::i;:::-;;;60600:154;;;60778:6;60070:723;-1:-1:-1;;;;60070:723:0:o;62968:2167::-;63061:7;63129:9;:16;63149:2;63129:22;63125:95;;63168:40;;-1:-1:-1;;;63168:40:0;;14866:2:1;63168:40:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:32;14924:18;;;14917:60;14994:18;;63168:40:0;14664:354:1;63125:95:0;63581:4;63566:20;;63560:27;63627:4;63612:20;;63606:27;63681:4;63666:20;;63660:27;63289:9;63652:36;64638:66;64612:92;;64594:188;;;64731:39;;-1:-1:-1;;;64731:39:0;;15225:2:1;64731:39:0;;;15207:21:1;15264:2;15244:18;;;15237:30;15303:31;15283:18;;;15276:59;15352:18;;64731:39:0;15023:353:1;64594:188:0;64798:1;:7;;64803:2;64798:7;;:18;;;;;64809:1;:7;;64814:2;64809:7;;64798:18;64794:90;;;64833:39;;-1:-1:-1;;;64833:39:0;;15583:2:1;64833:39:0;;;15565:21:1;15622:2;15602:18;;;15595:30;15661:31;15641:18;;;15634:59;15710:18;;64833:39:0;15381:353:1;64794:90:0;64998:24;;;64981:14;64998:24;;;;;;;;;15966:25:1;;;16039:4;16027:17;;16007:18;;;16000:45;;;;16061:18;;;16054:34;;;16104:18;;;16097:34;;;64998:24:0;;15938:19:1;;64998:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;64998:24:0;;-1:-1:-1;;64998:24:0;;;-1:-1:-1;;;;;;;65041:20:0;;65033:68;;;;-1:-1:-1;;;65033:68:0;;16344:2:1;65033:68:0;;;16326:21:1;16383:2;16363:18;;;16356:30;16422:34;16402:18;;;16395:62;-1:-1:-1;;;16473:18:1;;;16466:33;16516:19;;65033:68:0;16142:399:1;65033:68:0;65121:6;62968:2167;-1:-1:-1;;;;;;62968:2167:0:o;47719:689::-;47850:19;47856:2;47860:8;47850:5;:19::i;:::-;-1:-1:-1;;;;;47911:14:0;;;:19;47907:483;;47951:11;47965:13;48013:14;;;48046:233;48077:62;48116:1;48120:2;48124:7;;;;;;48133:5;48077:30;:62::i;:::-;48072:167;;48175:40;;-1:-1:-1;;;48175:40:0;;;;;;;;;;;48072:167;48274:3;48266:5;:11;48046:233;;48361:3;48344:13;;:20;48340:34;;48366:8;;;41335:716;41519:88;;-1:-1:-1;;;41519:88:0;;41498:4;;-1:-1:-1;;;;;41519:45:0;;;;;:88;;57221:10;;41586:4;;41592:7;;41601:5;;41519:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41519:88:0;;;;;;;;-1:-1:-1;;41519:88:0;;;;;;;;;;;;:::i;:::-;;;41515:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41802:6;:13;41819:1;41802:18;41798:235;;41848:40;;-1:-1:-1;;;41848:40:0;;;;;;;;;;;41798:235;41991:6;41985:13;41976:6;41972:2;41968:15;41961:38;41515:529;-1:-1:-1;;;;;;41678:64:0;-1:-1:-1;;;41678:64:0;;-1:-1:-1;41335:716:0;;;;;;:::o;42513:2454::-;42586:20;42609:13;;;42637;;;42633:44;;42659:18;;-1:-1:-1;;;42659:18:0;;;;;;;;;;;42633:44;-1:-1:-1;;;;;43165:22:0;;;;;;:18;:22;;;;16198:2;43165:22;;;:71;;43203:32;43191:45;;43165:71;;;43479:31;;;:17;:31;;;;;-1:-1:-1;30179:15:0;;30153:24;30149:46;29748:11;29723:23;29719:41;29716:52;29706:63;;43479:173;;43714:23;;;;43479:31;;43165:22;;44213:25;43165:22;;44066:335;44481:1;44467:12;44463:20;44421:346;44522:3;44513:7;44510:16;44421:346;;44740:7;44730:8;44727:1;44700:25;44697:1;44694;44689:59;44575:1;44562:15;44421:346;;;44425:77;44800:8;44812:1;44800:13;44796:45;;44822:19;;-1:-1:-1;;;44822:19:0;;;;;;;;;;;44796:45;44858:13;:19;-1:-1:-1;69513:157:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1759:154::-;-1:-1:-1;;;;;1838:5:1;1834:54;1827:5;1824:65;1814:93;;1903:1;1900;1893:12;1918:315;1986:6;1994;2047:2;2035:9;2026:7;2022:23;2018:32;2015:52;;;2063:1;2060;2053:12;2015:52;2102:9;2089:23;2121:31;2146:5;2121:31;:::i;:::-;2171:5;2223:2;2208:18;;;;2195:32;;-1:-1:-1;;;1918:315:1:o;2238:127::-;2299:10;2294:3;2290:20;2287:1;2280:31;2330:4;2327:1;2320:15;2354:4;2351:1;2344:15;2370:632;2435:5;2465:18;2506:2;2498:6;2495:14;2492:40;;;2512:18;;:::i;:::-;2587:2;2581:9;2555:2;2641:15;;-1:-1:-1;;2637:24:1;;;2663:2;2633:33;2629:42;2617:55;;;2687:18;;;2707:22;;;2684:46;2681:72;;;2733:18;;:::i;:::-;2773:10;2769:2;2762:22;2802:6;2793:15;;2832:6;2824;2817:22;2872:3;2863:6;2858:3;2854:16;2851:25;2848:45;;;2889:1;2886;2879:12;2848:45;2939:6;2934:3;2927:4;2919:6;2915:17;2902:44;2994:1;2987:4;2978:6;2970;2966:19;2962:30;2955:41;;;;2370:632;;;;;:::o;3007:451::-;3076:6;3129:2;3117:9;3108:7;3104:23;3100:32;3097:52;;;3145:1;3142;3135:12;3097:52;3185:9;3172:23;3218:18;3210:6;3207:30;3204:50;;;3250:1;3247;3240:12;3204:50;3273:22;;3326:4;3318:13;;3314:27;-1:-1:-1;3304:55:1;;3355:1;3352;3345:12;3304:55;3378:74;3444:7;3439:2;3426:16;3421:2;3417;3413:11;3378:74;:::i;3645:247::-;3704:6;3757:2;3745:9;3736:7;3732:23;3728:32;3725:52;;;3773:1;3770;3763:12;3725:52;3812:9;3799:23;3831:31;3856:5;3831:31;:::i;3897:456::-;3974:6;3982;3990;4043:2;4031:9;4022:7;4018:23;4014:32;4011:52;;;4059:1;4056;4049:12;4011:52;4098:9;4085:23;4117:31;4142:5;4117:31;:::i;:::-;4167:5;-1:-1:-1;4224:2:1;4209:18;;4196:32;4237:33;4196:32;4237:33;:::i;:::-;3897:456;;4289:7;;-1:-1:-1;;;4343:2:1;4328:18;;;;4315:32;;3897:456::o;4620:248::-;4688:6;4696;4749:2;4737:9;4728:7;4724:23;4720:32;4717:52;;;4765:1;4762;4755:12;4717:52;-1:-1:-1;;4788:23:1;;;4858:2;4843:18;;;4830:32;;-1:-1:-1;4620:248:1:o;4873:118::-;4959:5;4952:13;4945:21;4938:5;4935:32;4925:60;;4981:1;4978;4971:12;4996:382;5061:6;5069;5122:2;5110:9;5101:7;5097:23;5093:32;5090:52;;;5138:1;5135;5128:12;5090:52;5177:9;5164:23;5196:31;5221:5;5196:31;:::i;:::-;5246:5;-1:-1:-1;5303:2:1;5288:18;;5275:32;5316:30;5275:32;5316:30;:::i;:::-;5365:7;5355:17;;;4996:382;;;;;:::o;5383:221::-;5425:5;5478:3;5471:4;5463:6;5459:17;5455:27;5445:55;;5496:1;5493;5486:12;5445:55;5518:80;5594:3;5585:6;5572:20;5565:4;5557:6;5553:17;5518:80;:::i;5609:665::-;5704:6;5712;5720;5728;5781:3;5769:9;5760:7;5756:23;5752:33;5749:53;;;5798:1;5795;5788:12;5749:53;5837:9;5824:23;5856:31;5881:5;5856:31;:::i;:::-;5906:5;-1:-1:-1;5963:2:1;5948:18;;5935:32;5976:33;5935:32;5976:33;:::i;:::-;6028:7;-1:-1:-1;6082:2:1;6067:18;;6054:32;;-1:-1:-1;6137:2:1;6122:18;;6109:32;6164:18;6153:30;;6150:50;;;6196:1;6193;6186:12;6150:50;6219:49;6260:7;6251:6;6240:9;6236:22;6219:49;:::i;:::-;6209:59;;;5609:665;;;;;;;:::o;6279:523::-;6365:6;6373;6381;6434:2;6422:9;6413:7;6409:23;6405:32;6402:52;;;6450:1;6447;6440:12;6402:52;6489:9;6476:23;6508:31;6533:5;6508:31;:::i;:::-;6558:5;-1:-1:-1;6610:2:1;6595:18;;6582:32;;-1:-1:-1;6665:2:1;6650:18;;6637:32;6692:18;6681:30;;6678:50;;;6724:1;6721;6714:12;6678:50;6747:49;6788:7;6779:6;6768:9;6764:22;6747:49;:::i;:::-;6737:59;;;6279:523;;;;;:::o;6807:388::-;6875:6;6883;6936:2;6924:9;6915:7;6911:23;6907:32;6904:52;;;6952:1;6949;6942:12;6904:52;6991:9;6978:23;7010:31;7035:5;7010:31;:::i;:::-;7060:5;-1:-1:-1;7117:2:1;7102:18;;7089:32;7130:33;7089:32;7130:33;:::i;7788:380::-;7867:1;7863:12;;;;7910;;;7931:61;;7985:4;7977:6;7973:17;7963:27;;7931:61;8038:2;8030:6;8027:14;8007:18;8004:38;8001:161;;8084:10;8079:3;8075:20;8072:1;8065:31;8119:4;8116:1;8109:15;8147:4;8144:1;8137:15;8001:161;;7788:380;;;:::o;8505:245::-;8572:6;8625:2;8613:9;8604:7;8600:23;8596:32;8593:52;;;8641:1;8638;8631:12;8593:52;8673:9;8667:16;8692:28;8714:5;8692:28;:::i;10150:127::-;10211:10;10206:3;10202:20;10199:1;10192:31;10242:4;10239:1;10232:15;10266:4;10263:1;10256:15;10282:128;10322:3;10353:1;10349:6;10346:1;10343:13;10340:39;;;10359:18;;:::i;:::-;-1:-1:-1;10395:9:1;;10282:128::o;11101:168::-;11141:7;11207:1;11203;11199:6;11195:14;11192:1;11189:21;11184:1;11177:9;11170:17;11166:45;11163:71;;;11214:18;;:::i;:::-;-1:-1:-1;11254:9:1;;11101:168::o;11274:637::-;11554:3;11592:6;11586:13;11608:53;11654:6;11649:3;11642:4;11634:6;11630:17;11608:53;:::i;:::-;11724:13;;11683:16;;;;11746:57;11724:13;11683:16;11780:4;11768:17;;11746:57;:::i;:::-;-1:-1:-1;;;11825:20:1;;11854:22;;;11903:1;11892:13;;11274:637;-1:-1:-1;;;;11274:637:1:o;13503:135::-;13542:3;13563:17;;;13560:43;;13583:18;;:::i;:::-;-1:-1:-1;13630:1:1;13619:13;;13503:135::o;13643:127::-;13704:10;13699:3;13695:20;13692:1;13685:31;13735:4;13732:1;13725:15;13759:4;13756:1;13749:15;13775:120;13815:1;13841;13831:35;;13846:18;;:::i;:::-;-1:-1:-1;13880:9:1;;13775:120::o;13900:125::-;13940:4;13968:1;13965;13962:8;13959:34;;;13973:18;;:::i;:::-;-1:-1:-1;14010:9:1;;13900:125::o;14030:112::-;14062:1;14088;14078:35;;14093:18;;:::i;:::-;-1:-1:-1;14127:9:1;;14030:112::o;14147:127::-;14208:10;14203:3;14199:20;14196:1;14189:31;14239:4;14236:1;14229:15;14263:4;14260:1;14253:15;16546:512;16740:4;-1:-1:-1;;;;;16850:2:1;16842:6;16838:15;16827:9;16820:34;16902:2;16894:6;16890:15;16885:2;16874:9;16870:18;16863:43;;16942:6;16937:2;16926:9;16922:18;16915:34;16985:3;16980:2;16969:9;16965:18;16958:31;17006:46;17047:3;17036:9;17032:19;17024:6;17006:46;:::i;17063:249::-;17132:6;17185:2;17173:9;17164:7;17160:23;17156:32;17153:52;;;17201:1;17198;17191:12;17153:52;17233:9;17227:16;17252:30;17276:5;17252:30;:::i

Swarm Source

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