ETH Price: $2,373.00 (-3.36%)

Shilly: Access Pass (Shilly Pass)
 

Overview

TokenID

1132

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
ShillyPass

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/AGreatDay.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;




contract ShillyPass is ERC721A, Ownable {

    string  public  baseTokenURI = "ipfs://QmQDXu3ihDrJivXR32YtQYcRYeBnxWRgYdLpNAbtF8f38Q/";
  uint256 public  maxSupply = 50000;
  uint256 public  MAX_MINTS_PER_TX = 500;
  uint256 public  PUBLIC_SALE_PRICE = 0.0002 ether;
  uint256 public  NUM_FREE_MINTS = 49000;
  uint256 public  MAX_FREE_PER_WALLET = 4000;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = true;

  constructor(

  ) ERC721A("Shilly: Access Pass", "Shilly Pass") {

  }



function calculateMintingPrice(uint256 quantity) public view returns (uint256) {
        if (quantity == 10) {
            return 0.001 ether;
        } else if (quantity == 20) {
            return 0.0018 ether;
        } else if (quantity == 40) {
            return 0.003 ether;
        } else if (quantity == 100) {
            return 0.0055 ether;
        } else {
            return PUBLIC_SALE_PRICE * quantity;
        }
    }

    function MintWithRewards(uint256 numberOfTokens) external payable {
        require(totalSupply() + numberOfTokens <= maxSupply + 1, "No more");

        uint256 totalPrice = calculateMintingPrice(numberOfTokens);

        if (freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS) {
            require(totalPrice <= msg.value, "Incorrect ETH value sent");
        } else {
            if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
                require(totalPrice <= msg.value, "Incorrect ETH value sent");
                require(
                    numberOfTokens <= MAX_MINTS_PER_TX,
                    "Max mints per transaction exceeded"
                );
            } else {
                require(
                    numberOfTokens <= MAX_FREE_PER_WALLET,
                    "Max mints per transaction exceeded"
                );
                freeNFTAlreadyMinted += numberOfTokens;
            }
        }
        _safeMint(msg.sender, numberOfTokens);
    }



  function setBaseURI(string memory baseURI)
    public
    onlyOwner
  {
    baseTokenURI = baseURI;
  }

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 90 / 100;
        uint256 balanceTwo = balance * 10 / 100;
        ( bool transferOne, ) = payable(0xb9be2764F010AB0D19537B5b85D2Ff5d12954643).call{value: balanceOne}("");
        ( bool transferTwo, ) = payable(0xb9be2764F010AB0D19537B5b85D2Ff5d12954643).call{value: balanceTwo}("");
        require(transferOne && transferTwo, "Transfer failed.");

  }
  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {

  }

  function _baseURI()
    internal
    view
    virtual
    override
    returns (string memory)
  {
    return baseTokenURI;
  }

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

   function setmaxSupply(uint256 _maxSupply)
      external
      onlyOwner
  {
      maxSupply = _maxSupply;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"MintWithRewards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"calculateMintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060600160405280603681526020016200397b60369139600990816200002e91906200049a565b5061c350600a556101f4600b5565b5e620f48000600c5561bf68600d55610fa0600e556000600f556001601060006101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040518060400160405280601381526020017f5368696c6c793a204163636573732050617373000000000000000000000000008152506040518060400160405280600b81526020017f5368696c6c7920506173730000000000000000000000000000000000000000008152508160029081620000fc91906200049a565b5080600390816200010e91906200049a565b506200011f6200014d60201b60201c565b6000819055505050620001476200013b6200015260201b60201c565b6200015a60201b60201c565b62000581565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a257607f821691505b602082108103620002b857620002b76200025a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002e3565b6200032e8683620002e3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200037b620003756200036f8462000346565b62000350565b62000346565b9050919050565b6000819050919050565b62000397836200035a565b620003af620003a68262000382565b848454620002f0565b825550505050565b600090565b620003c6620003b7565b620003d38184846200038c565b505050565b5b81811015620003fb57620003ef600082620003bc565b600181019050620003d9565b5050565b601f8211156200044a576200041481620002be565b6200041f84620002d3565b810160208510156200042f578190505b620004476200043e85620002d3565b830182620003d8565b50505b505050565b600082821c905092915050565b60006200046f600019846008026200044f565b1980831691505092915050565b60006200048a83836200045c565b9150826002028217905092915050565b620004a58262000220565b67ffffffffffffffff811115620004c157620004c06200022b565b5b620004cd825462000289565b620004da828285620003ff565b600060209050601f831160018114620005125760008415620004fd578287015190505b6200050985826200047c565b86555062000579565b601f1984166200052286620002be565b60005b828110156200054c5784890151825560018201915060208501945060208101905062000525565b868310156200056c578489015162000568601f8916826200045c565b8355505b6001600288020188555050505b505050505050565b6133ea80620005916000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610713578063e985e9c51461073e578063efdc77881461077b578063f2fde38b146107a4578063f6511f93146107cd5761020f565b8063b88d4fde14610664578063c6a91b4214610680578063c87b56dd146106ab578063d547cfb7146106e85761020f565b8063982d669e116100e7578063982d669e146105a057806398710d1e146105cb5780639bd6e3d7146105f65780639e9fcffc14610612578063a22cb4651461063b5761020f565b8063715018a614610529578063853828b6146105405780638da5cb5b1461054a57806395d89b41146105755761020f565b80631e84c4131161019b57806328cad13d1161016a57806328cad13d1461044157806342842e0e1461046a57806355f804b3146104865780636352211e146104af57806370a08231146104ec5761020f565b80631e84c413146103a8578063202f298a146103d3578063228025e8146103fc57806323b872dd146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e45780630a00ae831461030057806318160ddd146103295780631919fed714610354578063193ad7b41461037d5761020f565b806301ffc9a71461021457806306fdde031461025157806307e89ec01461027c578063081812fc146102a7575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612497565b61080a565b60405161024891906124df565b60405180910390f35b34801561025d57600080fd5b5061026661089c565b604051610273919061258a565b60405180910390f35b34801561028857600080fd5b5061029161092e565b60405161029e91906125c5565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c9919061260c565b610934565b6040516102db919061267a565b60405180910390f35b6102fe60048036038101906102f991906126c1565b6109b3565b005b34801561030c57600080fd5b506103276004803603810190610322919061260c565b610af7565b005b34801561033557600080fd5b5061033e610b7d565b60405161034b91906125c5565b60405180910390f35b34801561036057600080fd5b5061037b6004803603810190610376919061260c565b610b94565b005b34801561038957600080fd5b50610392610c1a565b60405161039f91906125c5565b60405180910390f35b3480156103b457600080fd5b506103bd610c20565b6040516103ca91906124df565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f5919061260c565b610c33565b005b34801561040857600080fd5b50610423600480360381019061041e919061260c565b610cb9565b005b61043f600480360381019061043a9190612701565b610d3f565b005b34801561044d57600080fd5b5061046860048036038101906104639190612780565b611061565b005b610484600480360381019061047f9190612701565b6110fa565b005b34801561049257600080fd5b506104ad60048036038101906104a891906128e2565b61111a565b005b3480156104bb57600080fd5b506104d660048036038101906104d1919061260c565b6111a9565b6040516104e3919061267a565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061292b565b6111bb565b60405161052091906125c5565b60405180910390f35b34801561053557600080fd5b5061053e611273565b005b6105486112fb565b005b34801561055657600080fd5b5061055f611506565b60405161056c919061267a565b60405180910390f35b34801561058157600080fd5b5061058a611530565b604051610597919061258a565b60405180910390f35b3480156105ac57600080fd5b506105b56115c2565b6040516105c291906125c5565b60405180910390f35b3480156105d757600080fd5b506105e06115c8565b6040516105ed91906125c5565b60405180910390f35b610610600480360381019061060b919061260c565b6115ce565b005b34801561061e57600080fd5b506106396004803603810190610634919061260c565b6117b5565b005b34801561064757600080fd5b50610662600480360381019061065d9190612958565b61183b565b005b61067e60048036038101906106799190612a39565b611946565b005b34801561068c57600080fd5b506106956119b9565b6040516106a291906125c5565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061260c565b6119bf565b6040516106df919061258a565b60405180910390f35b3480156106f457600080fd5b506106fd6119c6565b60405161070a919061258a565b60405180910390f35b34801561071f57600080fd5b50610728611a54565b60405161073591906125c5565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190612abc565b611a5a565b60405161077291906124df565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d919061260c565b611aee565b005b3480156107b057600080fd5b506107cb60048036038101906107c6919061292b565b611c11565b005b3480156107d957600080fd5b506107f460048036038101906107ef919061260c565b611d08565b60405161080191906125c5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ab90612b2b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d790612b2b565b80156109245780601f106108f957610100808354040283529160200191610924565b820191906000526020600020905b81548152906001019060200180831161090757829003601f168201915b5050505050905090565b600c5481565b600061093f82611d7c565b610975576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109be826111a9565b90508073ffffffffffffffffffffffffffffffffffffffff166109df611ddb565b73ffffffffffffffffffffffffffffffffffffffff1614610a4257610a0b81610a06611ddb565b611a5a565b610a41576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aff611de3565b73ffffffffffffffffffffffffffffffffffffffff16610b1d611506565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612ba8565b60405180910390fd5b80600d8190555050565b6000610b87611deb565b6001546000540303905090565b610b9c611de3565b73ffffffffffffffffffffffffffffffffffffffff16610bba611506565b73ffffffffffffffffffffffffffffffffffffffff1614610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0790612ba8565b60405180910390fd5b80600c8190555050565b600f5481565b601060009054906101000a900460ff1681565b610c3b611de3565b73ffffffffffffffffffffffffffffffffffffffff16610c59611506565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690612ba8565b60405180910390fd5b80600e8190555050565b610cc1611de3565b73ffffffffffffffffffffffffffffffffffffffff16610cdf611506565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90612ba8565b60405180910390fd5b80600a8190555050565b6000610d4a82611df0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dbd84611ebc565b91509150610dd38187610dce611ddb565b611ee3565b610e1f57610de886610de3611ddb565b611a5a565b610e1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e928686866001611f27565b8015610e9d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f6b85610f47888887611f2d565b7c020000000000000000000000000000000000000000000000000000000017611f55565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ff15760006001850190506000600460008381526020019081526020016000205403610fef576000548114610fee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110598686866001611f80565b505050505050565b611069611de3565b73ffffffffffffffffffffffffffffffffffffffff16611087611506565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612ba8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b61111583838360405180602001604052806000815250611946565b505050565b611122611de3565b73ffffffffffffffffffffffffffffffffffffffff16611140611506565b73ffffffffffffffffffffffffffffffffffffffff1614611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90612ba8565b60405180910390fd5b80600990816111a59190612d74565b5050565b60006111b482611df0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611222576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127b611de3565b73ffffffffffffffffffffffffffffffffffffffff16611299611506565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690612ba8565b60405180910390fd5b6112f96000611f86565b565b611303611de3565b73ffffffffffffffffffffffffffffffffffffffff16611321611506565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612ba8565b60405180910390fd5b600047905060006064605a8361138d9190612e75565b6113979190612ee6565b905060006064600a846113aa9190612e75565b6113b49190612ee6565b9050600073b9be2764f010ab0d19537b5b85d2ff5d1295464373ffffffffffffffffffffffffffffffffffffffff16836040516113f090612f48565b60006040518083038185875af1925050503d806000811461142d576040519150601f19603f3d011682016040523d82523d6000602084013e611432565b606091505b50509050600073b9be2764f010ab0d19537b5b85d2ff5d1295464373ffffffffffffffffffffffffffffffffffffffff168360405161147090612f48565b60006040518083038185875af1925050503d80600081146114ad576040519150601f19603f3d011682016040523d82523d6000602084013e6114b2565b606091505b505090508180156114c05750805b6114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690612fa9565b60405180910390fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461153f90612b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461156b90612b2b565b80156115b85780601f1061158d576101008083540402835291602001916115b8565b820191906000526020600020905b81548152906001019060200180831161159b57829003601f168201915b5050505050905090565b600d5481565b600e5481565b6001600a546115dd9190612fc9565b816115e6610b7d565b6115f09190612fc9565b1115611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613049565b60405180910390fd5b600061163c82611d08565b9050600d5482600f5461164f9190612fc9565b111561169d5734811115611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906130b5565b60405180910390fd5b6117a7565b600e54826116aa336111bb565b6116b49190612fc9565b111561174757348111156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906130b5565b60405180910390fd5b600b54821115611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613147565b60405180910390fd5b6117a6565b600e5482111561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613147565b60405180910390fd5b81600f600082825461179e9190612fc9565b925050819055505b5b6117b1338361204c565b5050565b6117bd611de3565b73ffffffffffffffffffffffffffffffffffffffff166117db611506565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612ba8565b60405180910390fd5b80600b8190555050565b8060076000611848611ddb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f5611ddb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193a91906124df565b60405180910390a35050565b611951848484610d3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119b35761197c8484848461206a565b6119b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6060919050565b600980546119d390612b2b565b80601f01602080910402602001604051908101604052809291908181526020018280546119ff90612b2b565b8015611a4c5780601f10611a2157610100808354040283529160200191611a4c565b820191906000526020600020905b815481529060010190602001808311611a2f57829003601f168201915b505050505081565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af6611de3565b73ffffffffffffffffffffffffffffffffffffffff16611b14611506565b73ffffffffffffffffffffffffffffffffffffffff1614611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190612ba8565b60405180910390fd5b60008111611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba4906131b3565b60405180910390fd5b600a5481611bb9610b7d565b611bc39190612fc9565b1115611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb9061321f565b60405180910390fd5b611c0e338261204c565b50565b611c19611de3565b73ffffffffffffffffffffffffffffffffffffffff16611c37611506565b73ffffffffffffffffffffffffffffffffffffffff1614611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490612ba8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906132b1565b60405180910390fd5b611d0581611f86565b50565b6000600a8203611d215766038d7ea4c680009050611d77565b60148203611d385766066517289880009050611d77565b60288203611d4f57660aa87bee5380009050611d77565b60648203611d665766138a388a43c0009050611d77565b81600c54611d749190612e75565b90505b919050565b600081611d87611deb565b11158015611d96575060005482105b8015611dd4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080611dff611deb565b11611e8557600054811015611e845760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e82575b60008103611e78576004600083600190039350838152602001908152602001600020549050611e4e565b8092505050611eb7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f448686846121ba565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120668282604051806020016040528060008152506121c3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612090611ddb565b8786866040518563ffffffff1660e01b81526004016120b29493929190613326565b6020604051808303816000875af19250505080156120ee57506040513d601f19601f820116820180604052508101906120eb9190613387565b60015b612167573d806000811461211e576040519150601f19603f3d011682016040523d82523d6000602084013e612123565b606091505b50600081510361215f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6121cd8383612260565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225b57600080549050600083820390505b61220d600086838060010194508661206a565b612243576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121fa57816000541461225857600080fd5b50505b505050565b600080549050600082036122a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ad6000848385611f27565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612324836123156000866000611f2d565b61231e8561241b565b17611f55565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238a565b5060008203612400576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124166000848385611f80565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124748161243f565b811461247f57600080fd5b50565b6000813590506124918161246b565b92915050565b6000602082840312156124ad576124ac612435565b5b60006124bb84828501612482565b91505092915050565b60008115159050919050565b6124d9816124c4565b82525050565b60006020820190506124f460008301846124d0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612534578082015181840152602081019050612519565b60008484015250505050565b6000601f19601f8301169050919050565b600061255c826124fa565b6125668185612505565b9350612576818560208601612516565b61257f81612540565b840191505092915050565b600060208201905081810360008301526125a48184612551565b905092915050565b6000819050919050565b6125bf816125ac565b82525050565b60006020820190506125da60008301846125b6565b92915050565b6125e9816125ac565b81146125f457600080fd5b50565b600081359050612606816125e0565b92915050565b60006020828403121561262257612621612435565b5b6000612630848285016125f7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061266482612639565b9050919050565b61267481612659565b82525050565b600060208201905061268f600083018461266b565b92915050565b61269e81612659565b81146126a957600080fd5b50565b6000813590506126bb81612695565b92915050565b600080604083850312156126d8576126d7612435565b5b60006126e6858286016126ac565b92505060206126f7858286016125f7565b9150509250929050565b60008060006060848603121561271a57612719612435565b5b6000612728868287016126ac565b9350506020612739868287016126ac565b925050604061274a868287016125f7565b9150509250925092565b61275d816124c4565b811461276857600080fd5b50565b60008135905061277a81612754565b92915050565b60006020828403121561279657612795612435565b5b60006127a48482850161276b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ef82612540565b810181811067ffffffffffffffff8211171561280e5761280d6127b7565b5b80604052505050565b600061282161242b565b905061282d82826127e6565b919050565b600067ffffffffffffffff82111561284d5761284c6127b7565b5b61285682612540565b9050602081019050919050565b82818337600083830152505050565b600061288561288084612832565b612817565b9050828152602081018484840111156128a1576128a06127b2565b5b6128ac848285612863565b509392505050565b600082601f8301126128c9576128c86127ad565b5b81356128d9848260208601612872565b91505092915050565b6000602082840312156128f8576128f7612435565b5b600082013567ffffffffffffffff8111156129165761291561243a565b5b612922848285016128b4565b91505092915050565b60006020828403121561294157612940612435565b5b600061294f848285016126ac565b91505092915050565b6000806040838503121561296f5761296e612435565b5b600061297d858286016126ac565b925050602061298e8582860161276b565b9150509250929050565b600067ffffffffffffffff8211156129b3576129b26127b7565b5b6129bc82612540565b9050602081019050919050565b60006129dc6129d784612998565b612817565b9050828152602081018484840111156129f8576129f76127b2565b5b612a03848285612863565b509392505050565b600082601f830112612a2057612a1f6127ad565b5b8135612a308482602086016129c9565b91505092915050565b60008060008060808587031215612a5357612a52612435565b5b6000612a61878288016126ac565b9450506020612a72878288016126ac565b9350506040612a83878288016125f7565b925050606085013567ffffffffffffffff811115612aa457612aa361243a565b5b612ab087828801612a0b565b91505092959194509250565b60008060408385031215612ad357612ad2612435565b5b6000612ae1858286016126ac565b9250506020612af2858286016126ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4357607f821691505b602082108103612b5657612b55612afc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b92602083612505565b9150612b9d82612b5c565b602082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c2a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bed565b612c348683612bed565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c71612c6c612c67846125ac565b612c4c565b6125ac565b9050919050565b6000819050919050565b612c8b83612c56565b612c9f612c9782612c78565b848454612bfa565b825550505050565b600090565b612cb4612ca7565b612cbf818484612c82565b505050565b5b81811015612ce357612cd8600082612cac565b600181019050612cc5565b5050565b601f821115612d2857612cf981612bc8565b612d0284612bdd565b81016020851015612d11578190505b612d25612d1d85612bdd565b830182612cc4565b50505b505050565b600082821c905092915050565b6000612d4b60001984600802612d2d565b1980831691505092915050565b6000612d648383612d3a565b9150826002028217905092915050565b612d7d826124fa565b67ffffffffffffffff811115612d9657612d956127b7565b5b612da08254612b2b565b612dab828285612ce7565b600060209050601f831160018114612dde5760008415612dcc578287015190505b612dd68582612d58565b865550612e3e565b601f198416612dec86612bc8565b60005b82811015612e1457848901518255600182019150602085019450602081019050612def565b86831015612e315784890151612e2d601f891682612d3a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e80826125ac565b9150612e8b836125ac565b9250828202612e99816125ac565b91508282048414831517612eb057612eaf612e46565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ef1826125ac565b9150612efc836125ac565b925082612f0c57612f0b612eb7565b5b828204905092915050565b600081905092915050565b50565b6000612f32600083612f17565b9150612f3d82612f22565b600082019050919050565b6000612f5382612f25565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f93601083612505565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b6000612fd4826125ac565b9150612fdf836125ac565b9250828201905080821115612ff757612ff6612e46565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613033600783612505565b915061303e82612ffd565b602082019050919050565b6000602082019050818103600083015261306281613026565b9050919050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b600061309f601883612505565b91506130aa82613069565b602082019050919050565b600060208201905081810360008301526130ce81613092565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613131602283612505565b915061313c826130d5565b604082019050919050565b6000602082019050818103600083015261316081613124565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061319d601383612505565b91506131a882613167565b602082019050919050565b600060208201905081810360008301526131cc81613190565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613209601783612505565b9150613214826131d3565b602082019050919050565b60006020820190508181036000830152613238816131fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061329b602683612505565b91506132a68261323f565b604082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132f8826132d1565b61330281856132dc565b9350613312818560208601612516565b61331b81612540565b840191505092915050565b600060808201905061333b600083018761266b565b613348602083018661266b565b61335560408301856125b6565b818103606083015261336781846132ed565b905095945050505050565b6000815190506133818161246b565b92915050565b60006020828403121561339d5761339c612435565b5b60006133ab84828501613372565b9150509291505056fea26469706673582212209211f0eca84f9e1b1362dfa47c6608488e61e541567833f2d92425da46a195da64736f6c63430008110033697066733a2f2f516d5144587533696844724a6976585233325974515963525965426e7857526759644c704e4162744638663338512f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610713578063e985e9c51461073e578063efdc77881461077b578063f2fde38b146107a4578063f6511f93146107cd5761020f565b8063b88d4fde14610664578063c6a91b4214610680578063c87b56dd146106ab578063d547cfb7146106e85761020f565b8063982d669e116100e7578063982d669e146105a057806398710d1e146105cb5780639bd6e3d7146105f65780639e9fcffc14610612578063a22cb4651461063b5761020f565b8063715018a614610529578063853828b6146105405780638da5cb5b1461054a57806395d89b41146105755761020f565b80631e84c4131161019b57806328cad13d1161016a57806328cad13d1461044157806342842e0e1461046a57806355f804b3146104865780636352211e146104af57806370a08231146104ec5761020f565b80631e84c413146103a8578063202f298a146103d3578063228025e8146103fc57806323b872dd146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e45780630a00ae831461030057806318160ddd146103295780631919fed714610354578063193ad7b41461037d5761020f565b806301ffc9a71461021457806306fdde031461025157806307e89ec01461027c578063081812fc146102a7575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612497565b61080a565b60405161024891906124df565b60405180910390f35b34801561025d57600080fd5b5061026661089c565b604051610273919061258a565b60405180910390f35b34801561028857600080fd5b5061029161092e565b60405161029e91906125c5565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c9919061260c565b610934565b6040516102db919061267a565b60405180910390f35b6102fe60048036038101906102f991906126c1565b6109b3565b005b34801561030c57600080fd5b506103276004803603810190610322919061260c565b610af7565b005b34801561033557600080fd5b5061033e610b7d565b60405161034b91906125c5565b60405180910390f35b34801561036057600080fd5b5061037b6004803603810190610376919061260c565b610b94565b005b34801561038957600080fd5b50610392610c1a565b60405161039f91906125c5565b60405180910390f35b3480156103b457600080fd5b506103bd610c20565b6040516103ca91906124df565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f5919061260c565b610c33565b005b34801561040857600080fd5b50610423600480360381019061041e919061260c565b610cb9565b005b61043f600480360381019061043a9190612701565b610d3f565b005b34801561044d57600080fd5b5061046860048036038101906104639190612780565b611061565b005b610484600480360381019061047f9190612701565b6110fa565b005b34801561049257600080fd5b506104ad60048036038101906104a891906128e2565b61111a565b005b3480156104bb57600080fd5b506104d660048036038101906104d1919061260c565b6111a9565b6040516104e3919061267a565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061292b565b6111bb565b60405161052091906125c5565b60405180910390f35b34801561053557600080fd5b5061053e611273565b005b6105486112fb565b005b34801561055657600080fd5b5061055f611506565b60405161056c919061267a565b60405180910390f35b34801561058157600080fd5b5061058a611530565b604051610597919061258a565b60405180910390f35b3480156105ac57600080fd5b506105b56115c2565b6040516105c291906125c5565b60405180910390f35b3480156105d757600080fd5b506105e06115c8565b6040516105ed91906125c5565b60405180910390f35b610610600480360381019061060b919061260c565b6115ce565b005b34801561061e57600080fd5b506106396004803603810190610634919061260c565b6117b5565b005b34801561064757600080fd5b50610662600480360381019061065d9190612958565b61183b565b005b61067e60048036038101906106799190612a39565b611946565b005b34801561068c57600080fd5b506106956119b9565b6040516106a291906125c5565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061260c565b6119bf565b6040516106df919061258a565b60405180910390f35b3480156106f457600080fd5b506106fd6119c6565b60405161070a919061258a565b60405180910390f35b34801561071f57600080fd5b50610728611a54565b60405161073591906125c5565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190612abc565b611a5a565b60405161077291906124df565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d919061260c565b611aee565b005b3480156107b057600080fd5b506107cb60048036038101906107c6919061292b565b611c11565b005b3480156107d957600080fd5b506107f460048036038101906107ef919061260c565b611d08565b60405161080191906125c5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ab90612b2b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d790612b2b565b80156109245780601f106108f957610100808354040283529160200191610924565b820191906000526020600020905b81548152906001019060200180831161090757829003601f168201915b5050505050905090565b600c5481565b600061093f82611d7c565b610975576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109be826111a9565b90508073ffffffffffffffffffffffffffffffffffffffff166109df611ddb565b73ffffffffffffffffffffffffffffffffffffffff1614610a4257610a0b81610a06611ddb565b611a5a565b610a41576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aff611de3565b73ffffffffffffffffffffffffffffffffffffffff16610b1d611506565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612ba8565b60405180910390fd5b80600d8190555050565b6000610b87611deb565b6001546000540303905090565b610b9c611de3565b73ffffffffffffffffffffffffffffffffffffffff16610bba611506565b73ffffffffffffffffffffffffffffffffffffffff1614610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0790612ba8565b60405180910390fd5b80600c8190555050565b600f5481565b601060009054906101000a900460ff1681565b610c3b611de3565b73ffffffffffffffffffffffffffffffffffffffff16610c59611506565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690612ba8565b60405180910390fd5b80600e8190555050565b610cc1611de3565b73ffffffffffffffffffffffffffffffffffffffff16610cdf611506565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90612ba8565b60405180910390fd5b80600a8190555050565b6000610d4a82611df0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dbd84611ebc565b91509150610dd38187610dce611ddb565b611ee3565b610e1f57610de886610de3611ddb565b611a5a565b610e1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e928686866001611f27565b8015610e9d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f6b85610f47888887611f2d565b7c020000000000000000000000000000000000000000000000000000000017611f55565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ff15760006001850190506000600460008381526020019081526020016000205403610fef576000548114610fee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110598686866001611f80565b505050505050565b611069611de3565b73ffffffffffffffffffffffffffffffffffffffff16611087611506565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612ba8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b61111583838360405180602001604052806000815250611946565b505050565b611122611de3565b73ffffffffffffffffffffffffffffffffffffffff16611140611506565b73ffffffffffffffffffffffffffffffffffffffff1614611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90612ba8565b60405180910390fd5b80600990816111a59190612d74565b5050565b60006111b482611df0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611222576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127b611de3565b73ffffffffffffffffffffffffffffffffffffffff16611299611506565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690612ba8565b60405180910390fd5b6112f96000611f86565b565b611303611de3565b73ffffffffffffffffffffffffffffffffffffffff16611321611506565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612ba8565b60405180910390fd5b600047905060006064605a8361138d9190612e75565b6113979190612ee6565b905060006064600a846113aa9190612e75565b6113b49190612ee6565b9050600073b9be2764f010ab0d19537b5b85d2ff5d1295464373ffffffffffffffffffffffffffffffffffffffff16836040516113f090612f48565b60006040518083038185875af1925050503d806000811461142d576040519150601f19603f3d011682016040523d82523d6000602084013e611432565b606091505b50509050600073b9be2764f010ab0d19537b5b85d2ff5d1295464373ffffffffffffffffffffffffffffffffffffffff168360405161147090612f48565b60006040518083038185875af1925050503d80600081146114ad576040519150601f19603f3d011682016040523d82523d6000602084013e6114b2565b606091505b505090508180156114c05750805b6114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690612fa9565b60405180910390fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461153f90612b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461156b90612b2b565b80156115b85780601f1061158d576101008083540402835291602001916115b8565b820191906000526020600020905b81548152906001019060200180831161159b57829003601f168201915b5050505050905090565b600d5481565b600e5481565b6001600a546115dd9190612fc9565b816115e6610b7d565b6115f09190612fc9565b1115611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613049565b60405180910390fd5b600061163c82611d08565b9050600d5482600f5461164f9190612fc9565b111561169d5734811115611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906130b5565b60405180910390fd5b6117a7565b600e54826116aa336111bb565b6116b49190612fc9565b111561174757348111156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906130b5565b60405180910390fd5b600b54821115611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613147565b60405180910390fd5b6117a6565b600e5482111561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613147565b60405180910390fd5b81600f600082825461179e9190612fc9565b925050819055505b5b6117b1338361204c565b5050565b6117bd611de3565b73ffffffffffffffffffffffffffffffffffffffff166117db611506565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612ba8565b60405180910390fd5b80600b8190555050565b8060076000611848611ddb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f5611ddb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193a91906124df565b60405180910390a35050565b611951848484610d3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119b35761197c8484848461206a565b6119b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6060919050565b600980546119d390612b2b565b80601f01602080910402602001604051908101604052809291908181526020018280546119ff90612b2b565b8015611a4c5780601f10611a2157610100808354040283529160200191611a4c565b820191906000526020600020905b815481529060010190602001808311611a2f57829003601f168201915b505050505081565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af6611de3565b73ffffffffffffffffffffffffffffffffffffffff16611b14611506565b73ffffffffffffffffffffffffffffffffffffffff1614611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190612ba8565b60405180910390fd5b60008111611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba4906131b3565b60405180910390fd5b600a5481611bb9610b7d565b611bc39190612fc9565b1115611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb9061321f565b60405180910390fd5b611c0e338261204c565b50565b611c19611de3565b73ffffffffffffffffffffffffffffffffffffffff16611c37611506565b73ffffffffffffffffffffffffffffffffffffffff1614611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490612ba8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906132b1565b60405180910390fd5b611d0581611f86565b50565b6000600a8203611d215766038d7ea4c680009050611d77565b60148203611d385766066517289880009050611d77565b60288203611d4f57660aa87bee5380009050611d77565b60648203611d665766138a388a43c0009050611d77565b81600c54611d749190612e75565b90505b919050565b600081611d87611deb565b11158015611d96575060005482105b8015611dd4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080611dff611deb565b11611e8557600054811015611e845760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e82575b60008103611e78576004600083600190039350838152602001908152602001600020549050611e4e565b8092505050611eb7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f448686846121ba565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120668282604051806020016040528060008152506121c3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612090611ddb565b8786866040518563ffffffff1660e01b81526004016120b29493929190613326565b6020604051808303816000875af19250505080156120ee57506040513d601f19601f820116820180604052508101906120eb9190613387565b60015b612167573d806000811461211e576040519150601f19603f3d011682016040523d82523d6000602084013e612123565b606091505b50600081510361215f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6121cd8383612260565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225b57600080549050600083820390505b61220d600086838060010194508661206a565b612243576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121fa57816000541461225857600080fd5b50505b505050565b600080549050600082036122a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ad6000848385611f27565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612324836123156000866000611f2d565b61231e8561241b565b17611f55565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238a565b5060008203612400576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124166000848385611f80565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124748161243f565b811461247f57600080fd5b50565b6000813590506124918161246b565b92915050565b6000602082840312156124ad576124ac612435565b5b60006124bb84828501612482565b91505092915050565b60008115159050919050565b6124d9816124c4565b82525050565b60006020820190506124f460008301846124d0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612534578082015181840152602081019050612519565b60008484015250505050565b6000601f19601f8301169050919050565b600061255c826124fa565b6125668185612505565b9350612576818560208601612516565b61257f81612540565b840191505092915050565b600060208201905081810360008301526125a48184612551565b905092915050565b6000819050919050565b6125bf816125ac565b82525050565b60006020820190506125da60008301846125b6565b92915050565b6125e9816125ac565b81146125f457600080fd5b50565b600081359050612606816125e0565b92915050565b60006020828403121561262257612621612435565b5b6000612630848285016125f7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061266482612639565b9050919050565b61267481612659565b82525050565b600060208201905061268f600083018461266b565b92915050565b61269e81612659565b81146126a957600080fd5b50565b6000813590506126bb81612695565b92915050565b600080604083850312156126d8576126d7612435565b5b60006126e6858286016126ac565b92505060206126f7858286016125f7565b9150509250929050565b60008060006060848603121561271a57612719612435565b5b6000612728868287016126ac565b9350506020612739868287016126ac565b925050604061274a868287016125f7565b9150509250925092565b61275d816124c4565b811461276857600080fd5b50565b60008135905061277a81612754565b92915050565b60006020828403121561279657612795612435565b5b60006127a48482850161276b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ef82612540565b810181811067ffffffffffffffff8211171561280e5761280d6127b7565b5b80604052505050565b600061282161242b565b905061282d82826127e6565b919050565b600067ffffffffffffffff82111561284d5761284c6127b7565b5b61285682612540565b9050602081019050919050565b82818337600083830152505050565b600061288561288084612832565b612817565b9050828152602081018484840111156128a1576128a06127b2565b5b6128ac848285612863565b509392505050565b600082601f8301126128c9576128c86127ad565b5b81356128d9848260208601612872565b91505092915050565b6000602082840312156128f8576128f7612435565b5b600082013567ffffffffffffffff8111156129165761291561243a565b5b612922848285016128b4565b91505092915050565b60006020828403121561294157612940612435565b5b600061294f848285016126ac565b91505092915050565b6000806040838503121561296f5761296e612435565b5b600061297d858286016126ac565b925050602061298e8582860161276b565b9150509250929050565b600067ffffffffffffffff8211156129b3576129b26127b7565b5b6129bc82612540565b9050602081019050919050565b60006129dc6129d784612998565b612817565b9050828152602081018484840111156129f8576129f76127b2565b5b612a03848285612863565b509392505050565b600082601f830112612a2057612a1f6127ad565b5b8135612a308482602086016129c9565b91505092915050565b60008060008060808587031215612a5357612a52612435565b5b6000612a61878288016126ac565b9450506020612a72878288016126ac565b9350506040612a83878288016125f7565b925050606085013567ffffffffffffffff811115612aa457612aa361243a565b5b612ab087828801612a0b565b91505092959194509250565b60008060408385031215612ad357612ad2612435565b5b6000612ae1858286016126ac565b9250506020612af2858286016126ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4357607f821691505b602082108103612b5657612b55612afc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b92602083612505565b9150612b9d82612b5c565b602082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c2a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bed565b612c348683612bed565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c71612c6c612c67846125ac565b612c4c565b6125ac565b9050919050565b6000819050919050565b612c8b83612c56565b612c9f612c9782612c78565b848454612bfa565b825550505050565b600090565b612cb4612ca7565b612cbf818484612c82565b505050565b5b81811015612ce357612cd8600082612cac565b600181019050612cc5565b5050565b601f821115612d2857612cf981612bc8565b612d0284612bdd565b81016020851015612d11578190505b612d25612d1d85612bdd565b830182612cc4565b50505b505050565b600082821c905092915050565b6000612d4b60001984600802612d2d565b1980831691505092915050565b6000612d648383612d3a565b9150826002028217905092915050565b612d7d826124fa565b67ffffffffffffffff811115612d9657612d956127b7565b5b612da08254612b2b565b612dab828285612ce7565b600060209050601f831160018114612dde5760008415612dcc578287015190505b612dd68582612d58565b865550612e3e565b601f198416612dec86612bc8565b60005b82811015612e1457848901518255600182019150602085019450602081019050612def565b86831015612e315784890151612e2d601f891682612d3a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e80826125ac565b9150612e8b836125ac565b9250828202612e99816125ac565b91508282048414831517612eb057612eaf612e46565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ef1826125ac565b9150612efc836125ac565b925082612f0c57612f0b612eb7565b5b828204905092915050565b600081905092915050565b50565b6000612f32600083612f17565b9150612f3d82612f22565b600082019050919050565b6000612f5382612f25565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f93601083612505565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b6000612fd4826125ac565b9150612fdf836125ac565b9250828201905080821115612ff757612ff6612e46565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613033600783612505565b915061303e82612ffd565b602082019050919050565b6000602082019050818103600083015261306281613026565b9050919050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b600061309f601883612505565b91506130aa82613069565b602082019050919050565b600060208201905081810360008301526130ce81613092565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613131602283612505565b915061313c826130d5565b604082019050919050565b6000602082019050818103600083015261316081613124565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061319d601383612505565b91506131a882613167565b602082019050919050565b600060208201905081810360008301526131cc81613190565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613209601783612505565b9150613214826131d3565b602082019050919050565b60006020820190508181036000830152613238816131fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061329b602683612505565b91506132a68261323f565b604082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132f8826132d1565b61330281856132dc565b9350613312818560208601612516565b61331b81612540565b840191505092915050565b600060808201905061333b600083018761266b565b613348602083018661266b565b61335560408301856125b6565b818103606083015261336781846132ed565b905095945050505050565b6000815190506133818161246b565b92915050565b60006020828403121561339d5761339c612435565b5b60006133ab84828501613372565b9150509291505056fea26469706673582212209211f0eca84f9e1b1362dfa47c6608488e61e541567833f2d92425da46a195da64736f6c63430008110033

Deployed Bytecode Sourcemap

57158:3999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57380:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25830:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25263:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60517:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60774:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57523:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57567:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61028:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60653:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29469:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60363:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32390:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59184:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20732:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56198:103;;;;;;;;;;;;;:::i;:::-;;59588:502;;;:::i;:::-;;55547:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57433:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57476:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58147:1027;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60895:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26388:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33181:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57337:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60094:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57207:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57299:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26779:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59298:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56456:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57693:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18437:639;18522:4;18861:10;18846:25;;:11;:25;;;;:102;;;;18938:10;18923:25;;:11;:25;;;;18846:102;:179;;;;19015:10;19000:25;;:11;:25;;;;18846:179;18826:199;;18437:639;;;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;57380:48::-;;;;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;;;;;;;;;;;;;25926:64;26010:15;:24;26026:7;26010:24;;;;;;;;;;;:30;;;;;;;;;;;;26003:37;;25830:218;;;:::o;25263:408::-;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;;25424:5;25401:28;;:19;:17;:19::i;:::-;:28;;;25397:175;;25449:44;25466:5;25473:19;:17;:19::i;:::-;25449:16;:44::i;:::-;25444:128;;25521:35;;;;;;;;;;;;;;25444:128;25397:175;25617:2;25584:15;:24;25600:7;25584:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25655:7;25651:2;25635:28;;25644:5;25635:28;;;;;;;;;;;;25341:330;25263:408;;:::o;60517:129::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60627:13:::1;60610:14;:30;;;;60517:129:::0;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;60774:115::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60877:6:::1;60857:17;:26;;;;60774:115:::0;:::o;57523:39::-;;;;:::o;57567:37::-;;;;;;;;;;;;;:::o;61028:126::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61142:6:::1;61120:19;:28;;;;61028:126:::0;:::o;60653:115::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60752:10:::1;60740:9;:22;;;;60653:115:::0;:::o;29469:2825::-;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;29685:45;;29701:19;29685:45;;;29681:86;;29739:28;;;;;;;;;;;;;;29681:86;29781:27;29810:23;29837:35;29864:7;29837:26;:35::i;:::-;29780:92;;;;29972:68;29997:15;30014:4;30020:19;:17;:19::i;:::-;29972:24;:68::i;:::-;29967:180;;30060:43;30077:4;30083:19;:17;:19::i;:::-;30060:16;:43::i;:::-;30055:92;;30112:35;;;;;;;;;;;;;;30055:92;29967:180;30178:1;30164:16;;:2;:16;;;30160:52;;30189:23;;;;;;;;;;;;;;30160:52;30225:43;30247:4;30253:2;30257:7;30266:1;30225:21;:43::i;:::-;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;30898:18;:24;30917:4;30898:24;;;;;;;;;;;;;;;;30896:26;;;;;;;;;;;;30967:18;:22;30986:2;30967:22;;;;;;;;;;;;;;;;30965:24;;;;;;;;;;;31289:146;31326:2;31375:45;31390:4;31396:2;31400:19;31375:14;:45::i;:::-;11489:8;31347:73;31289:18;:146::i;:::-;31260:17;:26;31278:7;31260:26;;;;;;;;;;;:175;;;;31606:1;11489:8;31555:19;:47;:52;31551:627;;31628:19;31660:1;31650:7;:11;31628:33;;31817:1;31783:17;:30;31801:11;31783:30;;;;;;;;;;;;:35;31779:384;;31921:13;;31906:11;:28;31902:242;;32101:19;32068:17;:30;32086:11;32068:30;;;;;;;;;;;:52;;;;31902:242;31779:384;31609:569;31551:627;32225:7;32221:2;32206:27;;32215:4;32206:27;;;;;;;;;;;;32244:42;32265:4;32271:2;32275:7;32284:1;32244:20;:42::i;:::-;29600:2694;;;29469:2825;;;:::o;60363:148::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60486:19:::1;60465:18;;:40;;;;;;;;;;;;;;;;;;60363:148:::0;:::o;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;:::-;32390:193;;;:::o;59184:108::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59279:7:::1;59264:12;:22;;;;;;:::i;:::-;;59184:108:::0;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;:::-;20824:52;;20732:152;;;:::o;16274:233::-;16346:7;16387:1;16370:19;;:5;:19;;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;10433:13;16444:18;:25;16463:5;16444:25;;;;;;;;;;;;;;;;:55;16437:62;;16274:233;;;:::o;56198:103::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56263:30:::1;56290:1;56263:18;:30::i;:::-;56198:103::o:0;59588:502::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59649:15:::1;59667:21;59649:39;;59699:18;59735:3;59730:2;59720:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;59699:39;;59749:18;59785:3;59780:2;59770:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;59749:39;;59801:16;59831:42;59823:56;;59887:10;59823:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59799:103;;;59915:16;59945:42;59937:56;;60001:10;59937:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59913:103;;;60035:11;:26;;;;;60050:11;60035:26;60027:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;59638:452;;;;;59588:502::o:0;55547:87::-;55593:7;55620:6;;;;;;;;;;;55613:13;;55547:87;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;57433:38::-;;;;:::o;57476:42::-;;;;:::o;58147:1027::-;58278:1;58266:9;;:13;;;;:::i;:::-;58248:14;58232:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:47;;58224:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;58304:18;58325:37;58347:14;58325:21;:37::i;:::-;58304:58;;58419:14;;58402;58379:20;;:37;;;;:::i;:::-;:54;58375:744;;;58472:9;58458:10;:23;;58450:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58375:744;;;58588:19;;58571:14;58547:21;58557:10;58547:9;:21::i;:::-;:38;;;;:::i;:::-;:60;58543:565;;;58650:9;58636:10;:23;;58628:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58755:16;;58737:14;:34;;58707:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;58543:565;;;58938:19;;58920:14;:37;;58890:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;59078:14;59054:20;;:38;;;;;;;:::i;:::-;;;;;;;;58543:565;58375:744;59129:37;59139:10;59151:14;59129:9;:37::i;:::-;58213:961;58147:1027;:::o;60895:127::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61010:6:::1;60991:16;:25;;;;60895:127:::0;:::o;26388:234::-;26535:8;26483:18;:39;26502:19;:17;:19::i;:::-;26483:39;;;;;;;;;;;;;;;:49;26523:8;26483:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26595:8;26559:55;;26574:19;:17;:19::i;:::-;26559:55;;;26605:8;26559:55;;;;;;:::i;:::-;;;;;;;;26388:234;;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;33420:1;33402:2;:14;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;;;;;;;;;;;;;33436:145;33398:183;33181:407;;;;:::o;57337:38::-;;;;:::o;60094:122::-;60190:13;60094:122;;;:::o;57207:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57299:33::-;;;;:::o;26779:164::-;26876:4;26900:18;:25;26919:5;26900:25;;;;;;;;;;;;;;;:35;26926:8;26900:35;;;;;;;;;;;;;;;;;;;;;;;;;26893:42;;26779:164;;;;:::o;59298:284::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59399:1:::1;59388:8;:12;59372:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;59488:9;;59476:8;59460:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;59444:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;59545:31;59555:10;59567:8;59545:9;:31::i;:::-;59298:284:::0;:::o;56456:201::-;55778:12;:10;:12::i;:::-;55767:23;;:7;:5;:7::i;:::-;:23;;;55759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56565:1:::1;56545:22;;:8;:22;;::::0;56537:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;56621:28;56640:8;56621:18;:28::i;:::-;56456:201:::0;:::o;57693:446::-;57763:7;57799:2;57787:8;:14;57783:349;;57825:11;57818:18;;;;57783:349;57870:2;57858:8;:14;57854:278;;57896:12;57889:19;;;;57854:278;57942:2;57930:8;:14;57926:206;;57968:11;57961:18;;;;57926:206;58013:3;58001:8;:15;57997:135;;58040:12;58033:19;;;;57997:135;58112:8;58092:17;;:28;;;;:::i;:::-;58085:35;;57693:446;;;;:::o;27201:282::-;27266:4;27322:7;27303:15;:13;:15::i;:::-;:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;;27455:1;11209:8;27407:17;:26;27425:7;27407:26;;;;;;;;;;;;:44;:49;27303:153;27283:173;;27201:282;;;:::o;49509:105::-;49569:7;49596:10;49589:17;;49509:105;:::o;54271:98::-;54324:7;54351:10;54344:17;;54271:98;:::o;14606:92::-;14662:7;14606:92;:::o;21887:1275::-;21954:7;21974:12;21989:7;21974:22;;22057:4;22038:15;:13;:15::i;:::-;:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:17;:23;22164:4;22146:23;;;;;;;;;;;;22129:40;;22263:1;11209:8;22235:6;:24;:29;22231:845;;22900:113;22917:1;22907:6;:11;22900:113;;22960:17;:25;22978:6;;;;;;;22960:25;;;;;;;;;;;;22951:34;;22900:113;;;23046:6;23039:13;;;;;;22231:845;22106:989;22080:1015;22034:1061;23123:31;;;;;;;;;;;;;;21887:1275;;;;:::o;28364:485::-;28466:27;28495:23;28536:38;28577:15;:24;28593:7;28577:24;;;;;;;;;;;28536:65;;28754:18;28731:41;;28811:19;28805:26;28786:45;;28716:126;28364:485;;;:::o;27592:659::-;27741:11;27906:16;27899:5;27895:28;27886:37;;28066:16;28055:9;28051:32;28038:45;;28216:15;28205:9;28202:30;28194:5;28183:9;28180:20;28177:56;28167:66;;27592:659;;;;;:::o;34250:159::-;;;;;:::o;48818:311::-;48953:7;48973:16;11613:3;48999:19;:41;;48973:68;;11613:3;49067:31;49078:4;49084:2;49088:9;49067:10;:31::i;:::-;49059:40;;:62;;49052:69;;;48818:311;;;;;:::o;23710:450::-;23790:14;23958:16;23951:5;23947:28;23938:37;;24135:5;24121:11;24096:23;24092:41;24089:52;24082:5;24079:63;24069:73;;23710:450;;;;:::o;35074:158::-;;;;;:::o;56817:191::-;56891:16;56910:6;;;;;;;;;;;56891:25;;56936:8;56927:6;;:17;;;;;;;;;;;;;;;;;;56991:8;56960:40;;56981:8;56960:40;;;;;;;;;;;;56880:128;56817:191;:::o;43341:112::-;43418:27;43428:2;43432:8;43418:27;;;;;;;;;;;;:9;:27::i;:::-;43341:112;;:::o;35672:716::-;35835:4;35881:2;35856:45;;;35902:19;:17;:19::i;:::-;35923:4;35929:7;35938:5;35856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36156:1;36139:6;:13;:18;36135:235;;36185:40;;;;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;36025:54;;;36015:64;;;:6;:64;;;;36008:71;;;35672:716;;;;;;:::o;48519:147::-;48656:6;48519:147;;;;;:::o;42568:689::-;42699:19;42705:2;42709:8;42699:5;:19::i;:::-;42778:1;42760:2;:14;;;:19;42756:483;;42800:11;42814:13;;42800:27;;42846:13;42868:8;42862:3;:14;42846:30;;42895:233;42926:62;42965:1;42969:2;42973:7;;;;;;42982:5;42926:30;:62::i;:::-;42921:167;;43024:40;;;;;;;;;;;;;;42921:167;43123:3;43115:5;:11;42895:233;;43210:3;43193:13;;:20;43189:34;;43215:8;;;43189:34;42781:458;;42756:483;42568:689;;;:::o;36850:2966::-;36923:20;36946:13;;36923:36;;36986:1;36974:8;:13;36970:44;;36996:18;;;;;;;;;;;;;;36970:44;37027:61;37057:1;37061:2;37065:12;37079:8;37027:21;:61::i;:::-;37571:1;10571:2;37541:1;:26;;37540:32;37528:8;:45;37502:18;:22;37521:2;37502:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37850:139;37887:2;37941:33;37964:1;37968:2;37972:1;37941:14;:33::i;:::-;37908:30;37929:8;37908:20;:30::i;:::-;:66;37850:18;:139::i;:::-;37816:17;:31;37834:12;37816:31;;;;;;;;;;;:173;;;;38006:16;38037:11;38066:8;38051:12;:23;38037:37;;38587:16;38583:2;38579:25;38567:37;;38959:12;38919:8;38878:1;38816:25;38757:1;38696;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39415:7;39411:15;39400:26;;39270:346;;;39274:77;39661:1;39649:8;:13;39645:45;;39671:19;;;;;;;;;;;;;;39645:45;39723:3;39707:13;:19;;;;37276:2462;;39748:60;39777:1;39781:2;39785:12;39799:8;39748:20;:60::i;:::-;36912:2904;36850:2966;;:::o;24262:324::-;24332:14;24565:1;24555:8;24552:15;24526:24;24522:46;24512:56;;24262:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:118::-;3030:24;3048:5;3030:24;:::i;:::-;3025:3;3018:37;2943:118;;:::o;3067:222::-;3160:4;3198:2;3187:9;3183:18;3175:26;;3211:71;3279:1;3268:9;3264:17;3255:6;3211:71;:::i;:::-;3067:222;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:116::-;5937:21;5952:5;5937:21;:::i;:::-;5930:5;5927:32;5917:60;;5973:1;5970;5963:12;5917:60;5867:116;:::o;5989:133::-;6032:5;6070:6;6057:20;6048:29;;6086:30;6110:5;6086:30;:::i;:::-;5989:133;;;;:::o;6128:323::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:50;6426:7;6417:6;6406:9;6402:22;6384:50;:::i;:::-;6374:60;;6330:114;6128:323;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:182::-;13072:34;13068:1;13060:6;13056:14;13049:58;12932:182;:::o;13120:366::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:419::-;13658:4;13696:2;13685:9;13681:18;13673:26;;13745:9;13739:4;13735:20;13731:1;13720:9;13716:17;13709:47;13773:131;13899:4;13773:131;:::i;:::-;13765:139;;13492:419;;;:::o;13917:141::-;13966:4;13989:3;13981:11;;14012:3;14009:1;14002:14;14046:4;14043:1;14033:18;14025:26;;13917:141;;;:::o;14064:93::-;14101:6;14148:2;14143;14136:5;14132:14;14128:23;14118:33;;14064:93;;;:::o;14163:107::-;14207:8;14257:5;14251:4;14247:16;14226:37;;14163:107;;;;:::o;14276:393::-;14345:6;14395:1;14383:10;14379:18;14418:97;14448:66;14437:9;14418:97;:::i;:::-;14536:39;14566:8;14555:9;14536:39;:::i;:::-;14524:51;;14608:4;14604:9;14597:5;14593:21;14584:30;;14657:4;14647:8;14643:19;14636:5;14633:30;14623:40;;14352:317;;14276:393;;;;;:::o;14675:60::-;14703:3;14724:5;14717:12;;14675:60;;;:::o;14741:142::-;14791:9;14824:53;14842:34;14851:24;14869:5;14851:24;:::i;:::-;14842:34;:::i;:::-;14824:53;:::i;:::-;14811:66;;14741:142;;;:::o;14889:75::-;14932:3;14953:5;14946:12;;14889:75;;;:::o;14970:269::-;15080:39;15111:7;15080:39;:::i;:::-;15141:91;15190:41;15214:16;15190:41;:::i;:::-;15182:6;15175:4;15169:11;15141:91;:::i;:::-;15135:4;15128:105;15046:193;14970:269;;;:::o;15245:73::-;15290:3;15245:73;:::o;15324:189::-;15401:32;;:::i;:::-;15442:65;15500:6;15492;15486:4;15442:65;:::i;:::-;15377:136;15324:189;;:::o;15519:186::-;15579:120;15596:3;15589:5;15586:14;15579:120;;;15650:39;15687:1;15680:5;15650:39;:::i;:::-;15623:1;15616:5;15612:13;15603:22;;15579:120;;;15519:186;;:::o;15711:543::-;15812:2;15807:3;15804:11;15801:446;;;15846:38;15878:5;15846:38;:::i;:::-;15930:29;15948:10;15930:29;:::i;:::-;15920:8;15916:44;16113:2;16101:10;16098:18;16095:49;;;16134:8;16119:23;;16095:49;16157:80;16213:22;16231:3;16213:22;:::i;:::-;16203:8;16199:37;16186:11;16157:80;:::i;:::-;15816:431;;15801:446;15711:543;;;:::o;16260:117::-;16314:8;16364:5;16358:4;16354:16;16333:37;;16260:117;;;;:::o;16383:169::-;16427:6;16460:51;16508:1;16504:6;16496:5;16493:1;16489:13;16460:51;:::i;:::-;16456:56;16541:4;16535;16531:15;16521:25;;16434:118;16383:169;;;;:::o;16557:295::-;16633:4;16779:29;16804:3;16798:4;16779:29;:::i;:::-;16771:37;;16841:3;16838:1;16834:11;16828:4;16825:21;16817:29;;16557:295;;;;:::o;16857:1395::-;16974:37;17007:3;16974:37;:::i;:::-;17076:18;17068:6;17065:30;17062:56;;;17098:18;;:::i;:::-;17062:56;17142:38;17174:4;17168:11;17142:38;:::i;:::-;17227:67;17287:6;17279;17273:4;17227:67;:::i;:::-;17321:1;17345:4;17332:17;;17377:2;17369:6;17366:14;17394:1;17389:618;;;;18051:1;18068:6;18065:77;;;18117:9;18112:3;18108:19;18102:26;18093:35;;18065:77;18168:67;18228:6;18221:5;18168:67;:::i;:::-;18162:4;18155:81;18024:222;17359:887;;17389:618;17441:4;17437:9;17429:6;17425:22;17475:37;17507:4;17475:37;:::i;:::-;17534:1;17548:208;17562:7;17559:1;17556:14;17548:208;;;17641:9;17636:3;17632:19;17626:26;17618:6;17611:42;17692:1;17684:6;17680:14;17670:24;;17739:2;17728:9;17724:18;17711:31;;17585:4;17582:1;17578:12;17573:17;;17548:208;;;17784:6;17775:7;17772:19;17769:179;;;17842:9;17837:3;17833:19;17827:26;17885:48;17927:4;17919:6;17915:17;17904:9;17885:48;:::i;:::-;17877:6;17870:64;17792:156;17769:179;17994:1;17990;17982:6;17978:14;17974:22;17968:4;17961:36;17396:611;;;17359:887;;16949:1303;;;16857:1395;;:::o;18258:180::-;18306:77;18303:1;18296:88;18403:4;18400:1;18393:15;18427:4;18424:1;18417:15;18444:410;18484:7;18507:20;18525:1;18507:20;:::i;:::-;18502:25;;18541:20;18559:1;18541:20;:::i;:::-;18536:25;;18596:1;18593;18589:9;18618:30;18636:11;18618:30;:::i;:::-;18607:41;;18797:1;18788:7;18784:15;18781:1;18778:22;18758:1;18751:9;18731:83;18708:139;;18827:18;;:::i;:::-;18708:139;18492:362;18444:410;;;;:::o;18860:180::-;18908:77;18905:1;18898:88;19005:4;19002:1;18995:15;19029:4;19026:1;19019:15;19046:185;19086:1;19103:20;19121:1;19103:20;:::i;:::-;19098:25;;19137:20;19155:1;19137:20;:::i;:::-;19132:25;;19176:1;19166:35;;19181:18;;:::i;:::-;19166:35;19223:1;19220;19216:9;19211:14;;19046:185;;;;:::o;19237:147::-;19338:11;19375:3;19360:18;;19237:147;;;;:::o;19390:114::-;;:::o;19510:398::-;19669:3;19690:83;19771:1;19766:3;19690:83;:::i;:::-;19683:90;;19782:93;19871:3;19782:93;:::i;:::-;19900:1;19895:3;19891:11;19884:18;;19510:398;;;:::o;19914:379::-;20098:3;20120:147;20263:3;20120:147;:::i;:::-;20113:154;;20284:3;20277:10;;19914:379;;;:::o;20299:166::-;20439:18;20435:1;20427:6;20423:14;20416:42;20299:166;:::o;20471:366::-;20613:3;20634:67;20698:2;20693:3;20634:67;:::i;:::-;20627:74;;20710:93;20799:3;20710:93;:::i;:::-;20828:2;20823:3;20819:12;20812:19;;20471:366;;;:::o;20843:419::-;21009:4;21047:2;21036:9;21032:18;21024:26;;21096:9;21090:4;21086:20;21082:1;21071:9;21067:17;21060:47;21124:131;21250:4;21124:131;:::i;:::-;21116:139;;20843:419;;;:::o;21268:191::-;21308:3;21327:20;21345:1;21327:20;:::i;:::-;21322:25;;21361:20;21379:1;21361:20;:::i;:::-;21356:25;;21404:1;21401;21397:9;21390:16;;21425:3;21422:1;21419:10;21416:36;;;21432:18;;:::i;:::-;21416:36;21268:191;;;;:::o;21465:157::-;21605:9;21601:1;21593:6;21589:14;21582:33;21465:157;:::o;21628:365::-;21770:3;21791:66;21855:1;21850:3;21791:66;:::i;:::-;21784:73;;21866:93;21955:3;21866:93;:::i;:::-;21984:2;21979:3;21975:12;21968:19;;21628:365;;;:::o;21999:419::-;22165:4;22203:2;22192:9;22188:18;22180:26;;22252:9;22246:4;22242:20;22238:1;22227:9;22223:17;22216:47;22280:131;22406:4;22280:131;:::i;:::-;22272:139;;21999:419;;;:::o;22424:174::-;22564:26;22560:1;22552:6;22548:14;22541:50;22424:174;:::o;22604:366::-;22746:3;22767:67;22831:2;22826:3;22767:67;:::i;:::-;22760:74;;22843:93;22932:3;22843:93;:::i;:::-;22961:2;22956:3;22952:12;22945:19;;22604:366;;;:::o;22976:419::-;23142:4;23180:2;23169:9;23165:18;23157:26;;23229:9;23223:4;23219:20;23215:1;23204:9;23200:17;23193:47;23257:131;23383:4;23257:131;:::i;:::-;23249:139;;22976:419;;;:::o;23401:221::-;23541:34;23537:1;23529:6;23525:14;23518:58;23610:4;23605:2;23597:6;23593:15;23586:29;23401:221;:::o;23628:366::-;23770:3;23791:67;23855:2;23850:3;23791:67;:::i;:::-;23784:74;;23867:93;23956:3;23867:93;:::i;:::-;23985:2;23980:3;23976:12;23969:19;;23628:366;;;:::o;24000:419::-;24166:4;24204:2;24193:9;24189:18;24181:26;;24253:9;24247:4;24243:20;24239:1;24228:9;24224:17;24217:47;24281:131;24407:4;24281:131;:::i;:::-;24273:139;;24000:419;;;:::o;24425:169::-;24565:21;24561:1;24553:6;24549:14;24542:45;24425:169;:::o;24600:366::-;24742:3;24763:67;24827:2;24822:3;24763:67;:::i;:::-;24756:74;;24839:93;24928:3;24839:93;:::i;:::-;24957:2;24952:3;24948:12;24941:19;;24600:366;;;:::o;24972:419::-;25138:4;25176:2;25165:9;25161:18;25153:26;;25225:9;25219:4;25215:20;25211:1;25200:9;25196:17;25189:47;25253:131;25379:4;25253:131;:::i;:::-;25245:139;;24972:419;;;:::o;25397:173::-;25537:25;25533:1;25525:6;25521:14;25514:49;25397:173;:::o;25576:366::-;25718:3;25739:67;25803:2;25798:3;25739:67;:::i;:::-;25732:74;;25815:93;25904:3;25815:93;:::i;:::-;25933:2;25928:3;25924:12;25917:19;;25576:366;;;:::o;25948:419::-;26114:4;26152:2;26141:9;26137:18;26129:26;;26201:9;26195:4;26191:20;26187:1;26176:9;26172:17;26165:47;26229:131;26355:4;26229:131;:::i;:::-;26221:139;;25948:419;;;:::o;26373:225::-;26513:34;26509:1;26501:6;26497:14;26490:58;26582:8;26577:2;26569:6;26565:15;26558:33;26373:225;:::o;26604:366::-;26746:3;26767:67;26831:2;26826:3;26767:67;:::i;:::-;26760:74;;26843:93;26932:3;26843:93;:::i;:::-;26961:2;26956:3;26952:12;26945:19;;26604:366;;;:::o;26976:419::-;27142:4;27180:2;27169:9;27165:18;27157:26;;27229:9;27223:4;27219:20;27215:1;27204:9;27200:17;27193:47;27257:131;27383:4;27257:131;:::i;:::-;27249:139;;26976:419;;;:::o;27401:98::-;27452:6;27486:5;27480:12;27470:22;;27401:98;;;:::o;27505:168::-;27588:11;27622:6;27617:3;27610:19;27662:4;27657:3;27653:14;27638:29;;27505:168;;;;:::o;27679:373::-;27765:3;27793:38;27825:5;27793:38;:::i;:::-;27847:70;27910:6;27905:3;27847:70;:::i;:::-;27840:77;;27926:65;27984:6;27979:3;27972:4;27965:5;27961:16;27926:65;:::i;:::-;28016:29;28038:6;28016:29;:::i;:::-;28011:3;28007:39;28000:46;;27769:283;27679:373;;;;:::o;28058:640::-;28253:4;28291:3;28280:9;28276:19;28268:27;;28305:71;28373:1;28362:9;28358:17;28349:6;28305:71;:::i;:::-;28386:72;28454:2;28443:9;28439:18;28430:6;28386:72;:::i;:::-;28468;28536:2;28525:9;28521:18;28512:6;28468:72;:::i;:::-;28587:9;28581:4;28577:20;28572:2;28561:9;28557:18;28550:48;28615:76;28686:4;28677:6;28615:76;:::i;:::-;28607:84;;28058:640;;;;;;;:::o;28704:141::-;28760:5;28791:6;28785:13;28776:22;;28807:32;28833:5;28807:32;:::i;:::-;28704:141;;;;:::o;28851:349::-;28920:6;28969:2;28957:9;28948:7;28944:23;28940:32;28937:119;;;28975:79;;:::i;:::-;28937:119;29095:1;29120:63;29175:7;29166:6;29155:9;29151:22;29120:63;:::i;:::-;29110:73;;29066:127;28851:349;;;;:::o

Swarm Source

ipfs://9211f0eca84f9e1b1362dfa47c6608488e61e541567833f2d92425da46a195da
Loading...
Loading
Loading...
Loading
[ 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.