ETH Price: $2,380.59 (-1.14%)

Wandering Planet Official (WPO)
 

Overview

TokenID

1254

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 7 : wanderingplanet.sol
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "erc721a/contracts/ERC721A.sol"; 

pragma solidity ^0.8.7;


contract WanderingPlanetOfficial is ERC721A, Ownable, Pausable, ReentrancyGuard {
    event BaseURIChanged(string newBaseURI);
    event WhitelistSaleConfigChanged(Period config_);
    event PublicSaleConfigChanged(Period config_);
    event RefundConfigChanged(Period config_);
    event Minted(address minter, uint256 amount);
    event Withdraw(address indexed account, uint256 amount);
    event ContractSealed();

    struct Period{
        uint256 startTime;
        uint256 endTime;
    }

    uint256 public constant PRICE = 0;  //Price
    uint64 public constant MAX_TOKEN = 2999;
    uint64 public constant MAX_TOKEN_PER_ADD = 1;
    Period public whitelistsaletime;
    Period public publicsaletime;
    Period public refundtime;
    bool public contractSealed;
    string public baseURI;
    address public refundAddress;

    mapping(address => uint256) public allowlist;
    mapping(uint256 => bool) public hasRefunded; 
    mapping(uint256 => bool) public isOwnerMint;

    constructor(string memory baseURI_) ERC721A("Wandering Planet Official", "WPO") {
        baseURI = baseURI_;
        refundAddress = msg.sender;
    }

    /***********************************|
    |               Mint                |
    |__________________________________*/

    function giveaway(address[] memory address_, uint64[] memory numberOfTokens_) external onlyOwner nonReentrant {
        require(address_.length == numberOfTokens_.length, "Check the giveaway list");
        for(uint256 i = 0; i < address_.length; i++){
            require(address_[i] != address(0), "zero address");
            require(numberOfTokens_[i] > 0 , "invalid number of tokens");
            require(totalMinted() + numberOfTokens_[i] <= MAX_TOKEN, "max supply exceeded");
            uint256 current_id = totalMinted();
            _safeMint(address_[i], numberOfTokens_[i]);
            for(uint256 j = 0; j < numberOfTokens_[i]; j++)
                isOwnerMint[current_id + j] = true;
        }
    }

    function whitelistSale(uint64 numberOfTokens_) external payable callerIsUser nonReentrant {
        require(isWhitelistSaleEnabled(), "whitelist sale has not enabled");
        require(isWhitelistAddress(), "you are not in the whitelist");
        require(numberOfTokens_ <= allowlist[msg.sender], "excess max allowed amount");
        mint(numberOfTokens_, PRICE);
        allowlist[msg.sender] = allowlist[msg.sender] - numberOfTokens_;
    }

    function publicSale(uint64 numberOfTokens_) external payable callerIsUser nonReentrant {
        require(isPublicSaleEnabled(), "public sale has not enabled");
        mint(numberOfTokens_, PRICE);
    }

    function mint(uint64 numberOfTokens_, uint256 price_) internal {
        require(numberOfTokens_ > 0, "invalid number of tokens");
        require(numberOfTokens_ + numberMinted(msg.sender) <= MAX_TOKEN_PER_ADD, "max minted amount per address exceeded");
        require(totalMinted() + numberOfTokens_ <= MAX_TOKEN, "max supply exceeded");
        uint256 amount = price_ * numberOfTokens_;
        require(amount <= msg.value, "insufficient ether");
        _safeMint(_msgSender(), numberOfTokens_);
        mint_refund(amount);
        emit Minted(msg.sender, numberOfTokens_);
    }


    function mint_refund(uint256 amount_) private {
        if (msg.value > amount_) {
            payable(_msgSender()).transfer(msg.value - amount_);
        }
    }

    function token_refund(uint256[] calldata tokenIds) external callerIsUser nonReentrant{
        require(isRefundEnabled(), "Refund Not Enabled");

        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 tokenId = tokenIds[i];
            require(msg.sender == ownerOf(tokenId), "Not token owner");
            require(!hasRefunded[tokenId], "Already refunded");
            require(!isOwnerMint[tokenId], "Freely minted NFTs cannot be refunded");
            hasRefunded[tokenId] = true;
            transferFrom(msg.sender, refundAddress, tokenId);
        }

        uint256 refundAmount = tokenIds.length * PRICE;
        payable(_msgSender()).transfer(refundAmount);
    }
 
    /***********************************|
    |               State               |
    |__________________________________*/

    function isWhitelistSaleEnabled() public view returns (bool) {
        if (whitelistsaletime.endTime > 0 && block.timestamp > whitelistsaletime.endTime) {
            return false;
        }
        return whitelistsaletime.startTime > 0 && 
            block.timestamp > whitelistsaletime.startTime;
    }

    function isPublicSaleEnabled() public view returns (bool) {
        if (publicsaletime.endTime > 0 && block.timestamp > publicsaletime.endTime) {
            return false;
        }
        return publicsaletime.startTime > 0 && 
            block.timestamp > publicsaletime.startTime;
    }

    function isRefundEnabled() public view returns (bool){
        if (refundtime.endTime > 0 && block.timestamp > refundtime.endTime) {
            return false;
        }
        return refundtime.startTime > 0 && 
            block.timestamp > refundtime.startTime;
    }

    function isWhitelistAddress() public view returns (bool){
        return allowlist[msg.sender] > 0;
    }

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

    /***********************************|
    |               Owner               |
    |__________________________________*/
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
        emit BaseURIChanged(baseURI_);
    }

    function setAllowlist(
        address[] memory addresses,
        uint256[] memory numSlots
    ) external onlyOwner {
        require(addresses.length == numSlots.length, "Check the address");
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = numSlots[i];
        }
    }
    
    function setWhitelistSaleTime(Period calldata config_) external onlyOwner {
        whitelistsaletime = config_;
        emit WhitelistSaleConfigChanged(config_);
    }
    
    function setPublicSaleTime(Period calldata config_) external onlyOwner {
        publicsaletime = config_;
        emit PublicSaleConfigChanged(config_);
    }

    function setRefundTime(Period calldata config_) external onlyOwner {
        refundtime = config_;
        emit RefundConfigChanged(config_);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
        emit Withdraw(_msgSender(), balance);
    }
    
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
        require(!paused(), "token transfer paused");
    }


    function emergencyPause() external onlyOwner notSealed {
        _pause();
    }

    function unpause() external onlyOwner notSealed {
        _unpause();
    }

    function sealContract() external onlyOwner {
        contractSealed = true;
        emit ContractSealed();
    }

    
    /***********************************|
    |              Modifier             |
    |__________________________________*/

    modifier callerIsUser() {
        require(tx.origin == _msgSender(), "caller is another contract");
        _;
    }

    modifier notSealed() {
        require(!contractSealed, "contract sealed");
        _;
    }
}

File 2 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

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

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

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

    // The 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`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => 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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

    /**
     * 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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

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

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

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

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

        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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    /**
     * @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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

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

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

    /**
     * @dev 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 3 of 7 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 7 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 6 of 7 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.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();

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

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

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

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

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

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

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

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

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

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

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

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"ContractSealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"indexed":false,"internalType":"struct WanderingPlanetOfficial.Period","name":"config_","type":"tuple"}],"name":"PublicSaleConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"indexed":false,"internalType":"struct WanderingPlanetOfficial.Period","name":"config_","type":"tuple"}],"name":"RefundConfigChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"indexed":false,"internalType":"struct WanderingPlanetOfficial.Period","name":"config_","type":"tuple"}],"name":"WhitelistSaleConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_TOKEN","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_PER_ADD","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","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":[],"name":"contractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyPause","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":"address_","type":"address[]"},{"internalType":"uint64[]","name":"numberOfTokens_","type":"uint64[]"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasRefunded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isOwnerMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRefundEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"numberOfTokens_","type":"uint64"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicsaletime","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundtime","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"setAllowlist","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"internalType":"struct WanderingPlanetOfficial.Period","name":"config_","type":"tuple"}],"name":"setPublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"internalType":"struct WanderingPlanetOfficial.Period","name":"config_","type":"tuple"}],"name":"setRefundTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"internalType":"struct WanderingPlanetOfficial.Period","name":"config_","type":"tuple"}],"name":"setWhitelistSaleTime","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":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"token_refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"numberOfTokens_","type":"uint64"}],"name":"whitelistSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistsaletime","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e7938038062002e798339810160408190526200003491620001f5565b604080518082018252601981527f57616e646572696e6720506c616e6574204f6666696369616c0000000000000060208083019182528351808501909452600384526257504f60e81b90840152815191929162000094916002916200014f565b508051620000aa9060039060208401906200014f565b50506000805550620000bc33620000fd565b6008805460ff60a01b1916905560016009558051620000e39060119060208401906200014f565b5050601280546001600160a01b0319163317905562000324565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015d90620002d1565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600060208083850312156200020957600080fd5b82516001600160401b03808211156200022157600080fd5b818501915085601f8301126200023657600080fd5b8151818111156200024b576200024b6200030e565b604051601f8201601f19908116603f011681019083821181831017156200027657620002766200030e565b8160405282815288868487010111156200028f57600080fd5b600093505b82841015620002b3578484018601518185018701529285019262000294565b82841115620002c55760008684830101525b98975050505050505050565b600181811c90821680620002e657607f821691505b602082108114156200030857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b4580620003346000396000f3fe6080604052600436106102ae5760003560e01c806370a0823111610175578063a7cd52cb116100dc578063d571168d11610095578063e985e9c51161006f578063e985e9c514610815578063ecbd68df1461085e578063f2fde38b14610873578063f7a303131461089357600080fd5b8063d571168d146107c7578063dc33e681146107e2578063e2bb193a1461080257600080fd5b8063a7cd52cb146106f0578063b65016371461071d578063b88d4fde14610737578063c23fcdef14610757578063c7a75a6f14610787578063c87b56dd146107a757600080fd5b80638d859f3e1161012e5780638d859f3e146106535780638da5cb5b1461066857806395d89b4114610686578063a22cb4651461069b578063a2309ff8146106bb578063a3313348146106d057600080fd5b806370a08231146105b6578063715018a6146105d65780638233685d146105eb5780638746475a146105fe57806389da2e2c146106135780638bb1b82c1461063357600080fd5b806342842e0e116102195780635eb84758116101d25780635eb847581461051b5780636352211e1461053b5780636720b42c1461055b57806368bd580e146105765780636c0360eb1461058b5780636e1bd323146105a057600080fd5b806342842e0e1461045657806350f77e471461047657806351858e271461049a57806355f804b3146104af578063590a6e2c146104cf5780635c975abb146104fc57600080fd5b806318160ddd1161026b57806318160ddd146103b457806323b872dd146103d75780633446483a146103f75780633ccfd60b146104175780633f4ba83a1461042c5780634009920d1461044157600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630cb61f6c1461036457806312e72f3814610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce36600461276d565b6108c3565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610915565b6040516102df9190612919565b34801561031657600080fd5b5061032a61032536600461281e565b6109a7565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004612556565b6109eb565b005b34801561037057600080fd5b5060125461032a906001600160a01b031681565b34801561039057600080fd5b50600a54600b5461039f919082565b604080519283526020830191909152016102df565b3480156103c057600080fd5b50600154600054035b6040519081526020016102df565b3480156103e357600080fd5b506103626103f236600461241f565b610a8b565b34801561040357600080fd5b50610362610412366004612806565b610c29565b34801561042357600080fd5b50610362610c7d565b34801561043857600080fd5b50610362610ced565b34801561044d57600080fd5b506102d3610d49565b34801561046257600080fd5b5061036261047136600461241f565b610d80565b34801561048257600080fd5b503360009081526013602052604090205415156102d3565b3480156104a657600080fd5b50610362610da0565b3480156104bb57600080fd5b506103626104ca3660046127a7565b610df5565b3480156104db57600080fd5b506104e4600181565b6040516001600160401b0390911681526020016102df565b34801561050857600080fd5b50600854600160a01b900460ff166102d3565b34801561052757600080fd5b50610362610536366004612806565b610e47565b34801561054757600080fd5b5061032a61055636600461281e565b610e94565b34801561056757600080fd5b50600c54600d5461039f919082565b34801561058257600080fd5b50610362610e9f565b34801561059757600080fd5b506102fd610edf565b3480156105ac57600080fd5b506104e4610bb781565b3480156105c257600080fd5b506103c96105d13660046123d1565b610f6d565b3480156105e257600080fd5b50610362610fbb565b6103626105f9366004612837565b610fcd565b34801561060a57600080fd5b506102d3611173565b34801561061f57600080fd5b5061036261062e366004612641565b6111a8565b34801561063f57600080fd5b5061036261064e366004612580565b61146b565b34801561065f57600080fd5b506103c9600081565b34801561067457600080fd5b506008546001600160a01b031661032a565b34801561069257600080fd5b506102fd611533565b3480156106a757600080fd5b506103626106b636600461251a565b611542565b3480156106c757600080fd5b506000546103c9565b3480156106dc57600080fd5b506103626106eb366004612806565b6115d8565b3480156106fc57600080fd5b506103c961070b3660046123d1565b60136020526000908152604090205481565b34801561072957600080fd5b506010546102d39060ff1681565b34801561074357600080fd5b5061036261075236600461245b565b611625565b34801561076357600080fd5b506102d361077236600461281e565b60146020526000908152604090205460ff1681565b34801561079357600080fd5b506103626107a23660046126f9565b61166f565b3480156107b357600080fd5b506102fd6107c236600461281e565b6118cd565b3480156107d357600080fd5b50600e54600f5461039f919082565b3480156107ee57600080fd5b506103c96107fd3660046123d1565b611952565b610362610810366004612837565b61197c565b34801561082157600080fd5b506102d36108303660046123ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086a57600080fd5b506102d3611a2a565b34801561087f57600080fd5b5061036261088e3660046123d1565b611a5f565b34801561089f57600080fd5b506102d36108ae36600461281e565b60156020526000908152604090205460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806108f457506380ac58cd60e01b6001600160e01b03198316145b8061090f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461092490612a67565b80601f016020809104026020016040519081016040528092919081815260200182805461095090612a67565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b282611ad8565b6109cf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109f682610e94565b9050336001600160a01b03821614610a2f57610a128133610830565b610a2f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a9682611aff565b9050836001600160a01b0316816001600160a01b031614610ac95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b1657610af98633610830565b610b1657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b3d57604051633a954ecd60e21b815260040160405180910390fd5b610b4a8686866001611b60565b8015610b5557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610be05760018401600081815260046020526040902054610bde576000548114610bde5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c31611bb2565b8035600c819055602080830135600d81905560408051938452918301527fd815bc9e7873606b1c4c2c8ea805b2b430b0c53a00235c5011043d6c486753dc91015b60405180910390a150565b610c85611bb2565b6040514790339082156108fc029083906000818181858888f19350505050158015610cb4573d6000803e3d6000fd5b5060405181815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a250565b610cf5611bb2565b60105460ff1615610d3f5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081cd9585b1959608a1b60448201526064015b60405180910390fd5b610d47611c0c565b565b600d5460009015801590610d5e5750600d5442115b15610d695750600090565b600c5415801590610d7b5750600c5442115b905090565b610d9b83838360405180602001604052806000815250611625565b505050565b610da8611bb2565b60105460ff1615610ded5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081cd9585b1959608a1b6044820152606401610d36565b610d47611c61565b610dfd611bb2565b610e096011838361228c565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610e3b9291906128ea565b60405180910390a15050565b610e4f611bb2565b8035600e819055602080830135600f81905560408051938452918301527f1ac5256c72cddb2ba4e2ea2fc6f5e51bc27d2c49a660a59ad70e4cb0eefb1ada9101610c72565b600061090f82611aff565b610ea7611bb2565b6010805460ff191660011790556040517fa0058887862c892ade184993a48c672897bca2e36ebf7fa2b4703d4805fc3a0190600090a1565b60118054610eec90612a67565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1890612a67565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b505050505081565b60006001600160a01b038216610f96576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610fc3611bb2565b610d476000611ca4565b323314610fec5760405162461bcd60e51b8152600401610d369061292c565b6002600954141561100f5760405162461bcd60e51b8152600401610d3690612963565b600260095561101c611a2a565b6110685760405162461bcd60e51b815260206004820152601e60248201527f77686974656c6973742073616c6520686173206e6f7420656e61626c656400006044820152606401610d36565b336000908152601360205260409020546110c45760405162461bcd60e51b815260206004820152601c60248201527f796f7520617265206e6f7420696e207468652077686974656c697374000000006044820152606401610d36565b336000908152601360205260409020546001600160401b038216111561112c5760405162461bcd60e51b815260206004820152601960248201527f657863657373206d617820616c6c6f77656420616d6f756e74000000000000006044820152606401610d36565b611137816000611cf6565b3360009081526013602052604090205461115b906001600160401b03831690612a24565b33600090815260136020526040902055506001600955565b600f54600090158015906111885750600f5442115b156111935750600090565b600e5415801590610d7b575050600e54421190565b6111b0611bb2565b600260095414156111d35760405162461bcd60e51b8152600401610d3690612963565b600260095580518251146112295760405162461bcd60e51b815260206004820152601760248201527f436865636b20746865206769766561776179206c6973740000000000000000006044820152606401610d36565b60005b82518110156114615760006001600160a01b031683828151811061125257611252612acd565b60200260200101516001600160a01b031614156112a05760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b6044820152606401610d36565b60008282815181106112b4576112b4612acd565b60200260200101516001600160401b03161161130d5760405162461bcd60e51b8152602060048201526018602482015277696e76616c6964206e756d626572206f6620746f6b656e7360401b6044820152606401610d36565b610bb76001600160401b031682828151811061132b5761132b612acd565b60200260200101516001600160401b031661134560005490565b61134f91906129ed565b11156113935760405162461bcd60e51b81526020600482015260136024820152721b585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610d36565b6000805490506113de8483815181106113ae576113ae612acd565b60200260200101518484815181106113c8576113c8612acd565b60200260200101516001600160401b0316611ee7565b60005b8383815181106113f3576113f3612acd565b60200260200101516001600160401b031681101561144c5760016015600061141b84866129ed565b81526020810191909152604001600020805460ff19169115159190911790558061144481612a9c565b9150506113e1565b5050808061145990612a9c565b91505061122c565b5050600160095550565b611473611bb2565b80518251146114b85760405162461bcd60e51b8152602060048201526011602482015270436865636b20746865206164647265737360781b6044820152606401610d36565b60005b8251811015610d9b578181815181106114d6576114d6612acd565b6020026020010151601360008584815181106114f4576114f4612acd565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061152b90612a9c565b9150506114bb565b60606003805461092490612a67565b6001600160a01b03821633141561156c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115e0611bb2565b8035600a819055602080830135600b81905560408051938452918301527f2c801d037d3b2a4c81a2edcdd4bf67a56bfba98ad36c1b5350f9dd1073eb9f749101610c72565b611630848484610a8b565b6001600160a01b0383163b156116695761164c84848484611f05565b611669576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b32331461168e5760405162461bcd60e51b8152600401610d369061292c565b600260095414156116b15760405162461bcd60e51b8152600401610d3690612963565b60026009556116be611173565b6116ff5760405162461bcd60e51b81526020600482015260126024820152711499599d5b9908139bdd08115b98589b195960721b6044820152606401610d36565b60005b8181101561188557600083838381811061171e5761171e612acd565b90506020020135905061173081610e94565b6001600160a01b0316336001600160a01b0316146117825760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b6044820152606401610d36565b60008181526014602052604090205460ff16156117d45760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c99599d5b99195960821b6044820152606401610d36565b60008181526015602052604090205460ff16156118415760405162461bcd60e51b815260206004820152602560248201527f467265656c79206d696e746564204e4654732063616e6e6f74206265207265666044820152641d5b99195960da1b6064820152608401610d36565b6000818152601460205260409020805460ff191660011790556012546118729033906001600160a01b031683610a8b565b508061187d81612a9c565b915050611702565b5060006118928183612a05565b604051909150339082156108fc029083906000818181858888f193505050501580156118c2573d6000803e3d6000fd5b505060016009555050565b60606118d882611ad8565b6118f557604051630a14c4b560e41b815260040160405180910390fd5b60006118ff611ffc565b9050805160001415611920576040518060200160405280600081525061194b565b8061192a8461200b565b60405160200161193b92919061287e565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c1661090f565b32331461199b5760405162461bcd60e51b8152600401610d369061292c565b600260095414156119be5760405162461bcd60e51b8152600401610d3690612963565b60026009556119cb610d49565b611a175760405162461bcd60e51b815260206004820152601b60248201527f7075626c69632073616c6520686173206e6f7420656e61626c656400000000006044820152606401610d36565b611a22816000611cf6565b506001600955565b600b5460009015801590611a3f5750600b5442115b15611a4a5750600090565b600a5415801590610d7b575050600a54421190565b611a67611bb2565b6001600160a01b038116611acc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d36565b611ad581611ca4565b50565b600080548210801561090f575050600090815260046020526040902054600160e01b161590565b600081600054811015611b4757600081815260046020526040902054600160e01b8116611b45575b8061194b575060001901600081815260046020526040902054611b27565b505b604051636f96cda160e11b815260040160405180910390fd5b600854600160a01b900460ff16156116695760405162461bcd60e51b81526020600482015260156024820152741d1bdad95b881d1c985b9cd9995c881c185d5cd959605a1b6044820152606401610d36565b6008546001600160a01b03163314610d475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d36565b611c1461205a565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611c696120aa565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c443390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160401b031611611d4a5760405162461bcd60e51b8152602060048201526018602482015277696e76616c6964206e756d626572206f6620746f6b656e7360401b6044820152606401610d36565b6001611d5533611952565b611d68906001600160401b0385166129ed565b1115611dc55760405162461bcd60e51b815260206004820152602660248201527f6d6178206d696e74656420616d6f756e7420706572206164647265737320657860448201526518d95959195960d21b6064820152608401610d36565b610bb76001600160401b038316611ddb60005490565b611de591906129ed565b1115611e295760405162461bcd60e51b81526020600482015260136024820152721b585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610d36565b6000611e3e6001600160401b03841683612a05565b905034811115611e855760405162461bcd60e51b815260206004820152601260248201527134b739bab33334b1b4b2b73a1032ba3432b960711b6044820152606401610d36565b611e9833846001600160401b0316611ee7565b611ea1816120f7565b604080513381526001600160401b03851660208201527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1505050565b611f01828260405180602001604052806000815250612135565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f3a9033908990889088906004016128ad565b602060405180830381600087803b158015611f5457600080fd5b505af1925050508015611f84575060408051601f3d908101601f19168201909252611f819181019061278a565b60015b611fdf573d808015611fb2576040519150601f19603f3d011682016040523d82523d6000602084013e611fb7565b606091505b508051611fd7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606011805461092490612a67565b604080516080810191829052607f0190826030600a8206018353600a90045b801561204857600183039250600a81066030018353600a900461202a565b50819003601f19909101908152919050565b600854600160a01b900460ff16610d475760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d36565b600854600160a01b900460ff1615610d475760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d36565b80341115611ad557336108fc61210d8334612a24565b6040518115909202916000818181858888f19350505050158015611f01573d6000803e3d6000fd5b61213f83836121a2565b6001600160a01b0383163b15610d9b576000548281035b6121696000868380600101945086611f05565b612186576040516368d2bf6b60e11b815260040160405180910390fd5b81811061215657816000541461219b57600080fd5b5050505050565b6000546001600160a01b0383166121cb57604051622e076360e81b815260040160405180910390fd5b816121e95760405163b562e8dd60e01b815260040160405180910390fd5b6121f66000848385611b60565b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106122405760005550505050565b82805461229890612a67565b90600052602060002090601f0160209004810192826122ba5760008555612300565b82601f106122d35782800160ff19823516178555612300565b82800160010185558215612300579182015b828111156123005782358255916020019190600101906122e5565b5061230c929150612310565b5090565b5b8082111561230c5760008155600101612311565b80356001600160a01b038116811461233c57600080fd5b919050565b600082601f83011261235257600080fd5b81356020612367612362836129ca565b61299a565b80838252828201915082860187848660051b890101111561238757600080fd5b60005b858110156123ad5761239b82612325565b8452928401929084019060010161238a565b5090979650505050505050565b80356001600160401b038116811461233c57600080fd5b6000602082840312156123e357600080fd5b61194b82612325565b600080604083850312156123ff57600080fd5b61240883612325565b915061241660208401612325565b90509250929050565b60008060006060848603121561243457600080fd5b61243d84612325565b925061244b60208501612325565b9150604084013590509250925092565b6000806000806080858703121561247157600080fd5b61247a85612325565b93506020612489818701612325565b93506040860135925060608601356001600160401b03808211156124ac57600080fd5b818801915088601f8301126124c057600080fd5b8135818111156124d2576124d2612ae3565b6124e4601f8201601f1916850161299a565b915080825289848285010111156124fa57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561252d57600080fd5b61253683612325565b91506020830135801515811461254b57600080fd5b809150509250929050565b6000806040838503121561256957600080fd5b61257283612325565b946020939093013593505050565b6000806040838503121561259357600080fd5b82356001600160401b03808211156125aa57600080fd5b6125b686838701612341565b93506020915081850135818111156125cd57600080fd5b85019050601f810186136125e057600080fd5b80356125ee612362826129ca565b80828252848201915084840189868560051b870101111561260e57600080fd5b600094505b83851015612631578035835260019490940193918501918501612613565b5080955050505050509250929050565b6000806040838503121561265457600080fd5b82356001600160401b038082111561266b57600080fd5b61267786838701612341565b935060209150818501358181111561268e57600080fd5b85019050601f810186136126a157600080fd5b80356126af612362826129ca565b80828252848201915084840189868560051b87010111156126cf57600080fd5b600094505b83851015612631576126e5816123ba565b8352600194909401939185019185016126d4565b6000806020838503121561270c57600080fd5b82356001600160401b038082111561272357600080fd5b818501915085601f83011261273757600080fd5b81358181111561274657600080fd5b8660208260051b850101111561275b57600080fd5b60209290920196919550909350505050565b60006020828403121561277f57600080fd5b813561194b81612af9565b60006020828403121561279c57600080fd5b815161194b81612af9565b600080602083850312156127ba57600080fd5b82356001600160401b03808211156127d157600080fd5b818501915085601f8301126127e557600080fd5b8135818111156127f457600080fd5b86602082850101111561275b57600080fd5b60006040828403121561281857600080fd5b50919050565b60006020828403121561283057600080fd5b5035919050565b60006020828403121561284957600080fd5b61194b826123ba565b6000815180845261286a816020860160208601612a3b565b601f01601f19169290920160200192915050565b60008351612890818460208801612a3b565b8351908301906128a4818360208801612a3b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128e090830184612852565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208152600061194b6020830184612852565b6020808252601a908201527f63616c6c657220697320616e6f7468657220636f6e7472616374000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156129c2576129c2612ae3565b604052919050565b60006001600160401b038211156129e3576129e3612ae3565b5060051b60200190565b60008219821115612a0057612a00612ab7565b500190565b6000816000190483118215151615612a1f57612a1f612ab7565b500290565b600082821015612a3657612a36612ab7565b500390565b60005b83811015612a56578181015183820152602001612a3e565b838111156116695750506000910152565b600181811c90821680612a7b57607f821691505b6020821081141561281857634e487b7160e01b600052602260045260246000fd5b6000600019821415612ab057612ab0612ab7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ad557600080fdfea264697066735822122075c93b9a532d0fa046417d9f10f354635edc70b29e7ec6213a2322f15e8dadf664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586b4765644a4c7453515543526e4c546f786362564e32774c4b38747842433557454b4d64564a5267485a652f00000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c806370a0823111610175578063a7cd52cb116100dc578063d571168d11610095578063e985e9c51161006f578063e985e9c514610815578063ecbd68df1461085e578063f2fde38b14610873578063f7a303131461089357600080fd5b8063d571168d146107c7578063dc33e681146107e2578063e2bb193a1461080257600080fd5b8063a7cd52cb146106f0578063b65016371461071d578063b88d4fde14610737578063c23fcdef14610757578063c7a75a6f14610787578063c87b56dd146107a757600080fd5b80638d859f3e1161012e5780638d859f3e146106535780638da5cb5b1461066857806395d89b4114610686578063a22cb4651461069b578063a2309ff8146106bb578063a3313348146106d057600080fd5b806370a08231146105b6578063715018a6146105d65780638233685d146105eb5780638746475a146105fe57806389da2e2c146106135780638bb1b82c1461063357600080fd5b806342842e0e116102195780635eb84758116101d25780635eb847581461051b5780636352211e1461053b5780636720b42c1461055b57806368bd580e146105765780636c0360eb1461058b5780636e1bd323146105a057600080fd5b806342842e0e1461045657806350f77e471461047657806351858e271461049a57806355f804b3146104af578063590a6e2c146104cf5780635c975abb146104fc57600080fd5b806318160ddd1161026b57806318160ddd146103b457806323b872dd146103d75780633446483a146103f75780633ccfd60b146104175780633f4ba83a1461042c5780634009920d1461044157600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630cb61f6c1461036457806312e72f3814610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce36600461276d565b6108c3565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610915565b6040516102df9190612919565b34801561031657600080fd5b5061032a61032536600461281e565b6109a7565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004612556565b6109eb565b005b34801561037057600080fd5b5060125461032a906001600160a01b031681565b34801561039057600080fd5b50600a54600b5461039f919082565b604080519283526020830191909152016102df565b3480156103c057600080fd5b50600154600054035b6040519081526020016102df565b3480156103e357600080fd5b506103626103f236600461241f565b610a8b565b34801561040357600080fd5b50610362610412366004612806565b610c29565b34801561042357600080fd5b50610362610c7d565b34801561043857600080fd5b50610362610ced565b34801561044d57600080fd5b506102d3610d49565b34801561046257600080fd5b5061036261047136600461241f565b610d80565b34801561048257600080fd5b503360009081526013602052604090205415156102d3565b3480156104a657600080fd5b50610362610da0565b3480156104bb57600080fd5b506103626104ca3660046127a7565b610df5565b3480156104db57600080fd5b506104e4600181565b6040516001600160401b0390911681526020016102df565b34801561050857600080fd5b50600854600160a01b900460ff166102d3565b34801561052757600080fd5b50610362610536366004612806565b610e47565b34801561054757600080fd5b5061032a61055636600461281e565b610e94565b34801561056757600080fd5b50600c54600d5461039f919082565b34801561058257600080fd5b50610362610e9f565b34801561059757600080fd5b506102fd610edf565b3480156105ac57600080fd5b506104e4610bb781565b3480156105c257600080fd5b506103c96105d13660046123d1565b610f6d565b3480156105e257600080fd5b50610362610fbb565b6103626105f9366004612837565b610fcd565b34801561060a57600080fd5b506102d3611173565b34801561061f57600080fd5b5061036261062e366004612641565b6111a8565b34801561063f57600080fd5b5061036261064e366004612580565b61146b565b34801561065f57600080fd5b506103c9600081565b34801561067457600080fd5b506008546001600160a01b031661032a565b34801561069257600080fd5b506102fd611533565b3480156106a757600080fd5b506103626106b636600461251a565b611542565b3480156106c757600080fd5b506000546103c9565b3480156106dc57600080fd5b506103626106eb366004612806565b6115d8565b3480156106fc57600080fd5b506103c961070b3660046123d1565b60136020526000908152604090205481565b34801561072957600080fd5b506010546102d39060ff1681565b34801561074357600080fd5b5061036261075236600461245b565b611625565b34801561076357600080fd5b506102d361077236600461281e565b60146020526000908152604090205460ff1681565b34801561079357600080fd5b506103626107a23660046126f9565b61166f565b3480156107b357600080fd5b506102fd6107c236600461281e565b6118cd565b3480156107d357600080fd5b50600e54600f5461039f919082565b3480156107ee57600080fd5b506103c96107fd3660046123d1565b611952565b610362610810366004612837565b61197c565b34801561082157600080fd5b506102d36108303660046123ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086a57600080fd5b506102d3611a2a565b34801561087f57600080fd5b5061036261088e3660046123d1565b611a5f565b34801561089f57600080fd5b506102d36108ae36600461281e565b60156020526000908152604090205460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806108f457506380ac58cd60e01b6001600160e01b03198316145b8061090f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461092490612a67565b80601f016020809104026020016040519081016040528092919081815260200182805461095090612a67565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b282611ad8565b6109cf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109f682610e94565b9050336001600160a01b03821614610a2f57610a128133610830565b610a2f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a9682611aff565b9050836001600160a01b0316816001600160a01b031614610ac95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b1657610af98633610830565b610b1657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b3d57604051633a954ecd60e21b815260040160405180910390fd5b610b4a8686866001611b60565b8015610b5557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610be05760018401600081815260046020526040902054610bde576000548114610bde5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c31611bb2565b8035600c819055602080830135600d81905560408051938452918301527fd815bc9e7873606b1c4c2c8ea805b2b430b0c53a00235c5011043d6c486753dc91015b60405180910390a150565b610c85611bb2565b6040514790339082156108fc029083906000818181858888f19350505050158015610cb4573d6000803e3d6000fd5b5060405181815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a250565b610cf5611bb2565b60105460ff1615610d3f5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081cd9585b1959608a1b60448201526064015b60405180910390fd5b610d47611c0c565b565b600d5460009015801590610d5e5750600d5442115b15610d695750600090565b600c5415801590610d7b5750600c5442115b905090565b610d9b83838360405180602001604052806000815250611625565b505050565b610da8611bb2565b60105460ff1615610ded5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081cd9585b1959608a1b6044820152606401610d36565b610d47611c61565b610dfd611bb2565b610e096011838361228c565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610e3b9291906128ea565b60405180910390a15050565b610e4f611bb2565b8035600e819055602080830135600f81905560408051938452918301527f1ac5256c72cddb2ba4e2ea2fc6f5e51bc27d2c49a660a59ad70e4cb0eefb1ada9101610c72565b600061090f82611aff565b610ea7611bb2565b6010805460ff191660011790556040517fa0058887862c892ade184993a48c672897bca2e36ebf7fa2b4703d4805fc3a0190600090a1565b60118054610eec90612a67565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1890612a67565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b505050505081565b60006001600160a01b038216610f96576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610fc3611bb2565b610d476000611ca4565b323314610fec5760405162461bcd60e51b8152600401610d369061292c565b6002600954141561100f5760405162461bcd60e51b8152600401610d3690612963565b600260095561101c611a2a565b6110685760405162461bcd60e51b815260206004820152601e60248201527f77686974656c6973742073616c6520686173206e6f7420656e61626c656400006044820152606401610d36565b336000908152601360205260409020546110c45760405162461bcd60e51b815260206004820152601c60248201527f796f7520617265206e6f7420696e207468652077686974656c697374000000006044820152606401610d36565b336000908152601360205260409020546001600160401b038216111561112c5760405162461bcd60e51b815260206004820152601960248201527f657863657373206d617820616c6c6f77656420616d6f756e74000000000000006044820152606401610d36565b611137816000611cf6565b3360009081526013602052604090205461115b906001600160401b03831690612a24565b33600090815260136020526040902055506001600955565b600f54600090158015906111885750600f5442115b156111935750600090565b600e5415801590610d7b575050600e54421190565b6111b0611bb2565b600260095414156111d35760405162461bcd60e51b8152600401610d3690612963565b600260095580518251146112295760405162461bcd60e51b815260206004820152601760248201527f436865636b20746865206769766561776179206c6973740000000000000000006044820152606401610d36565b60005b82518110156114615760006001600160a01b031683828151811061125257611252612acd565b60200260200101516001600160a01b031614156112a05760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b6044820152606401610d36565b60008282815181106112b4576112b4612acd565b60200260200101516001600160401b03161161130d5760405162461bcd60e51b8152602060048201526018602482015277696e76616c6964206e756d626572206f6620746f6b656e7360401b6044820152606401610d36565b610bb76001600160401b031682828151811061132b5761132b612acd565b60200260200101516001600160401b031661134560005490565b61134f91906129ed565b11156113935760405162461bcd60e51b81526020600482015260136024820152721b585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610d36565b6000805490506113de8483815181106113ae576113ae612acd565b60200260200101518484815181106113c8576113c8612acd565b60200260200101516001600160401b0316611ee7565b60005b8383815181106113f3576113f3612acd565b60200260200101516001600160401b031681101561144c5760016015600061141b84866129ed565b81526020810191909152604001600020805460ff19169115159190911790558061144481612a9c565b9150506113e1565b5050808061145990612a9c565b91505061122c565b5050600160095550565b611473611bb2565b80518251146114b85760405162461bcd60e51b8152602060048201526011602482015270436865636b20746865206164647265737360781b6044820152606401610d36565b60005b8251811015610d9b578181815181106114d6576114d6612acd565b6020026020010151601360008584815181106114f4576114f4612acd565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061152b90612a9c565b9150506114bb565b60606003805461092490612a67565b6001600160a01b03821633141561156c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115e0611bb2565b8035600a819055602080830135600b81905560408051938452918301527f2c801d037d3b2a4c81a2edcdd4bf67a56bfba98ad36c1b5350f9dd1073eb9f749101610c72565b611630848484610a8b565b6001600160a01b0383163b156116695761164c84848484611f05565b611669576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b32331461168e5760405162461bcd60e51b8152600401610d369061292c565b600260095414156116b15760405162461bcd60e51b8152600401610d3690612963565b60026009556116be611173565b6116ff5760405162461bcd60e51b81526020600482015260126024820152711499599d5b9908139bdd08115b98589b195960721b6044820152606401610d36565b60005b8181101561188557600083838381811061171e5761171e612acd565b90506020020135905061173081610e94565b6001600160a01b0316336001600160a01b0316146117825760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b6044820152606401610d36565b60008181526014602052604090205460ff16156117d45760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c99599d5b99195960821b6044820152606401610d36565b60008181526015602052604090205460ff16156118415760405162461bcd60e51b815260206004820152602560248201527f467265656c79206d696e746564204e4654732063616e6e6f74206265207265666044820152641d5b99195960da1b6064820152608401610d36565b6000818152601460205260409020805460ff191660011790556012546118729033906001600160a01b031683610a8b565b508061187d81612a9c565b915050611702565b5060006118928183612a05565b604051909150339082156108fc029083906000818181858888f193505050501580156118c2573d6000803e3d6000fd5b505060016009555050565b60606118d882611ad8565b6118f557604051630a14c4b560e41b815260040160405180910390fd5b60006118ff611ffc565b9050805160001415611920576040518060200160405280600081525061194b565b8061192a8461200b565b60405160200161193b92919061287e565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c1661090f565b32331461199b5760405162461bcd60e51b8152600401610d369061292c565b600260095414156119be5760405162461bcd60e51b8152600401610d3690612963565b60026009556119cb610d49565b611a175760405162461bcd60e51b815260206004820152601b60248201527f7075626c69632073616c6520686173206e6f7420656e61626c656400000000006044820152606401610d36565b611a22816000611cf6565b506001600955565b600b5460009015801590611a3f5750600b5442115b15611a4a5750600090565b600a5415801590610d7b575050600a54421190565b611a67611bb2565b6001600160a01b038116611acc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d36565b611ad581611ca4565b50565b600080548210801561090f575050600090815260046020526040902054600160e01b161590565b600081600054811015611b4757600081815260046020526040902054600160e01b8116611b45575b8061194b575060001901600081815260046020526040902054611b27565b505b604051636f96cda160e11b815260040160405180910390fd5b600854600160a01b900460ff16156116695760405162461bcd60e51b81526020600482015260156024820152741d1bdad95b881d1c985b9cd9995c881c185d5cd959605a1b6044820152606401610d36565b6008546001600160a01b03163314610d475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d36565b611c1461205a565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611c696120aa565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c443390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160401b031611611d4a5760405162461bcd60e51b8152602060048201526018602482015277696e76616c6964206e756d626572206f6620746f6b656e7360401b6044820152606401610d36565b6001611d5533611952565b611d68906001600160401b0385166129ed565b1115611dc55760405162461bcd60e51b815260206004820152602660248201527f6d6178206d696e74656420616d6f756e7420706572206164647265737320657860448201526518d95959195960d21b6064820152608401610d36565b610bb76001600160401b038316611ddb60005490565b611de591906129ed565b1115611e295760405162461bcd60e51b81526020600482015260136024820152721b585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610d36565b6000611e3e6001600160401b03841683612a05565b905034811115611e855760405162461bcd60e51b815260206004820152601260248201527134b739bab33334b1b4b2b73a1032ba3432b960711b6044820152606401610d36565b611e9833846001600160401b0316611ee7565b611ea1816120f7565b604080513381526001600160401b03851660208201527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1505050565b611f01828260405180602001604052806000815250612135565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f3a9033908990889088906004016128ad565b602060405180830381600087803b158015611f5457600080fd5b505af1925050508015611f84575060408051601f3d908101601f19168201909252611f819181019061278a565b60015b611fdf573d808015611fb2576040519150601f19603f3d011682016040523d82523d6000602084013e611fb7565b606091505b508051611fd7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606011805461092490612a67565b604080516080810191829052607f0190826030600a8206018353600a90045b801561204857600183039250600a81066030018353600a900461202a565b50819003601f19909101908152919050565b600854600160a01b900460ff16610d475760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d36565b600854600160a01b900460ff1615610d475760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d36565b80341115611ad557336108fc61210d8334612a24565b6040518115909202916000818181858888f19350505050158015611f01573d6000803e3d6000fd5b61213f83836121a2565b6001600160a01b0383163b15610d9b576000548281035b6121696000868380600101945086611f05565b612186576040516368d2bf6b60e11b815260040160405180910390fd5b81811061215657816000541461219b57600080fd5b5050505050565b6000546001600160a01b0383166121cb57604051622e076360e81b815260040160405180910390fd5b816121e95760405163b562e8dd60e01b815260040160405180910390fd5b6121f66000848385611b60565b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106122405760005550505050565b82805461229890612a67565b90600052602060002090601f0160209004810192826122ba5760008555612300565b82601f106122d35782800160ff19823516178555612300565b82800160010185558215612300579182015b828111156123005782358255916020019190600101906122e5565b5061230c929150612310565b5090565b5b8082111561230c5760008155600101612311565b80356001600160a01b038116811461233c57600080fd5b919050565b600082601f83011261235257600080fd5b81356020612367612362836129ca565b61299a565b80838252828201915082860187848660051b890101111561238757600080fd5b60005b858110156123ad5761239b82612325565b8452928401929084019060010161238a565b5090979650505050505050565b80356001600160401b038116811461233c57600080fd5b6000602082840312156123e357600080fd5b61194b82612325565b600080604083850312156123ff57600080fd5b61240883612325565b915061241660208401612325565b90509250929050565b60008060006060848603121561243457600080fd5b61243d84612325565b925061244b60208501612325565b9150604084013590509250925092565b6000806000806080858703121561247157600080fd5b61247a85612325565b93506020612489818701612325565b93506040860135925060608601356001600160401b03808211156124ac57600080fd5b818801915088601f8301126124c057600080fd5b8135818111156124d2576124d2612ae3565b6124e4601f8201601f1916850161299a565b915080825289848285010111156124fa57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561252d57600080fd5b61253683612325565b91506020830135801515811461254b57600080fd5b809150509250929050565b6000806040838503121561256957600080fd5b61257283612325565b946020939093013593505050565b6000806040838503121561259357600080fd5b82356001600160401b03808211156125aa57600080fd5b6125b686838701612341565b93506020915081850135818111156125cd57600080fd5b85019050601f810186136125e057600080fd5b80356125ee612362826129ca565b80828252848201915084840189868560051b870101111561260e57600080fd5b600094505b83851015612631578035835260019490940193918501918501612613565b5080955050505050509250929050565b6000806040838503121561265457600080fd5b82356001600160401b038082111561266b57600080fd5b61267786838701612341565b935060209150818501358181111561268e57600080fd5b85019050601f810186136126a157600080fd5b80356126af612362826129ca565b80828252848201915084840189868560051b87010111156126cf57600080fd5b600094505b83851015612631576126e5816123ba565b8352600194909401939185019185016126d4565b6000806020838503121561270c57600080fd5b82356001600160401b038082111561272357600080fd5b818501915085601f83011261273757600080fd5b81358181111561274657600080fd5b8660208260051b850101111561275b57600080fd5b60209290920196919550909350505050565b60006020828403121561277f57600080fd5b813561194b81612af9565b60006020828403121561279c57600080fd5b815161194b81612af9565b600080602083850312156127ba57600080fd5b82356001600160401b03808211156127d157600080fd5b818501915085601f8301126127e557600080fd5b8135818111156127f457600080fd5b86602082850101111561275b57600080fd5b60006040828403121561281857600080fd5b50919050565b60006020828403121561283057600080fd5b5035919050565b60006020828403121561284957600080fd5b61194b826123ba565b6000815180845261286a816020860160208601612a3b565b601f01601f19169290920160200192915050565b60008351612890818460208801612a3b565b8351908301906128a4818360208801612a3b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128e090830184612852565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208152600061194b6020830184612852565b6020808252601a908201527f63616c6c657220697320616e6f7468657220636f6e7472616374000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156129c2576129c2612ae3565b604052919050565b60006001600160401b038211156129e3576129e3612ae3565b5060051b60200190565b60008219821115612a0057612a00612ab7565b500190565b6000816000190483118215151615612a1f57612a1f612ab7565b500290565b600082821015612a3657612a36612ab7565b500390565b60005b83811015612a56578181015183820152602001612a3e565b838111156116695750506000910152565b600181811c90821680612a7b57607f821691505b6020821081141561281857634e487b7160e01b600052602260045260246000fd5b6000600019821415612ab057612ab0612ab7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ad557600080fdfea264697066735822122075c93b9a532d0fa046417d9f10f354635edc70b29e7ec6213a2322f15e8dadf664736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586b4765644a4c7453515543526e4c546f786362564e32774c4b38747842433557454b4d64564a5267485a652f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmXkGedJLtSQUCRnLToxcbVN2wLK8txBC5WEKMdVJRgHZe/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d586b4765644a4c7453515543526e4c546f786362564e32
Arg [3] : 774c4b38747842433557454b4d64564a5267485a652f00000000000000000000


Deployed Bytecode Sourcemap

272:7793:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5653:607:4;;;;;;;;;;-1:-1:-1;5653:607:4;;;;;:::i;:::-;;:::i;:::-;;;9947:14:7;;9940:22;9922:41;;9910:2;9895:18;5653:607:4;;;;;;;;11161:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13048:200::-;;;;;;;;;;-1:-1:-1;13048:200:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8942:32:7;;;8924:51;;8912:2;8897:18;13048:200:4;8778:203:7;12611:376:4;;;;;;;;;;-1:-1:-1;12611:376:4;;;;;:::i;:::-;;:::i;:::-;;1076:28:6;;;;;;;;;;-1:-1:-1;1076:28:6;;;;-1:-1:-1;;;;;1076:28:6;;;916:31;;;;;;;;;;-1:-1:-1;916:31:6;;;;;;;;;;;;;19498:25:7;;;19554:2;19539:18;;19532:34;;;;19471:18;916:31:6;19324:248:7;4736:309:4;;;;;;;;;;-1:-1:-1;4998:12:4;;4789:7;4982:13;:28;4736:309;;;19288:25:7;;;19276:2;19261:18;4736:309:4;19142:177:7;22055:2739:4;;;;;;;;;;-1:-1:-1;22055:2739:4;;;;;:::i;:::-;;:::i;6615:159:6:-;;;;;;;;;;-1:-1:-1;6615:159:6;;;;;:::i;:::-;;:::i;6933:190::-;;;;;;;;;;;;;:::i;7518:75::-;;;;;;;;;;;;;:::i;4828:291::-;;;;;;;;;;;;;:::i;13912:179:4:-;;;;;;;;;;-1:-1:-1;13912:179:4;;;;;:::i;:::-;;:::i;5401:105:6:-;;;;;;;;;;-1:-1:-1;5484:10:6;5452:4;5474:21;;;:9;:21;;;;;;:25;;5401:105;;7432:80;;;;;;;;;;;;;:::i;5964:139::-;;;;;;;;;;-1:-1:-1;5964:139:6;;;;;:::i;:::-;;:::i;866:44::-;;;;;;;;;;;;909:1;866:44;;;;;-1:-1:-1;;;;;19739:31:7;;;19721:50;;19709:2;19694:18;866:44:6;19577:200:7;1615:84:1;;;;;;;;;;-1:-1:-1;1685:7:1;;-1:-1:-1;;;1685:7:1;;;;1615:84;;6780:147:6;;;;;;;;;;-1:-1:-1;6780:147:6;;;;;:::i;:::-;;:::i;10957:142:4:-;;;;;;;;;;-1:-1:-1;10957:142:4;;;;;:::i;:::-;;:::i;953:28:6:-;;;;;;;;;;-1:-1:-1;953:28:6;;;;;;;;;7599:112;;;;;;;;;;;;;:::i;1049:21::-;;;;;;;;;;;;;:::i;821:39::-;;;;;;;;;;;;856:4;821:39;;6319:221:4;;;;;;;;;;-1:-1:-1;6319:221:4;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;2266:444:6:-;;;;;;:::i;:::-;;:::i;5125:270::-;;;;;;;;;;;;;:::i;1545:715::-;;;;;;;;;;-1:-1:-1;1545:715:6;;;;;:::i;:::-;;:::i;6109:318::-;;;;;;;;;;-1:-1:-1;6109:318:6;;;;;:::i;:::-;;:::i;773:33::-;;;;;;;;;;;;805:1;773:33;;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;11323:102:4;;;;;;;;;;;;;:::i;13315:303::-;;;;;;;;;;-1:-1:-1;13315:303:4;;;;;:::i;:::-;;:::i;5512:91:6:-;;;;;;;;;;-1:-1:-1;5556:7:6;5369:13:4;5512:91:6;4828:291;6437:168;;;;;;;;;;-1:-1:-1;6437:168:6;;;;;:::i;:::-;;:::i;1111:44::-;;;;;;;;;;-1:-1:-1;1111:44:6;;;;;:::i;:::-;;;;;;;;;;;;;;1017:26;;;;;;;;;;-1:-1:-1;1017:26:6;;;;;;;;14157:388:4;;;;;;;;;;-1:-1:-1;14157:388:4;;;;;:::i;:::-;;:::i;1161:43:6:-;;;;;;;;;;-1:-1:-1;1161:43:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;3687:695;;;;;;;;;;-1:-1:-1;3687:695:6;;;;;:::i;:::-;;:::i;11491:313:4:-;;;;;;;;;;-1:-1:-1;11491:313:4;;;;;:::i;:::-;;:::i;987:24:6:-;;;;;;;;;;-1:-1:-1;987:24:6;;;;;;;;;5609:111;;;;;;;;;;-1:-1:-1;5609:111:6;;;;;:::i;:::-;;:::i;2716:203::-;;;;;;:::i;:::-;;:::i;13684:162:4:-;;;;;;;;;;-1:-1:-1;13684:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;13804:25:4;;;13781:4;13804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13684:162;4516:306:6;;;;;;;;;;;;;:::i;2081:198:0:-;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;1211:43:6:-;;;;;;;;;;-1:-1:-1;1211:43:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;5653:607:4;5738:4;-1:-1:-1;;;;;;;;;6033:25:4;;;;:101;;-1:-1:-1;;;;;;;;;;6109:25:4;;;6033:101;:177;;;-1:-1:-1;;;;;;;;;;6185:25:4;;;6033:177;6014:196;5653:607;-1:-1:-1;;5653:607:4:o;11161:98::-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;13048:200::-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;-1:-1:-1;;;13165:34:4;;;;;;;;;;;13135:64;-1:-1:-1;13217:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;13217:24:4;;13048:200::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;-1:-1:-1;32960:10:4;-1:-1:-1;;;;;12730:28:4;;;12726:172;;12777:44;12794:5;32960:10;13684:162;:::i;12777:44::-;12772:126;;12848:35;;-1:-1:-1;;;12848:35:4;;;;;;;;;;;12772:126;12908:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12908:29:4;-1:-1:-1;;;;;12908:29:4;;;;;;;;;12952:28;;12908:24;;12952:28;;;;;;;12673:314;12611:376;;:::o;22055:2739::-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;-1:-1:-1;;;;;22256:45:4;22272:19;-1:-1:-1;;;;;22256:45:4;;22252:86;;22310:28;;-1:-1:-1;;;22310:28:4;;;;;;;;;;;22252:86;22350:27;20821:21;;;20652:15;20862:4;20855:36;20943:4;20927:21;;21031:26;;32960:10;21766:30;;;-1:-1:-1;;;;;21468:26:4;;21745:19;;;21742:55;22526:173;;22612:43;22629:4;32960:10;13684:162;:::i;22612:43::-;22607:92;;22664:35;;-1:-1:-1;;;22664:35:4;;;;;;;;;;;22607:92;-1:-1:-1;;;;;22714:16:4;;22710:52;;22739:23;;-1:-1:-1;;;22739:23:4;;;;;;;;;;;22710:52;22773:43;22795:4;22801:2;22805:7;22814:1;22773:21;:43::i;:::-;22905:15;22902:157;;;23043:1;23022:19;23015:30;22902:157;-1:-1:-1;;;;;23429:24:4;;;;;;;:18;:24;;;;;;23427:26;;-1:-1:-1;;23427:26:4;;;23497:22;;;;;;;;;23495:24;;-1:-1:-1;23495:24:4;;;10863:11;10839:22;10835:40;10822:62;-1:-1:-1;;;10822:62:4;23783:26;;;;:17;:26;;;;;:171;-1:-1:-1;;;24071:46:4;;24067:616;;24174:1;24164:11;;24142:19;24295:30;;;:17;:30;;;;;;24291:378;;24431:13;;24416:11;:28;24412:239;;24576:30;;;;:17;:30;;;;;:52;;;24412:239;24124:559;24067:616;24727:7;24723:2;-1:-1:-1;;;;;24708:27:4;24717:4;-1:-1:-1;;;;;24708:27:4;;;;;;;;;;;22174:2620;;;22055:2739;;;:::o;6615:159:6:-;1094:13:0;:11;:13::i;:::-;22018:19:7;;6696:14:6::1;22005:33:7::0;;;22092:2;22081:14;;;22068:28;22054:12;22047:50;;;6735:32:6::1;::::0;;19022:39:7;;;19077:20;;;19070:61;6735:32:6::1;::::0;18995:18:7;6735:32:6::1;;;;;;;;6615:159:::0;:::o;6933:190::-;1094:13:0;:11;:13::i;:::-;7031:39:6::1;::::0;7000:21:::1;::::0;32960:10:4;;7031:39:6;::::1;;;::::0;7000:21;;7031:39:::1;::::0;;;7000:21;32960:10:4;7031:39:6;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;7085:31:6::1;::::0;19288:25:7;;;32960:10:4;;7085:31:6::1;::::0;19276:2:7;19261:18;7085:31:6::1;;;;;;;6972:151;6933:190::o:0;7518:75::-;1094:13:0;:11;:13::i;:::-;8011:14:6::1;::::0;::::1;;8010:15;8002:43;;;::::0;-1:-1:-1;;;8002:43:6;;12605:2:7;8002:43:6::1;::::0;::::1;12587:21:7::0;12644:2;12624:18;;;12617:30;-1:-1:-1;;;12663:18:7;;;12656:45;12718:18;;8002:43:6::1;;;;;;;;;7576:10:::2;:8;:10::i;:::-;7518:75::o:0;4828:291::-;4900:22;;4880:4;;4900:26;;;;:70;;-1:-1:-1;4948:22:6;;4930:15;:40;4900:70;4896:113;;;-1:-1:-1;4993:5:6;;4828:291::o;4896:113::-;5025:14;:24;:28;;;;:87;;-1:-1:-1;5088:14:6;:24;5070:15;:42;5025:87;5018:94;;4828:291;:::o;13912:179:4:-;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;7432:80:6:-;1094:13:0;:11;:13::i;:::-;8011:14:6::1;::::0;::::1;;8010:15;8002:43;;;::::0;-1:-1:-1;;;8002:43:6;;12605:2:7;8002:43:6::1;::::0;::::1;12587:21:7::0;12644:2;12624:18;;;12617:30;-1:-1:-1;;;12663:18:7;;;12656:45;12718:18;;8002:43:6::1;12403:339:7::0;8002:43:6::1;7497:8:::2;:6;:8::i;5964:139::-:0;1094:13:0;:11;:13::i;:::-;6039:18:6::1;:7;6049:8:::0;;6039:18:::1;:::i;:::-;;6072:24;6087:8;;6072:24;;;;;;;:::i;:::-;;;;;;;;5964:139:::0;;:::o;6780:147::-;1094:13:0;:11;:13::i;:::-;22018:19:7;;6857:10:6::1;22005:33:7::0;;;22092:2;22081:14;;;22068:28;22054:12;22047:50;;;6892:28:6::1;::::0;;19022:39:7;;;19077:20;;;19070:61;6892:28:6::1;::::0;18995:18:7;6892:28:6::1;18826:311:7::0;10957:142:4;11021:7;11063:27;11082:7;11063:18;:27::i;7599:112:6:-;1094:13:0;:11;:13::i;:::-;7652:14:6::1;:21:::0;;-1:-1:-1;;7652:21:6::1;7669:4;7652:21;::::0;;7688:16:::1;::::0;::::1;::::0;7652:14:::1;::::0;7688:16:::1;7599:112::o:0;1049:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6319:221:4:-;6383:7;-1:-1:-1;;;;;6406:19:4;;6402:60;;6434:28;;-1:-1:-1;;;6434:28:4;;;;;;;;;;;6402:60;-1:-1:-1;;;;;;6479:25:4;;;;;:18;:25;;;;;;-1:-1:-1;;;;;6479:54:4;;6319:221::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;2266:444:6:-:0;7891:9;32960:10:4;7891:25:6;7883:64;;;;-1:-1:-1;;;7883:64:6;;;;;;;:::i;:::-;1744:1:2::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:2::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;2374:24:6::2;:22;:24::i;:::-;2366:67;;;::::0;-1:-1:-1;;;2366:67:6;;17266:2:7;2366:67:6::2;::::0;::::2;17248:21:7::0;17305:2;17285:18;;;17278:30;17344:32;17324:18;;;17317:60;17394:18;;2366:67:6::2;17064:354:7::0;2366:67:6::2;5484:10:::0;5452:4;5474:21;;;:9;:21;;;;;;2443:61:::2;;;::::0;-1:-1:-1;;;2443:61:6;;16909:2:7;2443:61:6::2;::::0;::::2;16891:21:7::0;16948:2;16928:18;;;16921:30;16987;16967:18;;;16960:58;17035:18;;2443:61:6::2;16707:352:7::0;2443:61:6::2;2551:10;2541:21;::::0;;;:9:::2;:21;::::0;;;;;-1:-1:-1;;;;;2522:40:6;::::2;;;2514:78;;;::::0;-1:-1:-1;;;2514:78:6;;15462:2:7;2514:78:6::2;::::0;::::2;15444:21:7::0;15501:2;15481:18;;;15474:30;15540:27;15520:18;;;15513:55;15585:18;;2514:78:6::2;15260:349:7::0;2514:78:6::2;2602:28;2607:15;805:1;2602:4;:28::i;:::-;2674:10;2664:21;::::0;;;:9:::2;:21;::::0;;;;;:39:::2;::::0;-1:-1:-1;;;;;2664:39:6;::::2;::::0;::::2;:::i;:::-;2650:10;2640:21;::::0;;;:9:::2;:21;::::0;;;;:63;-1:-1:-1;1701:1:2::1;2628:7;:22:::0;2266:444:6:o;5125:270::-;5192:18;;5173:4;;5192:22;;;;:62;;-1:-1:-1;5236:18:6;;5218:15;:36;5192:62;5188:105;;;-1:-1:-1;5277:5:6;;5125:270::o;5188:105::-;5309:10;:20;:24;;;;:79;;-1:-1:-1;;5368:10:6;:20;5350:15;:38;;5125:270::o;1545:715::-;1094:13:0;:11;:13::i;:::-;1744:1:2::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:2::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;1692:22:6;;1673:15;;:41:::2;1665:77;;;::::0;-1:-1:-1;;;1665:77:6;;17969:2:7;1665:77:6::2;::::0;::::2;17951:21:7::0;18008:2;17988:18;;;17981:30;18047:25;18027:18;;;18020:53;18090:18;;1665:77:6::2;17767:347:7::0;1665:77:6::2;1756:9;1752:502;1775:8;:15;1771:1;:19;1752:502;;;1841:1;-1:-1:-1::0;;;;;1818:25:6::2;:8;1827:1;1818:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;1818:25:6::2;;;1810:50;;;::::0;-1:-1:-1;;;1810:50:6;;15816:2:7;1810:50:6::2;::::0;::::2;15798:21:7::0;15855:2;15835:18;;;15828:30;-1:-1:-1;;;15874:18:7;;;15867:42;15926:18;;1810:50:6::2;15614:336:7::0;1810:50:6::2;1903:1;1882:15;1898:1;1882:18;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;1882:22:6::2;;1874:60;;;::::0;-1:-1:-1;;;1874:60:6;;12949:2:7;1874:60:6::2;::::0;::::2;12931:21:7::0;12988:2;12968:18;;;12961:30;-1:-1:-1;;;13007:18:7;;;13000:54;13071:18;;1874:60:6::2;12747:348:7::0;1874:60:6::2;856:4;-1:-1:-1::0;;;;;1956:47:6::2;1972:15;1988:1;1972:18;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;1956:34:6::2;:13;5556:7:::0;5369:13:4;;4828:291:6;1956:13:::2;:34;;;;:::i;:::-;:47;;1948:79;;;::::0;-1:-1:-1;;;1948:79:6;;11901:2:7;1948:79:6::2;::::0;::::2;11883:21:7::0;11940:2;11920:18;;;11913:30;-1:-1:-1;;;11959:18:7;;;11952:49;12018:18;;1948:79:6::2;11699:343:7::0;1948:79:6::2;2041:18;5369:13:4::0;;2041:34:6::2;;2089:42;2099:8;2108:1;2099:11;;;;;;;;:::i;:::-;;;;;;;2112:15;2128:1;2112:18;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2089:42:6::2;:9;:42::i;:::-;2149:9;2145:98;2168:15;2184:1;2168:18;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2164:22:6::2;:1;:22;2145:98;;;2239:4;2209:11;:27;2221:14;2234:1:::0;2221:10;:14:::2;:::i;:::-;2209:27:::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;2209:27:6;:34;;-1:-1:-1;;2209:34:6::2;::::0;::::2;;::::0;;;::::2;::::0;;2188:3;::::2;::::0;::::2;:::i;:::-;;;;2145:98;;;;1796:458;1792:3;;;;;:::i;:::-;;;;1752:502;;;-1:-1:-1::0;;1701:1:2::1;2628:7;:22:::0;-1:-1:-1;1545:715:6:o;6109:318::-;1094:13:0;:11;:13::i;:::-;6265:8:6::1;:15;6245:9;:16;:35;6237:65;;;::::0;-1:-1:-1;;;6237:65:6;;14755:2:7;6237:65:6::1;::::0;::::1;14737:21:7::0;14794:2;14774:18;;;14767:30;-1:-1:-1;;;14813:18:7;;;14806:47;14870:18;;6237:65:6::1;14553:341:7::0;6237:65:6::1;6317:9;6312:109;6336:9;:16;6332:1;:20;6312:109;;;6399:8;6408:1;6399:11;;;;;;;;:::i;:::-;;;;;;;6373:9;:23;6383:9;6393:1;6383:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;6373:23:6::1;-1:-1:-1::0;;;;;6373:23:6::1;;;;;;;;;;;;:37;;;;6354:3;;;;;:::i;:::-;;;;6312:109;;11323:102:4::0;11379:13;11411:7;11404:14;;;;;:::i;13315:303::-;-1:-1:-1;;;;;13413:31:4;;32960:10;13413:31;13409:61;;;13453:17;;-1:-1:-1;;;13453:17:4;;;;;;;;;;;13409:61;32960:10;13481:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;13481:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;13481:60:4;;;;;;;;;;13556:55;;9922:41:7;;;13481:49:4;;32960:10;13556:55;;9895:18:7;13556:55:4;;;;;;;13315:303;;:::o;6437:168:6:-;1094:13:0;:11;:13::i;:::-;22018:19:7;;6521:17:6::1;22005:33:7::0;;;22092:2;22081:14;;;22068:28;22054:12;22047:50;;;6563:35:6::1;::::0;;19022:39:7;;;19077:20;;;19070:61;6563:35:6::1;::::0;18995:18:7;6563:35:6::1;18826:311:7::0;14157:388:4;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;-1:-1:-1;;;;;14363:14:4;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;-1:-1:-1;;;14484:40:4;;;;;;;;;;;14396:143;14157:388;;;;:::o;3687:695:6:-;7891:9;32960:10:4;7891:25:6;7883:64;;;;-1:-1:-1;;;7883:64:6;;;;;;;:::i;:::-;1744:1:2::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:2::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;3790:17:6::2;:15;:17::i;:::-;3782:48;;;::::0;-1:-1:-1;;;3782:48:6;;18321:2:7;3782:48:6::2;::::0;::::2;18303:21:7::0;18360:2;18340:18;;;18333:30;-1:-1:-1;;;18379:18:7;;;18372:48;18437:18;;3782:48:6::2;18119:342:7::0;3782:48:6::2;3846:9;3841:424;3861:19:::0;;::::2;3841:424;;;3901:15;3919:8;;3928:1;3919:11;;;;;;;:::i;:::-;;;;;;;3901:29;;3966:16;3974:7;3966;:16::i;:::-;-1:-1:-1::0;;;;;3952:30:6::2;:10;-1:-1:-1::0;;;;;3952:30:6::2;;3944:58;;;::::0;-1:-1:-1;;;3944:58:6;;17625:2:7;3944:58:6::2;::::0;::::2;17607:21:7::0;17664:2;17644:18;;;17637:30;-1:-1:-1;;;17683:18:7;;;17676:45;17738:18;;3944:58:6::2;17423:339:7::0;3944:58:6::2;4025:20;::::0;;;:11:::2;:20;::::0;;;;;::::2;;4024:21;4016:50;;;::::0;-1:-1:-1;;;4016:50:6;;16157:2:7;4016:50:6::2;::::0;::::2;16139:21:7::0;16196:2;16176:18;;;16169:30;-1:-1:-1;;;16215:18:7;;;16208:46;16271:18;;4016:50:6::2;15955:340:7::0;4016:50:6::2;4089:20;::::0;;;:11:::2;:20;::::0;;;;;::::2;;4088:21;4080:71;;;::::0;-1:-1:-1;;;4080:71:6;;13994:2:7;4080:71:6::2;::::0;::::2;13976:21:7::0;14033:2;14013:18;;;14006:30;14072:34;14052:18;;;14045:62;-1:-1:-1;;;14123:18:7;;;14116:35;14168:19;;4080:71:6::2;13792:401:7::0;4080:71:6::2;4165:20;::::0;;;:11:::2;:20;::::0;;;;:27;;-1:-1:-1;;4165:27:6::2;4188:4;4165:27;::::0;;4231:13:::2;::::0;4206:48:::2;::::0;4219:10:::2;::::0;-1:-1:-1;;;;;4231:13:6::2;4177:7:::0;4206:12:::2;:48::i;:::-;-1:-1:-1::0;3882:3:6;::::2;::::0;::::2;:::i;:::-;;;;3841:424;;;-1:-1:-1::0;4275:20:6::2;4298:23;4275:20:::0;4298:8;:23:::2;:::i;:::-;4331:44;::::0;4275:46;;-1:-1:-1;32960:10:4;;4331:44:6;::::2;;;::::0;4275:46;;4331:44:::2;::::0;;;4275:46;32960:10:4;4331:44:6;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1701:1:2::1;2628:7;:22:::0;-1:-1:-1;;3687:695:6:o;11491:313:4:-;11564:13;11594:16;11602:7;11594;:16::i;:::-;11589:59;;11619:29;;-1:-1:-1;;;11619:29:4;;;;;;;;;;;11589:59;11659:21;11683:10;:8;:10::i;:::-;11659:34;;11716:7;11710:21;11735:1;11710:26;;:87;;;;;;;;;;;;;;;;;11763:7;11772:18;11782:7;11772:9;:18::i;:::-;11746:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11710:87;11703:94;11491:313;-1:-1:-1;;;11491:313:4:o;5609:111:6:-;-1:-1:-1;;;;;6705:25:4;;5667:7:6;6705:25:4;;;:18;:25;;1156:2;6705:25;;;;-1:-1:-1;;;;;6705:49:4;;6704:80;5693:20:6;6617:174:4;2716:203:6;7891:9;32960:10:4;7891:25:6;7883:64;;;;-1:-1:-1;;;7883:64:6;;;;;;;:::i;:::-;1744:1:2::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:2::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;2821:21:6::2;:19;:21::i;:::-;2813:61;;;::::0;-1:-1:-1;;;2813:61:6;;12249:2:7;2813:61:6::2;::::0;::::2;12231:21:7::0;12288:2;12268:18;;;12261:30;12327:29;12307:18;;;12300:57;12374:18;;2813:61:6::2;12047:351:7::0;2813:61:6::2;2884:28;2889:15;805:1;2884:4;:28::i;:::-;-1:-1:-1::0;1701:1:2::1;2628:7;:22:::0;2716:203:6:o;4516:306::-;4591:25;;4571:4;;4591:29;;;;:76;;-1:-1:-1;4642:25:6;;4624:15;:43;4591:76;4587:119;;;-1:-1:-1;4690:5:6;;4516:306::o;4587:119::-;4722:17;:27;:31;;;;:93;;-1:-1:-1;;4788:17:6;:27;4770:15;:45;;4516:306::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;11494:2:7;2161:73:0::1;::::0;::::1;11476:21:7::0;11533:2;11513:18;;;11506:30;11572:34;11552:18;;;11545:62;-1:-1:-1;;;11623:18:7;;;11616:36;11669:19;;2161:73:0::1;11292:402:7::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;14791:268:4:-;14848:4;14935:13;;14925:7;:23;14883:150;;;;-1:-1:-1;;14985:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;14985:43:4;:48;;14791:268::o;7949:1105::-;8016:7;8050;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:23;;;:17;:23;;;;;;-1:-1:-1;;;8289:23:4;;8285:687;;8800:111;8807:11;8800:111;;-1:-1:-1;;;8877:6:4;8859:25;;;;:17;:25;;;;;;8800:111;;8285:687;8163:827;8137:853;9016:31;;-1:-1:-1;;;9016:31:4;;;;;;;;;;;7133:292:6;1685:7:1;;-1:-1:-1;;;1685:7:1;;;;7383:9:6;7375:43;;;;-1:-1:-1;;;7375:43:6;;11144:2:7;7375:43:6;;;11126:21:7;11183:2;11163:18;;;11156:30;-1:-1:-1;;;11202:18:7;;;11195:51;11263:18;;7375:43:6;10942:345:7;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;32960:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;15101:2:7;1414:68:0;;;15083:21:7;;;15120:18;;;15113:30;15179:34;15159:18;;;15152:62;15231:18;;1414:68:0;14899:356:7;2433:117:1;1486:16;:14;:16::i;:::-;2491:7:::1;:15:::0;;-1:-1:-1;;;;2491:15:1::1;::::0;;2521:22:::1;32960:10:4::0;2530:12:1::1;2521:22;::::0;-1:-1:-1;;;;;8942:32:7;;;8924:51;;8912:2;8897:18;2521:22:1::1;;;;;;;2433:117::o:0;2186:115::-;1239:19;:17;:19::i;:::-;2245:7:::1;:14:::0;;-1:-1:-1;;;;2245:14:1::1;-1:-1:-1::0;;;2245:14:1::1;::::0;;2274:20:::1;2281:12;32960:10:4::0;;32874:103;2433:187:0;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;2925:586:6:-;3024:1;3006:15;-1:-1:-1;;;;;3006:19:6;;2998:56;;;;-1:-1:-1;;;2998:56:6;;12949:2:7;2998:56:6;;;12931:21:7;12988:2;12968:18;;;12961:30;-1:-1:-1;;;13007:18:7;;;13000:54;13071:18;;2998:56:6;12747:348:7;2998:56:6;909:1;3090:24;3103:10;3090:12;:24::i;:::-;3072:42;;-1:-1:-1;;;;;3072:42:6;;;:::i;:::-;:63;;3064:114;;;;-1:-1:-1;;;3064:114:6;;16502:2:7;3064:114:6;;;16484:21:7;16541:2;16521:18;;;16514:30;16580:34;16560:18;;;16553:62;-1:-1:-1;;;16631:18:7;;;16624:36;16677:19;;3064:114:6;16300:402:7;3064:114:6;856:4;-1:-1:-1;;;;;3196:31:6;;:13;5556:7;5369:13:4;;4828:291:6;3196:13;:31;;;;:::i;:::-;:44;;3188:76;;;;-1:-1:-1;;;3188:76:6;;11901:2:7;3188:76:6;;;11883:21:7;11940:2;11920:18;;;11913:30;-1:-1:-1;;;11959:18:7;;;11952:49;12018:18;;3188:76:6;11699:343:7;3188:76:6;3274:14;3291:24;-1:-1:-1;;;;;3291:24:6;;:6;:24;:::i;:::-;3274:41;;3343:9;3333:6;:19;;3325:50;;;;-1:-1:-1;;;3325:50:6;;13647:2:7;3325:50:6;;;13629:21:7;13686:2;13666:18;;;13659:30;-1:-1:-1;;;13705:18:7;;;13698:48;13763:18;;3325:50:6;13445:342:7;3325:50:6;3385:40;32960:10:4;3409:15:6;-1:-1:-1;;;;;3385:40:6;:9;:40::i;:::-;3435:19;3447:6;3435:11;:19::i;:::-;3469:35;;;3476:10;9652:51:7;;-1:-1:-1;;;;;9739:31:7;;9734:2;9719:18;;9712:59;3469:35:6;;9625:18:7;3469:35:6;;;;;;;2988:523;2925:586;;:::o;15138:102:4:-;15206:27;15216:2;15220:8;15206:27;;;;;;;;;;;;:9;:27::i;:::-;15138:102;;:::o;28649:697::-;28827:88;;-1:-1:-1;;;28827:88:4;;28807:4;;-1:-1:-1;;;;;28827:45:4;;;;;:88;;32960:10;;28894:4;;28900:7;;28909:5;;28827:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28827:88:4;;;;;;;;-1:-1:-1;;28827:88:4;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29105:13:4;;29101:229;;29150:40;;-1:-1:-1;;;29150:40:4;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;-1:-1:-1;;;;;;28983:64:4;-1:-1:-1;;;28983:64:4;;-1:-1:-1;28649:697:4;;;;;;:::o;5726:106:6:-;5786:13;5818:7;5811:14;;;;;:::i;33078:1920:4:-;33541:4;33535:11;;33548:3;33531:21;;33624:17;;;;34307:11;;;34188:5;34437:2;34451;34441:13;;34433:22;34307:11;34420:36;34491:2;34481:13;;34082:682;34509:4;34082:682;;;34695:1;34690:3;34686:11;34679:18;;34745:2;34739:4;34735:13;34731:2;34727:22;34722:3;34714:36;34602:2;34592:13;;34082:682;;;-1:-1:-1;34792:13:4;;;-1:-1:-1;;34905:12:4;;;34963:19;;;34905:12;33078:1920;-1:-1:-1;33078:1920:4:o;1945:106:1:-;1685:7;;-1:-1:-1;;;1685:7:1;;;;2003:41;;;;-1:-1:-1;;;2003:41:1;;10795:2:7;2003:41:1;;;10777:21:7;10834:2;10814:18;;;10807:30;-1:-1:-1;;;10853:18:7;;;10846:50;10913:18;;2003:41:1;10593:344:7;1767:106:1;1685:7;;-1:-1:-1;;;1685:7:1;;;;1836:9;1828:38;;;;-1:-1:-1;;;1828:38:1;;13302:2:7;1828:38:1;;;13284:21:7;13341:2;13321:18;;;13314:30;-1:-1:-1;;;13360:18:7;;;13353:46;13416:18;;1828:38:1;13100:340:7;3518:163:6;3590:7;3578:9;:19;3574:101;;;32960:10:4;3613:51:6;3644:19;3656:7;3644:9;:19;:::i;:::-;3613:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15641:661:4;15759:19;15765:2;15769:8;15759:5;:19::i;:::-;-1:-1:-1;;;;;15817:14:4;;;:19;15813:473;;15856:11;15870:13;15917:14;;;15949:229;15979:62;16018:1;16022:2;16026:7;;;;;;16035:5;15979:30;:62::i;:::-;15974:165;;16076:40;;-1:-1:-1;;;16076:40:4;;;;;;;;;;;15974:165;16173:3;16165:5;:11;15949:229;;16258:3;16241:13;;:20;16237:34;;16263:8;;;16237:34;15838:448;;15641:661;;;:::o;16563:1492::-;16627:20;16650:13;-1:-1:-1;;;;;16677:16:4;;16673:48;;16702:19;;-1:-1:-1;;;16702:19:4;;;;;;;;;;;16673:48;16735:13;16731:44;;16757:18;;-1:-1:-1;;;16757:18:4;;;;;;;;;;;16731:44;16786:61;16816:1;16820:2;16824:12;16838:8;16786:21;:61::i;:::-;-1:-1:-1;;;;;17250:22:4;;;;;;:18;:22;;1156:2;17250:22;;:70;;17288:31;17276:44;;17250:70;;;10863:11;10839:22;10835:40;-1:-1:-1;12522:15:4;;12497:23;12493:45;10832:51;10822:62;17556:31;;;;:17;:31;;;;;:170;17574:12;17799:23;;;17836:99;17862:35;;17887:9;;;;;-1:-1:-1;;;;;17862:35:4;;;17879:1;;17862:35;;17879:1;;17862:35;17930:3;17920:7;:13;17836:99;;17949:13;:19;-1:-1:-1;13912:179:4;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:7;82:20;;-1:-1:-1;;;;;131:31:7;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:679::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:169;687:2;684:1;681:9;673:169;;;744:23;763:3;744:23;:::i;:::-;732:36;;788:12;;;;820;;;;705:1;698:9;673:169;;;-1:-1:-1;860:5:7;;192:679;-1:-1:-1;;;;;;;192:679:7:o;876:171::-;943:20;;-1:-1:-1;;;;;992:30:7;;982:41;;972:69;;1037:1;1034;1027:12;1052:186;1111:6;1164:2;1152:9;1143:7;1139:23;1135:32;1132:52;;;1180:1;1177;1170:12;1132:52;1203:29;1222:9;1203:29;:::i;1243:260::-;1311:6;1319;1372:2;1360:9;1351:7;1347:23;1343:32;1340:52;;;1388:1;1385;1378:12;1340:52;1411:29;1430:9;1411:29;:::i;:::-;1401:39;;1459:38;1493:2;1482:9;1478:18;1459:38;:::i;:::-;1449:48;;1243:260;;;;;:::o;1508:328::-;1585:6;1593;1601;1654:2;1642:9;1633:7;1629:23;1625:32;1622:52;;;1670:1;1667;1660:12;1622:52;1693:29;1712:9;1693:29;:::i;:::-;1683:39;;1741:38;1775:2;1764:9;1760:18;1741:38;:::i;:::-;1731:48;;1826:2;1815:9;1811:18;1798:32;1788:42;;1508:328;;;;;:::o;1841:980::-;1936:6;1944;1952;1960;2013:3;2001:9;1992:7;1988:23;1984:33;1981:53;;;2030:1;2027;2020:12;1981:53;2053:29;2072:9;2053:29;:::i;:::-;2043:39;;2101:2;2122:38;2156:2;2145:9;2141:18;2122:38;:::i;:::-;2112:48;;2207:2;2196:9;2192:18;2179:32;2169:42;;2262:2;2251:9;2247:18;2234:32;-1:-1:-1;;;;;2326:2:7;2318:6;2315:14;2312:34;;;2342:1;2339;2332:12;2312:34;2380:6;2369:9;2365:22;2355:32;;2425:7;2418:4;2414:2;2410:13;2406:27;2396:55;;2447:1;2444;2437:12;2396:55;2483:2;2470:16;2505:2;2501;2498:10;2495:36;;;2511:18;;:::i;:::-;2553:53;2596:2;2577:13;;-1:-1:-1;;2573:27:7;2569:36;;2553:53;:::i;:::-;2540:66;;2629:2;2622:5;2615:17;2669:7;2664:2;2659;2655;2651:11;2647:20;2644:33;2641:53;;;2690:1;2687;2680:12;2641:53;2745:2;2740;2736;2732:11;2727:2;2720:5;2716:14;2703:45;2789:1;2784:2;2779;2772:5;2768:14;2764:23;2757:34;;2810:5;2800:15;;;;;1841:980;;;;;;;:::o;2826:347::-;2891:6;2899;2952:2;2940:9;2931:7;2927:23;2923:32;2920:52;;;2968:1;2965;2958:12;2920:52;2991:29;3010:9;2991:29;:::i;:::-;2981:39;;3070:2;3059:9;3055:18;3042:32;3117:5;3110:13;3103:21;3096:5;3093:32;3083:60;;3139:1;3136;3129:12;3083:60;3162:5;3152:15;;;2826:347;;;;;:::o;3178:254::-;3246:6;3254;3307:2;3295:9;3286:7;3282:23;3278:32;3275:52;;;3323:1;3320;3313:12;3275:52;3346:29;3365:9;3346:29;:::i;:::-;3336:39;3422:2;3407:18;;;;3394:32;;-1:-1:-1;;;3178:254:7:o;3437:1149::-;3555:6;3563;3616:2;3604:9;3595:7;3591:23;3587:32;3584:52;;;3632:1;3629;3622:12;3584:52;3672:9;3659:23;-1:-1:-1;;;;;3742:2:7;3734:6;3731:14;3728:34;;;3758:1;3755;3748:12;3728:34;3781:61;3834:7;3825:6;3814:9;3810:22;3781:61;:::i;:::-;3771:71;;3861:2;3851:12;;3916:2;3905:9;3901:18;3888:32;3945:2;3935:8;3932:16;3929:36;;;3961:1;3958;3951:12;3929:36;3984:24;;;-1:-1:-1;4039:4:7;4031:13;;4027:27;-1:-1:-1;4017:55:7;;4068:1;4065;4058:12;4017:55;4104:2;4091:16;4127:60;4143:43;4183:2;4143:43;:::i;4127:60::-;4209:3;4233:2;4228:3;4221:15;4261:2;4256:3;4252:12;4245:19;;4292:2;4288;4284:11;4340:7;4335:2;4329;4326:1;4322:10;4318:2;4314:19;4310:28;4307:41;4304:61;;;4361:1;4358;4351:12;4304:61;4383:1;4374:10;;4393:163;4407:2;4404:1;4401:9;4393:163;;;4464:17;;4452:30;;4425:1;4418:9;;;;;4502:12;;;;4534;;4393:163;;;4397:3;4575:5;4565:15;;;;;;;3437:1149;;;;;:::o;4591:1153::-;4708:6;4716;4769:2;4757:9;4748:7;4744:23;4740:32;4737:52;;;4785:1;4782;4775:12;4737:52;4825:9;4812:23;-1:-1:-1;;;;;4895:2:7;4887:6;4884:14;4881:34;;;4911:1;4908;4901:12;4881:34;4934:61;4987:7;4978:6;4967:9;4963:22;4934:61;:::i;:::-;4924:71;;5014:2;5004:12;;5069:2;5058:9;5054:18;5041:32;5098:2;5088:8;5085:16;5082:36;;;5114:1;5111;5104:12;5082:36;5137:24;;;-1:-1:-1;5192:4:7;5184:13;;5180:27;-1:-1:-1;5170:55:7;;5221:1;5218;5211:12;5170:55;5257:2;5244:16;5280:60;5296:43;5336:2;5296:43;:::i;5280:60::-;5362:3;5386:2;5381:3;5374:15;5414:2;5409:3;5405:12;5398:19;;5445:2;5441;5437:11;5493:7;5488:2;5482;5479:1;5475:10;5471:2;5467:19;5463:28;5460:41;5457:61;;;5514:1;5511;5504:12;5457:61;5536:1;5527:10;;5546:168;5560:2;5557:1;5554:9;5546:168;;;5617:22;5635:3;5617:22;:::i;:::-;5605:35;;5578:1;5571:9;;;;;5660:12;;;;5692;;5546:168;;5749:615;5835:6;5843;5896:2;5884:9;5875:7;5871:23;5867:32;5864:52;;;5912:1;5909;5902:12;5864:52;5952:9;5939:23;-1:-1:-1;;;;;6022:2:7;6014:6;6011:14;6008:34;;;6038:1;6035;6028:12;6008:34;6076:6;6065:9;6061:22;6051:32;;6121:7;6114:4;6110:2;6106:13;6102:27;6092:55;;6143:1;6140;6133:12;6092:55;6183:2;6170:16;6209:2;6201:6;6198:14;6195:34;;;6225:1;6222;6215:12;6195:34;6278:7;6273:2;6263:6;6260:1;6256:14;6252:2;6248:23;6244:32;6241:45;6238:65;;;6299:1;6296;6289:12;6238:65;6330:2;6322:11;;;;;6352:6;;-1:-1:-1;5749:615:7;;-1:-1:-1;;;;5749:615:7:o;6369:245::-;6427:6;6480:2;6468:9;6459:7;6455:23;6451:32;6448:52;;;6496:1;6493;6486:12;6448:52;6535:9;6522:23;6554:30;6578:5;6554:30;:::i;6619:249::-;6688:6;6741:2;6729:9;6720:7;6716:23;6712:32;6709:52;;;6757:1;6754;6747:12;6709:52;6789:9;6783:16;6808:30;6832:5;6808:30;:::i;6873:592::-;6944:6;6952;7005:2;6993:9;6984:7;6980:23;6976:32;6973:52;;;7021:1;7018;7011:12;6973:52;7061:9;7048:23;-1:-1:-1;;;;;7131:2:7;7123:6;7120:14;7117:34;;;7147:1;7144;7137:12;7117:34;7185:6;7174:9;7170:22;7160:32;;7230:7;7223:4;7219:2;7215:13;7211:27;7201:55;;7252:1;7249;7242:12;7201:55;7292:2;7279:16;7318:2;7310:6;7307:14;7304:34;;;7334:1;7331;7324:12;7304:34;7379:7;7374:2;7365:6;7361:2;7357:15;7353:24;7350:37;7347:57;;;7400:1;7397;7390:12;7470:192;7555:6;7608:2;7596:9;7587:7;7583:23;7579:32;7576:52;;;7624:1;7621;7614:12;7576:52;-1:-1:-1;7647:9:7;7470:192;-1:-1:-1;7470:192:7:o;7667:180::-;7726:6;7779:2;7767:9;7758:7;7754:23;7750:32;7747:52;;;7795:1;7792;7785:12;7747:52;-1:-1:-1;7818:23:7;;7667:180;-1:-1:-1;7667:180:7:o;7852:184::-;7910:6;7963:2;7951:9;7942:7;7938:23;7934:32;7931:52;;;7979:1;7976;7969:12;7931:52;8002:28;8020:9;8002:28;:::i;8041:257::-;8082:3;8120:5;8114:12;8147:6;8142:3;8135:19;8163:63;8219:6;8212:4;8207:3;8203:14;8196:4;8189:5;8185:16;8163:63;:::i;:::-;8280:2;8259:15;-1:-1:-1;;8255:29:7;8246:39;;;;8287:4;8242:50;;8041:257;-1:-1:-1;;8041:257:7:o;8303:470::-;8482:3;8520:6;8514:13;8536:53;8582:6;8577:3;8570:4;8562:6;8558:17;8536:53;:::i;:::-;8652:13;;8611:16;;;;8674:57;8652:13;8611:16;8708:4;8696:17;;8674:57;:::i;:::-;8747:20;;8303:470;-1:-1:-1;;;;8303:470:7:o;8986:488::-;-1:-1:-1;;;;;9255:15:7;;;9237:34;;9307:15;;9302:2;9287:18;;9280:43;9354:2;9339:18;;9332:34;;;9402:3;9397:2;9382:18;;9375:31;;;9180:4;;9423:45;;9448:19;;9440:6;9423:45;:::i;:::-;9415:53;8986:488;-1:-1:-1;;;;;;8986:488:7:o;9974:390::-;10133:2;10122:9;10115:21;10172:6;10167:2;10156:9;10152:18;10145:34;10229:6;10221;10216:2;10205:9;10201:18;10188:48;10285:1;10256:22;;;10280:2;10252:31;;;10245:42;;;;10348:2;10327:15;;;-1:-1:-1;;10323:29:7;10308:45;10304:54;;9974:390;-1:-1:-1;9974:390:7:o;10369:219::-;10518:2;10507:9;10500:21;10481:4;10538:44;10578:2;10567:9;10563:18;10555:6;10538:44;:::i;14198:350::-;14400:2;14382:21;;;14439:2;14419:18;;;14412:30;14478:28;14473:2;14458:18;;14451:56;14539:2;14524:18;;14198:350::o;18466:355::-;18668:2;18650:21;;;18707:2;18687:18;;;18680:30;18746:33;18741:2;18726:18;;18719:61;18812:2;18797:18;;18466:355::o;19782:275::-;19853:2;19847:9;19918:2;19899:13;;-1:-1:-1;;19895:27:7;19883:40;;-1:-1:-1;;;;;19938:34:7;;19974:22;;;19935:62;19932:88;;;20000:18;;:::i;:::-;20036:2;20029:22;19782:275;;-1:-1:-1;19782:275:7:o;20062:183::-;20122:4;-1:-1:-1;;;;;20147:6:7;20144:30;20141:56;;;20177:18;;:::i;:::-;-1:-1:-1;20222:1:7;20218:14;20234:4;20214:25;;20062:183::o;20250:128::-;20290:3;20321:1;20317:6;20314:1;20311:13;20308:39;;;20327:18;;:::i;:::-;-1:-1:-1;20363:9:7;;20250:128::o;20383:168::-;20423:7;20489:1;20485;20481:6;20477:14;20474:1;20471:21;20466:1;20459:9;20452:17;20448:45;20445:71;;;20496:18;;:::i;:::-;-1:-1:-1;20536:9:7;;20383:168::o;20556:125::-;20596:4;20624:1;20621;20618:8;20615:34;;;20629:18;;:::i;:::-;-1:-1:-1;20666:9:7;;20556:125::o;20686:258::-;20758:1;20768:113;20782:6;20779:1;20776:13;20768:113;;;20858:11;;;20852:18;20839:11;;;20832:39;20804:2;20797:10;20768:113;;;20899:6;20896:1;20893:13;20890:48;;;-1:-1:-1;;20934:1:7;20916:16;;20909:27;20686:258::o;20949:380::-;21028:1;21024:12;;;;21071;;;21092:61;;21146:4;21138:6;21134:17;21124:27;;21092:61;21199:2;21191:6;21188:14;21168:18;21165:38;21162:161;;;21245:10;21240:3;21236:20;21233:1;21226:31;21280:4;21277:1;21270:15;21308:4;21305:1;21298:15;21334:135;21373:3;-1:-1:-1;;21394:17:7;;21391:43;;;21414:18;;:::i;:::-;-1:-1:-1;21461:1:7;21450:13;;21334:135::o;21474:127::-;21535:10;21530:3;21526:20;21523:1;21516:31;21566:4;21563:1;21556:15;21590:4;21587:1;21580:15;21606:127;21667:10;21662:3;21658:20;21655:1;21648:31;21698:4;21695:1;21688:15;21722:4;21719:1;21712:15;21738:127;21799:10;21794:3;21790:20;21787:1;21780:31;21830:4;21827:1;21820:15;21854:4;21851:1;21844:15;22108:131;-1:-1:-1;;;;;;22182:32:7;;22172:43;;22162:71;;22229:1;22226;22219:12

Swarm Source

ipfs://75c93b9a532d0fa046417d9f10f354635edc70b29e7ec6213a2322f15e8dadf6
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.