ETH Price: $3,442.75 (-1.09%)
Gas: 11 Gwei

Space Pass (SpacePass)
 

Overview

TokenID

147

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

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-11
*/

// SPDX-License-Identifier: MIT

//    _____                      _____              
//   / ____|                    |  __ \             
//  | (___  _ __   __ _  ___ ___| |__) |_ _ ___ ___ 
//   \___ \| '_ \ / _` |/ __/ _ \  ___/ _` / __/ __|
//   ____) | |_) | (_| | (_|  __/ |  | (_| \__ \__ \
//  |_____/| .__/ \__,_|\___\___|_|   \__,_|___/___/
//         | |                                      
//         |_|                                      
// @author PlaguedLabs ([email protected])

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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: spacepass.sol


pragma solidity >=0.7.0 <0.9.0;




//    _____                      _____              
//   / ____|                    |  __ \             
//  | (___  _ __   __ _  ___ ___| |__) |_ _ ___ ___ 
//   \___ \| '_ \ / _` |/ __/ _ \  ___/ _` / __/ __|
//   ____) | |_) | (_| | (_|  __/ |  | (_| \__ \__ \
//  |_____/| .__/ \__,_|\___\___|_|   \__,_|___/___/
//         | |                                      
//         |_|                                      
/// @author PlaguedLabs ([email protected])

struct PresaleConfig {
  uint32 startTime;
  uint32 endTime;
  uint256 whitelistMaxSupply;
  uint256 whitelistPrice;
}

contract SpacePass is ERC721A, Ownable {

    /// ERRORS ///
    error ContractMint();
    error OutOfSupply();
    error ExceedsTxnLimit();
    error ExceedsWalletLimit();
    error InsufficientFunds();
    
    error MintPaused();
    error MintInactive();
    error InvalidProof();

    bytes32 public merkleRoot;

    string public baseURI;
    
    uint32 publicSaleStartTime;

    uint256 public PRICE = 0.01 ether;
    uint256 public SUPPLY_MAX = 555;

    PresaleConfig public presaleConfig;

    bool public presalePaused;
    bool public publicSalePaused;
    bool public revealed;

    mapping(address => bool) public publicWalletMinted;

    constructor() ERC721A("Space Pass", "SpacePass") payable {
        presaleConfig = PresaleConfig({
            startTime: 1654981200, // JULY 11 5:00:00 PM EST
            endTime: 1654983000,   // JULY 11 5:30:00 PM EST
            whitelistMaxSupply: 107,
            whitelistPrice: 0.005 ether
        });
        publicSaleStartTime = 1654983300; // July 11 5:35:00 PM EST
    }

    modifier mintCompliance() {
        if (msg.sender != tx.origin) revert ContractMint();
        if ((totalSupply() + 1) > SUPPLY_MAX) revert OutOfSupply();
        _;
    }

    function presaleMint(bytes32[] calldata _merkleProof)
        external
        payable
        mintCompliance 
    {
        PresaleConfig memory config_ = presaleConfig;
        
        if (presalePaused) revert MintPaused();
        unchecked {
            if (block.timestamp < config_.startTime || block.timestamp > config_.endTime) revert MintInactive();
            if ((totalSupply() + 1) > config_.whitelistMaxSupply) revert OutOfSupply();
            if (_numberMinted(msg.sender) > 0) revert ExceedsWalletLimit();
            if (msg.value < config_.whitelistPrice) revert InsufficientFunds();
        }
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf)) revert InvalidProof();

        _mint(msg.sender, 1);
    }

    function publicMint()
        external
        payable
        mintCompliance
    {
        if (publicSalePaused) revert MintPaused();
        if (publicWalletMinted[msg.sender]) revert ExceedsWalletLimit();
        unchecked {
            if (block.timestamp < publicSaleStartTime) revert MintInactive();
            if (msg.value < PRICE) revert InsufficientFunds();
        }
        publicWalletMinted[msg.sender] = true;

        _mint(msg.sender, 1);
    }
    
    /// @notice Airdrop for a single wallet.
    function mintForAddress(uint256 _mintAmount, address _receiver) external onlyOwner {
        _mint(_receiver, _mintAmount);
    }

    /// @notice Airdrops to multiple wallets.
    function batchMintForAddress(address[] calldata addresses, uint256[] calldata quantities) external onlyOwner {
        uint32 i;
        for (i=0; i < addresses.length; ++i) {
            _mint(addresses[i], quantities[i]);
        }
    }

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

    function setRevealed() public onlyOwner {
        revealed = true;
    }

    function pausePublicSale(bool _state) public onlyOwner {
        publicSalePaused = _state;
    }

    function pausePresale(bool _state) public onlyOwner {
        presalePaused = _state;
    }

    function setPublicSaleStartTime(uint32 startTime_) public onlyOwner {
        publicSaleStartTime = startTime_;
    }

    function setPresaleStartTime(uint32 startTime_, uint32 endTime_) public onlyOwner {
        presaleConfig.startTime = startTime_;
        presaleConfig.endTime = endTime_;
    }

    function setMerkleRoot(bytes32 merkleRoot_) public onlyOwner {
        merkleRoot = merkleRoot_;
    }

    function setPublicPrice(uint256 _price) public onlyOwner {
        PRICE = _price;
    }

    function setWhitelistPrice(uint256 _price) public onlyOwner {
        presaleConfig.whitelistPrice = _price;
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    /// METADATA URI ///

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

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

    /// @dev Returning concatenated URI with .json as suffix on the tokenID when revealed.
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(_baseURI(), "spacecalls.json"));
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsTxnLimit","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"MintInactive","type":"error"},{"inputs":[],"name":"MintPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OutOfSupply","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint256","name":"whitelistMaxSupply","type":"uint256"},{"internalType":"uint256","name":"whitelistPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicWalletMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"},{"internalType":"uint32","name":"endTime_","type":"uint32"}],"name":"setPresaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

662386f26fc10000600c5561022b600d55600a6080818152695370616365205061737360b01b60a0908152610100604052600960c09081526853706163655061737360b81b60e0529192620000579160029162000143565b5080516200006d90600390602084019062000143565b50506001600055506200008033620000f1565b604080516080810182526362a5025081526362a509586020820152606b9181018290526611c37937e080006060909101819052600e80546762a5095862a502506001600160401b0319909116179055600f91909155601055600b805463ffffffff19166362a50a8417905562000226565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015190620001e9565b90600052602060002090601f016020900481019282620001755760008555620001c0565b82601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b600181811c90821680620001fe57607f821691505b602082108114156200022057634e487b7160e01b600052602260045260246000fd5b50919050565b61237680620002366000396000f3fe6080604052600436106102bb5760003560e01c8063717d57d31161016e578063b88d4fde116100cb578063e985e9c51161007f578063efbd73f411610064578063efbd73f41461074e578063f2fde38b1461076e578063fd88fa691461078e57600080fd5b8063e985e9c5146106f2578063edc0c72c1461073b57600080fd5b8063c87b56dd116100b0578063c87b56dd14610692578063d7299ef7146106b2578063de30dd34146106d257600080fd5b8063b88d4fde14610652578063c62752551461067257600080fd5b80638fa0cf101161012257806395d89b411161010757806395d89b4114610603578063a22cb46514610618578063a79fdbb41461063857600080fd5b80638fa0cf10146105bd578063958f6ed6146105ed57600080fd5b80637cb64759116101535780637cb64759146105695780638d859f3e146105895780638da5cb5b1461059f57600080fd5b8063717d57d3146105295780637590485f1461054957600080fd5b80633ccfd60b1161021c5780635fd84c28116101d05780636c0360eb116101b55780636c0360eb146104df57806370a08231146104f4578063715018a61461051457600080fd5b80635fd84c281461049f5780636352211e146104bf57600080fd5b80635183022711610201578063518302271461043f57806355f804b31461045f5780635c164b211461047f57600080fd5b80633ccfd60b1461040a57806342842e0e1461041f57600080fd5b806318160ddd1161027357806326092b831161025857806326092b83146103d75780632eb4a7ab146103df5780633bd64968146103f557600080fd5b806318160ddd1461039057806323b872dd146103b757600080fd5b806306fdde03116102a457806306fdde0314610314578063081812fc14610336578063095ea7b31461036e57600080fd5b806301ffc9a7146102c0578063069cd573146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612063565b6107e7565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b506011546102e090610100900460ff1681565b34801561032057600080fd5b50610329610884565b6040516102ec91906121f7565b34801561034257600080fd5b5061035661035136600461204a565b610916565b6040516001600160a01b0390911681526020016102ec565b34801561037a57600080fd5b5061038e610389366004611f57565b610973565b005b34801561039c57600080fd5b5060015460005403600019015b6040519081526020016102ec565b3480156103c357600080fd5b5061038e6103d2366004611e75565b610a85565b61038e610a95565b3480156103eb57600080fd5b506103a960095481565b34801561040157600080fd5b5061038e610bbc565b34801561041657600080fd5b5061038e610c1c565b34801561042b57600080fd5b5061038e61043a366004611e75565b610ca0565b34801561044b57600080fd5b506011546102e09062010000900460ff1681565b34801561046b57600080fd5b5061038e61047a36600461209d565b610cbb565b34801561048b57600080fd5b5061038e61049a366004612124565b610d1a565b3480156104ab57600080fd5b5061038e6104ba366004612109565b610d92565b3480156104cb57600080fd5b506103566104da36600461204a565b610df6565b3480156104eb57600080fd5b50610329610e01565b34801561050057600080fd5b506103a961050f366004611e27565b610e8f565b34801561052057600080fd5b5061038e610ef7565b34801561053557600080fd5b5061038e61054436600461204a565b610f49565b34801561055557600080fd5b5061038e61056436600461202f565b610f96565b34801561057557600080fd5b5061038e61058436600461204a565b610ff8565b34801561059557600080fd5b506103a9600c5481565b3480156105ab57600080fd5b506008546001600160a01b0316610356565b3480156105c957600080fd5b506102e06105d8366004611e27565b60126020526000908152604090205460ff1681565b3480156105f957600080fd5b506103a9600d5481565b34801561060f57600080fd5b50610329611045565b34801561062457600080fd5b5061038e610633366004611f2d565b611054565b34801561064457600080fd5b506011546102e09060ff1681565b34801561065e57600080fd5b5061038e61066d366004611eb1565b611103565b34801561067e57600080fd5b5061038e61068d36600461204a565b61114d565b34801561069e57600080fd5b506103296106ad36600461204a565b61119a565b3480156106be57600080fd5b5061038e6106cd36600461202f565b611245565b3480156106de57600080fd5b5061038e6106ed366004611f81565b6112a0565b3480156106fe57600080fd5b506102e061070d366004611e42565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61038e610749366004611fed565b611364565b34801561075a57600080fd5b5061038e6107693660046120e6565b61159b565b34801561077a57600080fd5b5061038e610789366004611e27565b6115ed565b34801561079a57600080fd5b50600e54600f546010546107bf9263ffffffff80821693640100000000909204169184565b6040805163ffffffff95861681529490931660208501529183015260608201526080016102ec565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061084a57507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061087e57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546108939061224e565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf9061224e565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000610921826116ba565b610957576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061097e826116ef565b9050806001600160a01b0316836001600160a01b031614156109cc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610a1c576109e6813361070d565b610a1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a90838383611778565b505050565b333214610ab5576040516372f67c2360e01b815260040160405180910390fd5b600d546001546000540360001901610ace90600161220a565b1115610aed576040516309b741cf60e41b815260040160405180910390fd5b601154610100900460ff1615610b1657604051636be9245d60e11b815260040160405180910390fd5b3360009081526012602052604090205460ff1615610b4757604051635107dbe760e01b815260040160405180910390fd5b600b5463ffffffff16421015610b7057604051630d0ca57160e21b815260040160405180910390fd5b600c54341015610b935760405163356680b760e01b815260040160405180910390fd5b336000818152601260205260409020805460ff19166001908117909155610bba919061198b565b565b6008546001600160a01b03163314610c095760405162461bcd60e51b8152602060048201819052602482015260008051602061232183398151915260448201526064015b60405180910390fd5b6011805462ff0000191662010000179055565b6008546001600160a01b03163314610c645760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c9d573d6000803e3d6000fd5b50565b610a9083838360405180602001604052806000815250611103565b6008546001600160a01b03163314610d035760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b8051610d1690600a906020840190611c8c565b5050565b6008546001600160a01b03163314610d625760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600e805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6008546001600160a01b03163314610dda5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600b805463ffffffff191663ffffffff92909216919091179055565b600061087e826116ef565b600a8054610e0e9061224e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a9061224e565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b60006001600160a01b038216610ed1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f3f5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b610bba6000611a9c565b6008546001600160a01b03163314610f915760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b601055565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146110405760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600955565b6060600380546108939061224e565b6001600160a01b038216331415611097576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110e848484611778565b6001600160a01b0383163b156111475761112a84848484611afb565b611147576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111955760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600c55565b60606111a5826116ba565b6112175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c00565b61121f611bf3565b60405160200161122f919061217a565b6040516020818303038152906040529050919050565b6008546001600160a01b0316331461128d5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b6011805460ff1916911515919091179055565b6008546001600160a01b031633146112e85760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b60005b63ffffffff811684111561135d5761134d85858363ffffffff16818110611314576113146122de565b90506020020160208101906113299190611e27565b84848463ffffffff16818110611341576113416122de565b9050602002013561198b565b611356816122a4565b90506112eb565b5050505050565b333214611384576040516372f67c2360e01b815260040160405180910390fd5b600d54600154600054036000190161139d90600161220a565b11156113bc576040516309b741cf60e41b815260040160405180910390fd5b60408051608081018252600e5463ffffffff8082168352640100000000909104166020820152600f5491810191909152601054606082015260115460ff161561141857604051636be9245d60e11b815260040160405180910390fd5b805163ffffffff164210806114365750806020015163ffffffff1642115b1561145457604051630d0ca57160e21b815260040160405180910390fd5b604081015160015460005403111561147f576040516309b741cf60e41b815260040160405180910390fd5b336000908152600560205260408082205467ffffffffffffffff911c1611156114bb57604051635107dbe760e01b815260040160405180910390fd5b80606001513410156114e05760405163356680b760e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061155a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611c02565b611590576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61114733600161198b565b6008546001600160a01b031633146115e35760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b610d16818361198b565b6008546001600160a01b031633146116355760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b6001600160a01b0381166116b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c00565b610c9d81611a9c565b6000816001111580156116ce575060005482105b801561087e575050600090815260046020526040902054600160e01b161590565b600081806001116117465760005481101561174657600081815260046020526040902054600160e01b8116611744575b8061173d57506000190160008181526004602052604090205461171f565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611783826116ef565b9050836001600160a01b0316816001600160a01b0316146117d0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806117ee57506117ee853361070d565b806118095750336117fe84610916565b6001600160a01b0316145b905080611842576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611882576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b86178117909155821661194557600183016000818152600460205260409020546119435760005481146119435760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461135d565b6000546001600160a01b0383166119ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611a05576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a505750600055505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b309033908990889088906004016121bb565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b7791810190612080565b60015b611bd5573d808015611ba8576040519150601f19603f3d011682016040523d82523d6000602084013e611bad565b606091505b508051611bcd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546108939061224e565b600082611c0f8584611c18565b14949350505050565b600081815b8451811015611c84576000858281518110611c3a57611c3a6122de565b60200260200101519050808311611c605760008381526020829052604090209250611c71565b600081815260208490526040902092505b5080611c7c81612289565b915050611c1d565b509392505050565b828054611c989061224e565b90600052602060002090601f016020900481019282611cba5760008555611d00565b82601f10611cd357805160ff1916838001178555611d00565b82800160010185558215611d00579182015b82811115611d00578251825591602001919060010190611ce5565b50611d0c929150611d10565b5090565b5b80821115611d0c5760008155600101611d11565b600067ffffffffffffffff80841115611d4057611d406122f4565b604051601f8501601f19908116603f01168101908282118183101715611d6857611d686122f4565b81604052809350858152868686011115611d8157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611db257600080fd5b919050565b60008083601f840112611dc957600080fd5b50813567ffffffffffffffff811115611de157600080fd5b6020830191508360208260051b8501011115611dfc57600080fd5b9250929050565b80358015158114611db257600080fd5b803563ffffffff81168114611db257600080fd5b600060208284031215611e3957600080fd5b61173d82611d9b565b60008060408385031215611e5557600080fd5b611e5e83611d9b565b9150611e6c60208401611d9b565b90509250929050565b600080600060608486031215611e8a57600080fd5b611e9384611d9b565b9250611ea160208501611d9b565b9150604084013590509250925092565b60008060008060808587031215611ec757600080fd5b611ed085611d9b565b9350611ede60208601611d9b565b925060408501359150606085013567ffffffffffffffff811115611f0157600080fd5b8501601f81018713611f1257600080fd5b611f2187823560208401611d25565b91505092959194509250565b60008060408385031215611f4057600080fd5b611f4983611d9b565b9150611e6c60208401611e03565b60008060408385031215611f6a57600080fd5b611f7383611d9b565b946020939093013593505050565b60008060008060408587031215611f9757600080fd5b843567ffffffffffffffff80821115611faf57600080fd5b611fbb88838901611db7565b90965094506020870135915080821115611fd457600080fd5b50611fe187828801611db7565b95989497509550505050565b6000806020838503121561200057600080fd5b823567ffffffffffffffff81111561201757600080fd5b61202385828601611db7565b90969095509350505050565b60006020828403121561204157600080fd5b61173d82611e03565b60006020828403121561205c57600080fd5b5035919050565b60006020828403121561207557600080fd5b813561173d8161230a565b60006020828403121561209257600080fd5b815161173d8161230a565b6000602082840312156120af57600080fd5b813567ffffffffffffffff8111156120c657600080fd5b8201601f810184136120d757600080fd5b611beb84823560208401611d25565b600080604083850312156120f957600080fd5b82359150611e6c60208401611d9b565b60006020828403121561211b57600080fd5b61173d82611e13565b6000806040838503121561213757600080fd5b61214083611e13565b9150611e6c60208401611e13565b60008151808452612166816020860160208601612222565b601f01601f19169290920160200192915050565b6000825161218c818460208701612222565b7f737061636563616c6c732e6a736f6e0000000000000000000000000000000000920191825250600f01919050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121ed608083018461214e565b9695505050505050565b60208152600061173d602083018461214e565b6000821982111561221d5761221d6122c8565b500190565b60005b8381101561223d578181015183820152602001612225565b838111156111475750506000910152565b600181811c9082168061226257607f821691505b6020821081141561228357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229d5761229d6122c8565b5060010190565b600063ffffffff808316818114156122be576122be6122c8565b6001019392505050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122091a31d6668d4ce7df147076f64ef8b660ae83a7b7ffda618eec3cc5944e7a01664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102bb5760003560e01c8063717d57d31161016e578063b88d4fde116100cb578063e985e9c51161007f578063efbd73f411610064578063efbd73f41461074e578063f2fde38b1461076e578063fd88fa691461078e57600080fd5b8063e985e9c5146106f2578063edc0c72c1461073b57600080fd5b8063c87b56dd116100b0578063c87b56dd14610692578063d7299ef7146106b2578063de30dd34146106d257600080fd5b8063b88d4fde14610652578063c62752551461067257600080fd5b80638fa0cf101161012257806395d89b411161010757806395d89b4114610603578063a22cb46514610618578063a79fdbb41461063857600080fd5b80638fa0cf10146105bd578063958f6ed6146105ed57600080fd5b80637cb64759116101535780637cb64759146105695780638d859f3e146105895780638da5cb5b1461059f57600080fd5b8063717d57d3146105295780637590485f1461054957600080fd5b80633ccfd60b1161021c5780635fd84c28116101d05780636c0360eb116101b55780636c0360eb146104df57806370a08231146104f4578063715018a61461051457600080fd5b80635fd84c281461049f5780636352211e146104bf57600080fd5b80635183022711610201578063518302271461043f57806355f804b31461045f5780635c164b211461047f57600080fd5b80633ccfd60b1461040a57806342842e0e1461041f57600080fd5b806318160ddd1161027357806326092b831161025857806326092b83146103d75780632eb4a7ab146103df5780633bd64968146103f557600080fd5b806318160ddd1461039057806323b872dd146103b757600080fd5b806306fdde03116102a457806306fdde0314610314578063081812fc14610336578063095ea7b31461036e57600080fd5b806301ffc9a7146102c0578063069cd573146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612063565b6107e7565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b506011546102e090610100900460ff1681565b34801561032057600080fd5b50610329610884565b6040516102ec91906121f7565b34801561034257600080fd5b5061035661035136600461204a565b610916565b6040516001600160a01b0390911681526020016102ec565b34801561037a57600080fd5b5061038e610389366004611f57565b610973565b005b34801561039c57600080fd5b5060015460005403600019015b6040519081526020016102ec565b3480156103c357600080fd5b5061038e6103d2366004611e75565b610a85565b61038e610a95565b3480156103eb57600080fd5b506103a960095481565b34801561040157600080fd5b5061038e610bbc565b34801561041657600080fd5b5061038e610c1c565b34801561042b57600080fd5b5061038e61043a366004611e75565b610ca0565b34801561044b57600080fd5b506011546102e09062010000900460ff1681565b34801561046b57600080fd5b5061038e61047a36600461209d565b610cbb565b34801561048b57600080fd5b5061038e61049a366004612124565b610d1a565b3480156104ab57600080fd5b5061038e6104ba366004612109565b610d92565b3480156104cb57600080fd5b506103566104da36600461204a565b610df6565b3480156104eb57600080fd5b50610329610e01565b34801561050057600080fd5b506103a961050f366004611e27565b610e8f565b34801561052057600080fd5b5061038e610ef7565b34801561053557600080fd5b5061038e61054436600461204a565b610f49565b34801561055557600080fd5b5061038e61056436600461202f565b610f96565b34801561057557600080fd5b5061038e61058436600461204a565b610ff8565b34801561059557600080fd5b506103a9600c5481565b3480156105ab57600080fd5b506008546001600160a01b0316610356565b3480156105c957600080fd5b506102e06105d8366004611e27565b60126020526000908152604090205460ff1681565b3480156105f957600080fd5b506103a9600d5481565b34801561060f57600080fd5b50610329611045565b34801561062457600080fd5b5061038e610633366004611f2d565b611054565b34801561064457600080fd5b506011546102e09060ff1681565b34801561065e57600080fd5b5061038e61066d366004611eb1565b611103565b34801561067e57600080fd5b5061038e61068d36600461204a565b61114d565b34801561069e57600080fd5b506103296106ad36600461204a565b61119a565b3480156106be57600080fd5b5061038e6106cd36600461202f565b611245565b3480156106de57600080fd5b5061038e6106ed366004611f81565b6112a0565b3480156106fe57600080fd5b506102e061070d366004611e42565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61038e610749366004611fed565b611364565b34801561075a57600080fd5b5061038e6107693660046120e6565b61159b565b34801561077a57600080fd5b5061038e610789366004611e27565b6115ed565b34801561079a57600080fd5b50600e54600f546010546107bf9263ffffffff80821693640100000000909204169184565b6040805163ffffffff95861681529490931660208501529183015260608201526080016102ec565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061084a57507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061087e57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546108939061224e565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf9061224e565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000610921826116ba565b610957576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061097e826116ef565b9050806001600160a01b0316836001600160a01b031614156109cc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610a1c576109e6813361070d565b610a1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a90838383611778565b505050565b333214610ab5576040516372f67c2360e01b815260040160405180910390fd5b600d546001546000540360001901610ace90600161220a565b1115610aed576040516309b741cf60e41b815260040160405180910390fd5b601154610100900460ff1615610b1657604051636be9245d60e11b815260040160405180910390fd5b3360009081526012602052604090205460ff1615610b4757604051635107dbe760e01b815260040160405180910390fd5b600b5463ffffffff16421015610b7057604051630d0ca57160e21b815260040160405180910390fd5b600c54341015610b935760405163356680b760e01b815260040160405180910390fd5b336000818152601260205260409020805460ff19166001908117909155610bba919061198b565b565b6008546001600160a01b03163314610c095760405162461bcd60e51b8152602060048201819052602482015260008051602061232183398151915260448201526064015b60405180910390fd5b6011805462ff0000191662010000179055565b6008546001600160a01b03163314610c645760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c9d573d6000803e3d6000fd5b50565b610a9083838360405180602001604052806000815250611103565b6008546001600160a01b03163314610d035760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b8051610d1690600a906020840190611c8c565b5050565b6008546001600160a01b03163314610d625760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600e805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6008546001600160a01b03163314610dda5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600b805463ffffffff191663ffffffff92909216919091179055565b600061087e826116ef565b600a8054610e0e9061224e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a9061224e565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b60006001600160a01b038216610ed1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f3f5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b610bba6000611a9c565b6008546001600160a01b03163314610f915760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b601055565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146110405760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600955565b6060600380546108939061224e565b6001600160a01b038216331415611097576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110e848484611778565b6001600160a01b0383163b156111475761112a84848484611afb565b611147576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111955760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b600c55565b60606111a5826116ba565b6112175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c00565b61121f611bf3565b60405160200161122f919061217a565b6040516020818303038152906040529050919050565b6008546001600160a01b0316331461128d5760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b6011805460ff1916911515919091179055565b6008546001600160a01b031633146112e85760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b60005b63ffffffff811684111561135d5761134d85858363ffffffff16818110611314576113146122de565b90506020020160208101906113299190611e27565b84848463ffffffff16818110611341576113416122de565b9050602002013561198b565b611356816122a4565b90506112eb565b5050505050565b333214611384576040516372f67c2360e01b815260040160405180910390fd5b600d54600154600054036000190161139d90600161220a565b11156113bc576040516309b741cf60e41b815260040160405180910390fd5b60408051608081018252600e5463ffffffff8082168352640100000000909104166020820152600f5491810191909152601054606082015260115460ff161561141857604051636be9245d60e11b815260040160405180910390fd5b805163ffffffff164210806114365750806020015163ffffffff1642115b1561145457604051630d0ca57160e21b815260040160405180910390fd5b604081015160015460005403111561147f576040516309b741cf60e41b815260040160405180910390fd5b336000908152600560205260408082205467ffffffffffffffff911c1611156114bb57604051635107dbe760e01b815260040160405180910390fd5b80606001513410156114e05760405163356680b760e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061155a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611c02565b611590576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61114733600161198b565b6008546001600160a01b031633146115e35760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b610d16818361198b565b6008546001600160a01b031633146116355760405162461bcd60e51b815260206004820181905260248201526000805160206123218339815191526044820152606401610c00565b6001600160a01b0381166116b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c00565b610c9d81611a9c565b6000816001111580156116ce575060005482105b801561087e575050600090815260046020526040902054600160e01b161590565b600081806001116117465760005481101561174657600081815260046020526040902054600160e01b8116611744575b8061173d57506000190160008181526004602052604090205461171f565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611783826116ef565b9050836001600160a01b0316816001600160a01b0316146117d0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806117ee57506117ee853361070d565b806118095750336117fe84610916565b6001600160a01b0316145b905080611842576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611882576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b86178117909155821661194557600183016000818152600460205260409020546119435760005481146119435760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461135d565b6000546001600160a01b0383166119ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611a05576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a505750600055505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b309033908990889088906004016121bb565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b7791810190612080565b60015b611bd5573d808015611ba8576040519150601f19603f3d011682016040523d82523d6000602084013e611bad565b606091505b508051611bcd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546108939061224e565b600082611c0f8584611c18565b14949350505050565b600081815b8451811015611c84576000858281518110611c3a57611c3a6122de565b60200260200101519050808311611c605760008381526020829052604090209250611c71565b600081815260208490526040902092505b5080611c7c81612289565b915050611c1d565b509392505050565b828054611c989061224e565b90600052602060002090601f016020900481019282611cba5760008555611d00565b82601f10611cd357805160ff1916838001178555611d00565b82800160010185558215611d00579182015b82811115611d00578251825591602001919060010190611ce5565b50611d0c929150611d10565b5090565b5b80821115611d0c5760008155600101611d11565b600067ffffffffffffffff80841115611d4057611d406122f4565b604051601f8501601f19908116603f01168101908282118183101715611d6857611d686122f4565b81604052809350858152868686011115611d8157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611db257600080fd5b919050565b60008083601f840112611dc957600080fd5b50813567ffffffffffffffff811115611de157600080fd5b6020830191508360208260051b8501011115611dfc57600080fd5b9250929050565b80358015158114611db257600080fd5b803563ffffffff81168114611db257600080fd5b600060208284031215611e3957600080fd5b61173d82611d9b565b60008060408385031215611e5557600080fd5b611e5e83611d9b565b9150611e6c60208401611d9b565b90509250929050565b600080600060608486031215611e8a57600080fd5b611e9384611d9b565b9250611ea160208501611d9b565b9150604084013590509250925092565b60008060008060808587031215611ec757600080fd5b611ed085611d9b565b9350611ede60208601611d9b565b925060408501359150606085013567ffffffffffffffff811115611f0157600080fd5b8501601f81018713611f1257600080fd5b611f2187823560208401611d25565b91505092959194509250565b60008060408385031215611f4057600080fd5b611f4983611d9b565b9150611e6c60208401611e03565b60008060408385031215611f6a57600080fd5b611f7383611d9b565b946020939093013593505050565b60008060008060408587031215611f9757600080fd5b843567ffffffffffffffff80821115611faf57600080fd5b611fbb88838901611db7565b90965094506020870135915080821115611fd457600080fd5b50611fe187828801611db7565b95989497509550505050565b6000806020838503121561200057600080fd5b823567ffffffffffffffff81111561201757600080fd5b61202385828601611db7565b90969095509350505050565b60006020828403121561204157600080fd5b61173d82611e03565b60006020828403121561205c57600080fd5b5035919050565b60006020828403121561207557600080fd5b813561173d8161230a565b60006020828403121561209257600080fd5b815161173d8161230a565b6000602082840312156120af57600080fd5b813567ffffffffffffffff8111156120c657600080fd5b8201601f810184136120d757600080fd5b611beb84823560208401611d25565b600080604083850312156120f957600080fd5b82359150611e6c60208401611d9b565b60006020828403121561211b57600080fd5b61173d82611e13565b6000806040838503121561213757600080fd5b61214083611e13565b9150611e6c60208401611e13565b60008151808452612166816020860160208601612222565b601f01601f19169290920160200192915050565b6000825161218c818460208701612222565b7f737061636563616c6c732e6a736f6e0000000000000000000000000000000000920191825250600f01919050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121ed608083018461214e565b9695505050505050565b60208152600061173d602083018461214e565b6000821982111561221d5761221d6122c8565b500190565b60005b8381101561223d578181015183820152602001612225565b838111156111475750506000910152565b600181811c9082168061226257607f821691505b6020821081141561228357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229d5761229d6122c8565b5060010190565b600063ffffffff808316818114156122be576122be6122c8565b6001019392505050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122091a31d6668d4ce7df147076f64ef8b660ae83a7b7ffda618eec3cc5944e7a01664736f6c63430008070033

Deployed Bytecode Sourcemap

45651:5021:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13590:615;;;;;;;;;;-1:-1:-1;13590:615:0;;;;;:::i;:::-;;:::i;:::-;;;8844:14:1;;8837:22;8819:41;;8807:2;8792:18;13590:615:0;;;;;;;;46212:28;;;;;;;;;;-1:-1:-1;46212:28:0;;;;;;;;;;;18603:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20671:204::-;;;;;;;;;;-1:-1:-1;20671:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8096:55:1;;;8078:74;;8066:2;8051:18;20671:204:0;7932:226:1;20131:474:0;;;;;;;;;;-1:-1:-1;20131:474:0;;;;;:::i;:::-;;:::i;:::-;;12644:315;;;;;;;;;;-1:-1:-1;48863:1:0;12910:12;12697:7;12894:13;:28;-1:-1:-1;;12894:46:0;12644:315;;;9017:25:1;;;9005:2;8990:18;12644:315:0;8871:177:1;21557:170:0;;;;;;;;;;-1:-1:-1;21557:170:0;;;;;:::i;:::-;;:::i;47757:476::-;;;:::i;45954:25::-;;;;;;;;;;;;;;;;48880:74;;;;;;;;;;;;;:::i;49819:104::-;;;;;;;;;;;;;:::i;21798:185::-;;;;;;;;;;-1:-1:-1;21798:185:0;;;;;:::i;:::-;;:::i;46247:20::-;;;;;;;;;;-1:-1:-1;46247:20:0;;;;;;;;;;;50118:104;;;;;;;;;;-1:-1:-1;50118:104:0;;;;;:::i;:::-;;:::i;49297:180::-;;;;;;;;;;-1:-1:-1;49297:180:0;;;;;:::i;:::-;;:::i;49170:119::-;;;;;;;;;;-1:-1:-1;49170:119:0;;;;;:::i;:::-;;:::i;18392:144::-;;;;;;;;;;-1:-1:-1;18392:144:0;;;;;:::i;:::-;;:::i;45988:21::-;;;;;;;;;;;;;:::i;14269:224::-;;;;;;;;;;-1:-1:-1;14269:224:0;;;;;:::i;:::-;;:::i;44155:103::-;;;;;;;;;;;;;:::i;49695:116::-;;;;;;;;;;-1:-1:-1;49695:116:0;;;;;:::i;:::-;;:::i;48962:99::-;;;;;;;;;;-1:-1:-1;48962:99:0;;;;;:::i;:::-;;:::i;49485:104::-;;;;;;;;;;-1:-1:-1;49485:104:0;;;;;:::i;:::-;;:::i;46057:33::-;;;;;;;;;;;;;;;;43504:87;;;;;;;;;;-1:-1:-1;43577:6:0;;-1:-1:-1;;;;;43577:6:0;43504:87;;46276:50;;;;;;;;;;-1:-1:-1;46276:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46097:31;;;;;;;;;;;;;;;;18772:104;;;;;;;;;;;;;:::i;20947:308::-;;;;;;;;;;-1:-1:-1;20947:308:0;;;;;:::i;:::-;;:::i;46180:25::-;;;;;;;;;;-1:-1:-1;46180:25:0;;;;;;;;22054:396;;;;;;;;;;-1:-1:-1;22054:396:0;;;;;:::i;:::-;;:::i;49597:90::-;;;;;;;;;;-1:-1:-1;49597:90:0;;;;;:::i;:::-;;:::i;50322:345::-;;;;;;;;;;-1:-1:-1;50322:345:0;;;;;:::i;:::-;;:::i;49069:93::-;;;;;;;;;;-1:-1:-1;49069:93:0;;;;;:::i;:::-;;:::i;48477:244::-;;;;;;;;;;-1:-1:-1;48477:244:0;;;;;:::i;:::-;;:::i;21326:164::-;;;;;;;;;;-1:-1:-1;21326:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21447:25:0;;;21423:4;21447:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21326:164;46918:831;;;;;;:::i;:::-;;:::i;48291:131::-;;;;;;;;;;-1:-1:-1;48291:131:0;;;;;:::i;:::-;;:::i;44413:201::-;;;;;;;;;;-1:-1:-1;44413:201:0;;;;;:::i;:::-;;:::i;46137:34::-;;;;;;;;;;-1:-1:-1;46137:34:0;;;;;;;;;;;;;;;;;;;;;;;;;10880:10:1;10917:15;;;10899:34;;10969:15;;;;10964:2;10949:18;;10942:43;11001:18;;;10994:34;11059:2;11044:18;;11037:34;10857:3;10842:19;46137:34:0;10643:434:1;13590:615:0;13675:4;13975:25;-1:-1:-1;;;;;;13975:25:0;;;;:102;;-1:-1:-1;14052:25:0;-1:-1:-1;;;;;;14052:25:0;;;13975:102;:179;;;-1:-1:-1;14129:25:0;-1:-1:-1;;;;;;14129:25:0;;;13975:179;13955:199;13590:615;-1:-1:-1;;13590:615:0:o;18603:100::-;18657:13;18690:5;18683:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18603:100;:::o;20671:204::-;20739:7;20764:16;20772:7;20764;:16::i;:::-;20759:64;;20789:34;;;;;;;;;;;;;;20759:64;-1:-1:-1;20843:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20843:24:0;;20671:204::o;20131:474::-;20204:13;20236:27;20255:7;20236:18;:27::i;:::-;20204:61;;20286:5;-1:-1:-1;;;;;20280:11:0;:2;-1:-1:-1;;;;;20280:11:0;;20276:48;;;20300:24;;;;;;;;;;;;;;20276:48;36774:10;-1:-1:-1;;;;;20341:28:0;;;20337:175;;20389:44;20406:5;36774:10;21326:164;:::i;20389:44::-;20384:128;;20461:35;;;;;;;;;;;;;;20384:128;20524:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;20524:29:0;-1:-1:-1;;;;;20524:29:0;;;;;;;;;20569:28;;20524:24;;20569:28;;;;;;;20193:412;20131:474;;:::o;21557:170::-;21691:28;21701:4;21707:2;21711:7;21691:9;:28::i;:::-;21557:170;;;:::o;47757:476::-;46775:10;46789:9;46775:23;46771:50;;46807:14;;-1:-1:-1;;;46807:14:0;;;;;;;;;;;46771:50;46858:10;;48863:1;12910:12;12697:7;12894:13;:28;-1:-1:-1;;12894:46:0;46837:17;;46853:1;46837:17;:::i;:::-;46836:32;46832:58;;;46877:13;;-1:-1:-1;;;46877:13:0;;;;;;;;;;;46832:58;47858:16:::1;::::0;::::1;::::0;::::1;;;47854:41;;;47883:12;;-1:-1:-1::0;;;47883:12:0::1;;;;;;;;;;;47854:41;47929:10;47910:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;47906:63;;;47949:20;;-1:-1:-1::0;;;47949:20:0::1;;;;;;;;;;;47906:63;48027:19;::::0;::::1;;48009:15;:37;48005:64;;;48055:14;;-1:-1:-1::0;;;48055:14:0::1;;;;;;;;;;;48005:64;48100:5;;48088:9;:17;48084:49;;;48114:19;;-1:-1:-1::0;;;48114:19:0::1;;;;;;;;;;;48084:49;48174:10;48155:30;::::0;;;:18:::1;:30;::::0;;;;:37;;-1:-1:-1;;48155:37:0::1;48188:4;48155:37:::0;;::::1;::::0;;;48205:20:::1;::::0;48174:10;48205:5:::1;:20::i;:::-;47757:476::o:0;48880:74::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;;;;;;;;;48931:8:::1;:15:::0;;-1:-1:-1;;48931:15:0::1;::::0;::::1;::::0;;48880:74::o;49819:104::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;43577:6;;49867:48:::1;::::0;-1:-1:-1;;;;;43577:6:0;;;;49893:21:::1;49867:48:::0;::::1;;;::::0;::::1;::::0;;;49893:21;43577:6;49867:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49819:104::o:0;21798:185::-;21936:39;21953:4;21959:2;21963:7;21936:39;;;;;;;;;;;;:16;:39::i;50118:104::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;50193:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50118:104:::0;:::o;49297:180::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;49390:13:::1;:36:::0;;::::1;49437:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;49437:32:0;;;49390:36;;;::::1;49437:32:::0;;;;;;;::::1;::::0;;49297:180::o;49170:119::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;49249:19:::1;:32:::0;;-1:-1:-1;;49249:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49170:119::o;18392:144::-;18456:7;18499:27;18518:7;18499:18;:27::i;45988:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14269:224::-;14333:7;-1:-1:-1;;;;;14357:19:0;;14353:60;;14385:28;;;;;;;;;;;;;;14353:60;-1:-1:-1;;;;;;14431:25:0;;;;;:18;:25;;;;;;9608:13;14431:54;;14269:224::o;44155:103::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;44220:30:::1;44247:1;44220:18;:30::i;49695:116::-:0;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;49766:28;:37;49695:116::o;48962:99::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;49028:16:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;49028:25:0;;::::1;::::0;;;::::1;::::0;;48962:99::o;49485:104::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;49557:10:::1;:24:::0;49485:104::o;18772:::-;18828:13;18861:7;18854:14;;;;;:::i;20947:308::-;-1:-1:-1;;;;;21046:31:0;;36774:10;21046:31;21042:61;;;21086:17;;;;;;;;;;;;;;21042:61;36774:10;21116:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21116:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21116:60:0;;;;;;;;;;21192:55;;8819:41:1;;;21116:49:0;;36774:10;21192:55;;8792:18:1;21192:55:0;;;;;;;20947:308;;:::o;22054:396::-;22221:28;22231:4;22237:2;22241:7;22221:9;:28::i;:::-;-1:-1:-1;;;;;22264:14:0;;;:19;22260:183;;22303:56;22334:4;22340:2;22344:7;22353:5;22303:30;:56::i;:::-;22298:145;;22387:40;;-1:-1:-1;;;22387:40:0;;;;;;;;;;;22298:145;22054:396;;;;:::o;49597:90::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;49665:5:::1;:14:::0;49597:90::o;50322:345::-;50441:13;50494:17;50502:8;50494:7;:17::i;:::-;50472:114;;;;-1:-1:-1;;;50472:114:0;;10247:2:1;50472:114:0;;;10229:21:1;10286:2;10266:18;;;10259:30;10325:34;10305:18;;;10298:62;10396:17;10376:18;;;10369:45;10431:19;;50472:114:0;10045:411:1;50472:114:0;50628:10;:8;:10::i;:::-;50611:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;50597:62;;50322:345;;;:::o;49069:93::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;49132:13:::1;:22:::0;;-1:-1:-1;;49132:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49069:93::o;48477:244::-;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;48597:8:::1;48616:98;48626:20;::::0;::::1;::::0;-1:-1:-1;48616:98:0::1;;;48668:34;48674:9;;48684:1;48674:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;48688:10;;48699:1;48688:13;;;;;;;;;:::i;:::-;;;;;;;48668:5;:34::i;:::-;48648:3;::::0;::::1;:::i;:::-;;;48616:98;;;48586:135;48477:244:::0;;;;:::o;46918:831::-;46775:10;46789:9;46775:23;46771:50;;46807:14;;-1:-1:-1;;;46807:14:0;;;;;;;;;;;46771:50;46858:10;;48863:1;12910:12;12697:7;12894:13;:28;-1:-1:-1;;12894:46:0;46837:17;;46853:1;46837:17;:::i;:::-;46836:32;46832:58;;;46877:13;;-1:-1:-1;;;46877:13:0;;;;;;;;;;;46832:58;47048:44:::1;::::0;;::::1;::::0;::::1;::::0;;47079:13:::1;47048:44:::0;::::1;::::0;;::::1;::::0;;;;;::::1;;;::::0;::::1;::::0;;;;;;;;;;;;;;;;47117:13:::1;::::0;::::1;;47113:38;;;47139:12;;-1:-1:-1::0;;;47139:12:0::1;;;;;;;;;;;47113:38;47209:17:::0;;47191:35:::1;;:15;:35;::::0;:72:::1;;;47248:7;:15;;;47230:33;;:15;:33;47191:72;47187:99;;;47272:14;;-1:-1:-1::0;;;47272:14:0::1;;;;;;;;;;;47187:99;47327:26;::::0;::::1;::::0;48863:1;12910:12;12697:7;12894:13;:28;47305:48:::1;47301:74;;;47362:13;;-1:-1:-1::0;;;47362:13:0::1;;;;;;;;;;;47301:74;47408:10;47422:1;14664:25:::0;;;:18;:25;;9745:2;14664:25;;;;9608:13;14664:49;;14663:80;47394:29:::1;47390:62;;;47432:20;;-1:-1:-1::0;;;47432:20:0::1;;;;;;;;;;;47390:62;47483:7;:22;;;47471:9;:34;47467:66;;;47514:19;;-1:-1:-1::0;;;47514:19:0::1;;;;;;;;;;;47467:66;47590:28;::::0;-1:-1:-1;;47607:10:0::1;7388:2:1::0;7384:15;7380:53;47590:28:0::1;::::0;::::1;7368:66:1::0;47565:12:0::1;::::0;7450::1;;47590:28:0::1;;;;;;;;;;;;47580:39;;;;;;47565:54;;47635:50;47654:12;;47635:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;47668:10:0::1;::::0;;-1:-1:-1;47680:4:0;;-1:-1:-1;47635:18:0::1;:50::i;:::-;47630:78;;47694:14;;;;;;;;;;;;;;47630:78;47721:20;47727:10;47739:1;47721:5;:20::i;48291:131::-:0;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;48385:29:::1;48391:9;48402:11;48385:5;:29::i;44413:201::-:0;43577:6;;-1:-1:-1;;;;;43577:6:0;36774:10;43724:23;43716:68;;;;-1:-1:-1;;;43716:68:0;;9886:2:1;43716:68:0;;;9868:21:1;;;9905:18;;;9898:30;-1:-1:-1;;;;;;;;;;;9944:18:1;;;9937:62;10016:18;;43716:68:0;9684:356:1;43716:68:0;-1:-1:-1;;;;;44502:22:0;::::1;44494:73;;;::::0;-1:-1:-1;;;44494:73:0;;9479:2:1;44494:73:0::1;::::0;::::1;9461:21:1::0;9518:2;9498:18;;;9491:30;9557:34;9537:18;;;9530:62;9628:8;9608:18;;;9601:36;9654:19;;44494:73:0::1;9277:402:1::0;44494:73:0::1;44578:28;44597:8;44578:18;:28::i;22705:273::-:0;22762:4;22818:7;48863:1;22799:26;;:66;;;;;22852:13;;22842:7;:23;22799:66;:152;;;;-1:-1:-1;;22903:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22903:43:0;:48;;22705:273::o;15907:1129::-;15974:7;16009;;48863:1;16058:23;16054:915;;16111:13;;16104:4;:20;16100:869;;;16149:14;16166:23;;;:17;:23;;;;;;-1:-1:-1;;;16255:23:0;;16251:699;;16774:113;16781:11;16774:113;;-1:-1:-1;;;16852:6:0;16834:25;;;;:17;:25;;;;;;16774:113;;;16920:6;15907:1129;-1:-1:-1;;;15907:1129:0:o;16251:699::-;16126:843;16100:869;16997:31;;;;;;;;;;;;;;27944:2515;28059:27;28089;28108:7;28089:18;:27::i;:::-;28059:57;;28174:4;-1:-1:-1;;;;;28133:45:0;28149:19;-1:-1:-1;;;;;28133:45:0;;28129:86;;28187:28;;;;;;;;;;;;;;28129:86;28228:22;36774:10;-1:-1:-1;;;;;28254:27:0;;;;:87;;-1:-1:-1;28298:43:0;28315:4;36774:10;21326:164;:::i;28298:43::-;28254:147;;;-1:-1:-1;36774:10:0;28358:20;28370:7;28358:11;:20::i;:::-;-1:-1:-1;;;;;28358:43:0;;28254:147;28228:174;;28420:17;28415:66;;28446:35;;;;;;;;;;;;;;28415:66;-1:-1:-1;;;;;28496:16:0;;28492:52;;28521:23;;;;;;;;;;;;;;28492:52;28673:24;;;;:15;:24;;;;;;;;28666:31;;-1:-1:-1;;28666:31:0;;;-1:-1:-1;;;;;29065:24:0;;;;;:18;:24;;;;;29063:26;;-1:-1:-1;;29063:26:0;;;29134:22;;;;;;;29132:24;;-1:-1:-1;29132:24:0;;;29427:26;;;:17;:26;;;;;10660:8;29515:15;10262:3;29515:41;29473:84;;:128;;29427:174;;;29721:46;;29717:626;;29825:1;29815:11;;29793:19;29948:30;;;:17;:30;;;;;;29944:384;;30086:13;;30071:11;:28;30067:242;;30233:30;;;;:17;:30;;;;;:52;;;30067:242;29774:569;29717:626;30390:7;30386:2;-1:-1:-1;;;;;30371:27:0;30380:4;-1:-1:-1;;;;;30371:27:0;;;;;;;;;;;30409:42;22054:396;26034:1656;26099:20;26122:13;-1:-1:-1;;;;;26150:16:0;;26146:48;;26175:19;;;;;;;;;;;;;;26146:48;26209:13;26205:44;;26231:18;;;;;;;;;;;;;;26205:44;-1:-1:-1;;;;;26798:22:0;;;;;;:18;:22;;;;9745:2;26798:22;;;:70;;26836:31;26824:44;;26798:70;;;27111:31;;;:17;:31;;;;;27204:15;10262:3;27204:41;27162:84;;-1:-1:-1;27282:13:0;;10525:3;27267:56;27162:162;27111:213;;:31;27405:23;;;27445:111;27472:40;;27497:14;;;;;-1:-1:-1;;;;;27472:40:0;;;27489:1;;27472:40;;27489:1;;27472:40;27551:3;27536:12;:18;27445:111;;-1:-1:-1;27572:13:0;:28;21557:170;;;:::o;44774:191::-;44867:6;;;-1:-1:-1;;;;;44884:17:0;;;-1:-1:-1;;44884:17:0;;;;;;;44917:40;;44867:6;;;44884:17;44867:6;;44917:40;;44848:16;;44917:40;44837:128;44774:191;:::o;34156:716::-;34340:88;;-1:-1:-1;;;34340:88:0;;34319:4;;-1:-1:-1;;;;;34340:45:0;;;;;:88;;36774:10;;34407:4;;34413:7;;34422:5;;34340:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34340:88:0;;;;;;;;-1:-1:-1;;34340:88:0;;;;;;;;;;;;:::i;:::-;;;34336:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34623:13:0;;34619:235;;34669:40;;-1:-1:-1;;;34669:40:0;;;;;;;;;;;34619:235;34812:6;34806:13;34797:6;34793:2;34789:15;34782:38;34336:529;-1:-1:-1;;;;;;34499:64:0;-1:-1:-1;;;34499:64:0;;-1:-1:-1;34336:529:0;34156:716;;;;;;:::o;49959:151::-;50057:13;50095:7;50088:14;;;;;:::i;40084:190::-;40209:4;40262;40233:25;40246:5;40253:4;40233:12;:25::i;:::-;:33;;40084:190;-1:-1:-1;;;;40084:190:0:o;40635:675::-;40718:7;40761:4;40718:7;40776:497;40800:5;:12;40796:1;:16;40776:497;;;40834:20;40857:5;40863:1;40857:8;;;;;;;;:::i;:::-;;;;;;;40834:31;;40900:12;40884;:28;40880:382;;41386:13;41436:15;;;41472:4;41465:15;;;41519:4;41503:21;;41012:57;;40880:382;;;41386:13;41436:15;;;41472:4;41465:15;;;41519:4;41503:21;;41189:57;;40880:382;-1:-1:-1;40814:3:0;;;;:::i;:::-;;;;40776:497;;;-1:-1:-1;41290:12:0;40635:675;-1:-1:-1;;;40635:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:367::-;914:8;924:6;978:3;971:4;963:6;959:17;955:27;945:55;;996:1;993;986:12;945:55;-1:-1:-1;1019:20:1;;1062:18;1051:30;;1048:50;;;1094:1;1091;1084:12;1048:50;1131:4;1123:6;1119:17;1107:29;;1191:3;1184:4;1174:6;1171:1;1167:14;1159:6;1155:27;1151:38;1148:47;1145:67;;;1208:1;1205;1198:12;1145:67;851:367;;;;;:::o;1223:160::-;1288:20;;1344:13;;1337:21;1327:32;;1317:60;;1373:1;1370;1363:12;1388:163;1455:20;;1515:10;1504:22;;1494:33;;1484:61;;1541:1;1538;1531:12;1556:186;1615:6;1668:2;1656:9;1647:7;1643:23;1639:32;1636:52;;;1684:1;1681;1674:12;1636:52;1707:29;1726:9;1707:29;:::i;1747:260::-;1815:6;1823;1876:2;1864:9;1855:7;1851:23;1847:32;1844:52;;;1892:1;1889;1882:12;1844:52;1915:29;1934:9;1915:29;:::i;:::-;1905:39;;1963:38;1997:2;1986:9;1982:18;1963:38;:::i;:::-;1953:48;;1747:260;;;;;:::o;2012:328::-;2089:6;2097;2105;2158:2;2146:9;2137:7;2133:23;2129:32;2126:52;;;2174:1;2171;2164:12;2126:52;2197:29;2216:9;2197:29;:::i;:::-;2187:39;;2245:38;2279:2;2268:9;2264:18;2245:38;:::i;:::-;2235:48;;2330:2;2319:9;2315:18;2302:32;2292:42;;2012:328;;;;;:::o;2345:666::-;2440:6;2448;2456;2464;2517:3;2505:9;2496:7;2492:23;2488:33;2485:53;;;2534:1;2531;2524:12;2485:53;2557:29;2576:9;2557:29;:::i;:::-;2547:39;;2605:38;2639:2;2628:9;2624:18;2605:38;:::i;:::-;2595:48;;2690:2;2679:9;2675:18;2662:32;2652:42;;2745:2;2734:9;2730:18;2717:32;2772:18;2764:6;2761:30;2758:50;;;2804:1;2801;2794:12;2758:50;2827:22;;2880:4;2872:13;;2868:27;-1:-1:-1;2858:55:1;;2909:1;2906;2899:12;2858:55;2932:73;2997:7;2992:2;2979:16;2974:2;2970;2966:11;2932:73;:::i;:::-;2922:83;;;2345:666;;;;;;;:::o;3016:254::-;3081:6;3089;3142:2;3130:9;3121:7;3117:23;3113:32;3110:52;;;3158:1;3155;3148:12;3110:52;3181:29;3200:9;3181:29;:::i;:::-;3171:39;;3229:35;3260:2;3249:9;3245:18;3229:35;:::i;3275:254::-;3343:6;3351;3404:2;3392:9;3383:7;3379:23;3375:32;3372:52;;;3420:1;3417;3410:12;3372:52;3443:29;3462:9;3443:29;:::i;:::-;3433:39;3519:2;3504:18;;;;3491:32;;-1:-1:-1;;;3275:254:1:o;3534:773::-;3656:6;3664;3672;3680;3733:2;3721:9;3712:7;3708:23;3704:32;3701:52;;;3749:1;3746;3739:12;3701:52;3789:9;3776:23;3818:18;3859:2;3851:6;3848:14;3845:34;;;3875:1;3872;3865:12;3845:34;3914:70;3976:7;3967:6;3956:9;3952:22;3914:70;:::i;:::-;4003:8;;-1:-1:-1;3888:96:1;-1:-1:-1;4091:2:1;4076:18;;4063:32;;-1:-1:-1;4107:16:1;;;4104:36;;;4136:1;4133;4126:12;4104:36;;4175:72;4239:7;4228:8;4217:9;4213:24;4175:72;:::i;:::-;3534:773;;;;-1:-1:-1;4266:8:1;-1:-1:-1;;;;3534:773:1:o;4312:437::-;4398:6;4406;4459:2;4447:9;4438:7;4434:23;4430:32;4427:52;;;4475:1;4472;4465:12;4427:52;4515:9;4502:23;4548:18;4540:6;4537:30;4534:50;;;4580:1;4577;4570:12;4534:50;4619:70;4681:7;4672:6;4661:9;4657:22;4619:70;:::i;:::-;4708:8;;4593:96;;-1:-1:-1;4312:437:1;-1:-1:-1;;;;4312:437:1:o;4754:180::-;4810:6;4863:2;4851:9;4842:7;4838:23;4834:32;4831:52;;;4879:1;4876;4869:12;4831:52;4902:26;4918:9;4902:26;:::i;4939:180::-;4998:6;5051:2;5039:9;5030:7;5026:23;5022:32;5019:52;;;5067:1;5064;5057:12;5019:52;-1:-1:-1;5090:23:1;;4939:180;-1:-1:-1;4939:180:1:o;5124:245::-;5182:6;5235:2;5223:9;5214:7;5210:23;5206:32;5203:52;;;5251:1;5248;5241:12;5203:52;5290:9;5277:23;5309:30;5333:5;5309:30;:::i;5374:249::-;5443:6;5496:2;5484:9;5475:7;5471:23;5467:32;5464:52;;;5512:1;5509;5502:12;5464:52;5544:9;5538:16;5563:30;5587:5;5563:30;:::i;5628:450::-;5697:6;5750:2;5738:9;5729:7;5725:23;5721:32;5718:52;;;5766:1;5763;5756:12;5718:52;5806:9;5793:23;5839:18;5831:6;5828:30;5825:50;;;5871:1;5868;5861:12;5825:50;5894:22;;5947:4;5939:13;;5935:27;-1:-1:-1;5925:55:1;;5976:1;5973;5966:12;5925:55;5999:73;6064:7;6059:2;6046:16;6041:2;6037;6033:11;5999:73;:::i;6268:254::-;6336:6;6344;6397:2;6385:9;6376:7;6372:23;6368:32;6365:52;;;6413:1;6410;6403:12;6365:52;6449:9;6436:23;6426:33;;6478:38;6512:2;6501:9;6497:18;6478:38;:::i;6527:184::-;6585:6;6638:2;6626:9;6617:7;6613:23;6609:32;6606:52;;;6654:1;6651;6644:12;6606:52;6677:28;6695:9;6677:28;:::i;6716:256::-;6782:6;6790;6843:2;6831:9;6822:7;6818:23;6814:32;6811:52;;;6859:1;6856;6849:12;6811:52;6882:28;6900:9;6882:28;:::i;:::-;6872:38;;6929:37;6962:2;6951:9;6947:18;6929:37;:::i;6977:257::-;7018:3;7056:5;7050:12;7083:6;7078:3;7071:19;7099:63;7155:6;7148:4;7143:3;7139:14;7132:4;7125:5;7121:16;7099:63;:::i;:::-;7216:2;7195:15;-1:-1:-1;;7191:29:1;7182:39;;;;7223:4;7178:50;;6977:257;-1:-1:-1;;6977:257:1:o;7473:454::-;7705:3;7743:6;7737:13;7759:53;7805:6;7800:3;7793:4;7785:6;7781:17;7759:53;:::i;:::-;7873:17;7834:16;;7859:32;;;-1:-1:-1;7918:2:1;7907:14;;7473:454;-1:-1:-1;7473:454:1:o;8163:511::-;8357:4;-1:-1:-1;;;;;8467:2:1;8459:6;8455:15;8444:9;8437:34;8519:2;8511:6;8507:15;8502:2;8491:9;8487:18;8480:43;;8559:6;8554:2;8543:9;8539:18;8532:34;8602:3;8597:2;8586:9;8582:18;8575:31;8623:45;8663:3;8652:9;8648:19;8640:6;8623:45;:::i;:::-;8615:53;8163:511;-1:-1:-1;;;;;;8163:511:1:o;9053:219::-;9202:2;9191:9;9184:21;9165:4;9222:44;9262:2;9251:9;9247:18;9239:6;9222:44;:::i;11082:128::-;11122:3;11153:1;11149:6;11146:1;11143:13;11140:39;;;11159:18;;:::i;:::-;-1:-1:-1;11195:9:1;;11082:128::o;11215:258::-;11287:1;11297:113;11311:6;11308:1;11305:13;11297:113;;;11387:11;;;11381:18;11368:11;;;11361:39;11333:2;11326:10;11297:113;;;11428:6;11425:1;11422:13;11419:48;;;-1:-1:-1;;11463:1:1;11445:16;;11438:27;11215:258::o;11478:437::-;11557:1;11553:12;;;;11600;;;11621:61;;11675:4;11667:6;11663:17;11653:27;;11621:61;11728:2;11720:6;11717:14;11697:18;11694:38;11691:218;;;-1:-1:-1;;;11762:1:1;11755:88;11866:4;11863:1;11856:15;11894:4;11891:1;11884:15;11691:218;;11478:437;;;:::o;11920:135::-;11959:3;-1:-1:-1;;11980:17:1;;11977:43;;;12000:18;;:::i;:::-;-1:-1:-1;12047:1:1;12036:13;;11920:135::o;12060:201::-;12098:3;12126:10;12171:2;12164:5;12160:14;12198:2;12189:7;12186:15;12183:41;;;12204:18;;:::i;:::-;12253:1;12240:15;;12060:201;-1:-1:-1;;;12060:201:1:o;12266:184::-;-1:-1:-1;;;12315:1:1;12308:88;12415:4;12412:1;12405:15;12439:4;12436:1;12429:15;12455:184;-1:-1:-1;;;12504:1:1;12497:88;12604:4;12601:1;12594:15;12628:4;12625:1;12618:15;12644:184;-1:-1:-1;;;12693:1:1;12686:88;12793:4;12790:1;12783:15;12817:4;12814:1;12807:15;12833:177;-1:-1:-1;;;;;;12911:5:1;12907:78;12900:5;12897:89;12887:117;;13000:1;12997;12990:12

Swarm Source

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