ETH Price: $3,287.50 (+1.27%)
Gas: 14 Gwei

Token

Glitch Girls Reloaded (GG2)
 

Overview

Max Total Supply

2,286 GG2

Holders

174

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
19 GG2
0x8fea8339e1c925a26e0f371cf3347beeadab8484
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A 6969 strong, blockchain-ruling sisters walk in the the light and sometimes in the dark.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GlitchGirlsReloaded

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : GGContractV2.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "contracts/ERC721SW.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract GlitchGirlsReloaded is ERC721SW, Ownable {
    address internal _GGContractAddress;

    mapping(address => int256) internal _freeGGs;

    uint256 internal GG_PRICE = 0.05 ether;

    bool internal minting = false;
    bool internal migrating = false;
    uint256 internal MAXBATCH = 15;

    uint256 public constant TOTALGGS = 6969;
    uint256 public constant DEV_HOLDBACK = 69;
    uint256 public constant GGPUBLIC = TOTALGGS - DEV_HOLDBACK;

    string internal _tokenBaseURI;

    function adjustPrice(uint256 newPrice) external onlyOwner {
        GG_PRICE = newPrice;
    }

    function addToWhiteList(
        address[] calldata entries,
        uint256[] calldata amountAllowed
    ) external onlyOwner {
        for (uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            _freeGGs[entry] = int256(amountAllowed[i]);
        }
    }

    function adjustMaxBatch(uint256 maxBatch) external onlyOwner {
        MAXBATCH = maxBatch;
    }

    function toggleMint(bool isMigrate) external onlyOwner {
        if (isMigrate) {
            migrating = !migrating;
        } else {
            minting = !minting;
        }
    }

    function removeFromWhiteList(address[] calldata entries)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            _freeGGs[entry] = 0;
        }
    }

    constructor(
        address startingContractAddress,
        uint256 startingTokenId,
        string memory baseURI
    ) ERC721SW("Glitch Girls Reloaded", "GG2") {
        _GGContractAddress = startingContractAddress;
        _currentIndex = startingTokenId;
        _tokenBaseURI = baseURI;
    }

    function changeGGContractAddress(address newContractAddress) public {
        _GGContractAddress = newContractAddress;
    }

    function gift(address[] calldata receivers) external onlyOwner {
        require(_currentIndex + receivers.length <= TOTALGGS, "1");

        for (uint256 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], 1, _currentIndex);
        }
    }

    address private withdrawAccount = 0x3586218D139C2fd5eC9445E13FFC466D5bB5aa8c;

    modifier withdrawAddressCheck() {
        require(msg.sender == withdrawAccount, "No.");
        _;
    }

    function currentWhitelistSpots(address user) external view returns (int256) {
        return _freeGGs[user];
    }

    function currentMaxBatch() external view returns (uint256) {
        return MAXBATCH;
    }

    function currentGGContract() external view returns(address) {
        return _GGContractAddress;
    }
    function isMinting() external view returns(bool) {
        return minting;
    }

    function isMigrating() external view returns(bool) {
        return migrating;
    }

    function currentPrice() external view returns(uint256) {
        return GG_PRICE;
    }

    function totalBalance() external view returns (uint256) {
        return payable(address(this)).balance;
    }

    function withdrawFunds() external withdrawAddressCheck {
        payable(msg.sender).transfer(this.totalBalance());
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721SW)
        returns (string memory)
    {
        require(_exists(tokenId), "1");

        return
            string(
                abi.encodePacked(
                    _tokenBaseURI,
                    Strings.toString(tokenId),
                    string(".json")
                )
            );
    }

    function GGMint(
        uint256 qty,
        bool freeGG
    ) external payable {
        if (!minting) revert("Not minting");
        address to = msg.sender;
        if (freeGG) {
            if (_freeGGs[to] - int256(qty) < 0) revert("No free ggs");
        } else {
            if (msg.value < (GG_PRICE * qty)) revert("Not enough eth");
        }
        
        if (qty > MAXBATCH) revert("Max batch limit");
        if ((_currentIndex + qty) > GGPUBLIC) revert("No supply");

        _safeMint(to, qty, _currentIndex);

        if (freeGG) {
            _freeGGs[to] -= int256(qty);
        }
    }

    function GGMigrate(
        uint256 glitchGirlToken,
        uint256 qty
    ) public {
        if (!migrating) revert("Not migrating");
        address to = msg.sender;
        GGContractTrait GGContract = GGContractTrait(_GGContractAddress);
        
        for (uint256 i = glitchGirlToken; i < glitchGirlToken+qty; i++) {
            address ownerOf = GGContract.ownerOf(i);

            if (ownerOf != to) revert("Doesnt own token");
            
            if (_exists(i)) revert("Already migrated");
        }
        _safeMint(to, qty, glitchGirlToken);
    
        _freeGGs[to] += int256(qty);
    }
}

abstract contract GGContractTrait {
    function ownerOf(uint256 tokenId) external view virtual returns (address);
}

File 2 of 11 : ERC721SW.sol
// SPDX-License-Identifier: MIT
// Based on ERC721-A, Created by Swifty.eth

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error ExceedsAllowedBatch();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
error ExceedsCurrentSupply();
error IndexExceedsOwnerBounds();

/**
 * @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 and non serialized minting such as for migration/non sequence minting.
 *
 * 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 ERC721SW is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        //used to figure out gaps with non sequened minting...
        uint64 quantity; //uint64 should suffice as projects using this will not have a single user have a supply greater than 2**64-1
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // 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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }
    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }


    function tokenByIndex(uint256 index) public view returns (uint256) {
        if (index > totalSupply()) revert ExceedsCurrentSupply();
        return index;
    }

    /**
    * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
    * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
    * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
    */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        returns (uint256)
    {
        if (index > balanceOf(owner)) revert IndexExceedsOwnerBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        uint256 currentOwnershipSize = 0;
        uint256 currTokensPassed = 0;
        for (uint256 tokenId = 0; tokenId < numMintedSoFar; tokenId++) {
            TokenOwnership memory ownership = _ownerships[tokenId];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
                currentOwnershipSize = ownership.quantity;
                currTokensPassed = 0;
            }
            if (currOwnershipAddr == owner && (currTokensPassed < currentOwnershipSize)) {
                if ((tokenIdsIdx == index)) {
                    return tokenId;
                }
                tokenIdsIdx++;
                currTokensPassed++;
            }
        }
    revert OwnerQueryForNonexistentToken();
  }


    /**
     * 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)
    {
        uint256 curr = tokenId;
        uint256 skipped = 0;
        unchecked {
            if ((_startTokenId() <= curr) && (curr < _currentIndex)) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
                
                while (true) {
                    curr--;
                    skipped++;
                    ownership = _ownerships[curr];

                    if (
                        (ownership.addr != address(0)) &&
                        (ownership.quantity > (tokenId - curr))
                    ) {
                        return ownership;
                    } else if (_startTokenId() > curr) {
                        //incase it cant find to avoid infinite loop..
                        break;
                    } else if (skipped > 16) {
                        break;
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString()))
                : "";
    }

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

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_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) {
        uint256 curr = tokenId;

        unchecked {
            if ((_startTokenId() <= curr) && (curr < _currentIndex)) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return true;
                }
                uint256 TotalChecked = 0;
                while (true) {
                    curr--;
                    ownership = _ownerships[curr];
                    TotalChecked += 1;
                    if (
                        (ownership.addr != address(0)) &&
                        (ownership.quantity > (tokenId - curr))
                    ) {
                        return true;
                    } else if (_startTokenId() > curr) {
                        //incase it cant find to avoid infinite loop..
                        break;
                    } else if (TotalChecked > 15) {
                        break;
                    }
                }
            }
        }
        return false;
    }

    function _safeMint(
        address to,
        uint256 quantity,
        uint256 startingAddress
    ) internal {
        _safeMint(to, quantity, "", startingAddress);
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe,
        uint256 startingAddress
    ) internal {

        uint256 startTokenId = startingAddress;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > 15) revert ExceedsAllowedBatch();
        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].quantity = uint64(quantity);

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

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);

                    if (_exists(updatedIndex)) revert();

                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            if (_currentIndex == startingAddress) {
                _currentIndex = updatedIndex;
            }
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];

            uint64 qtyLeft = 0;

            if (currSlot.addr != address(0)) {
                qtyLeft = currSlot.quantity-1;
            }

            currSlot.addr = to;

            uint256 nextTokenId = tokenId + 1;
            


            uint256 curr = tokenId;

            uint256 amountSeen = 0;

            if ((_startTokenId() <= curr) && (curr < _currentIndex) && (qtyLeft == 0)) {
                while (true) {
                    curr--;
                    amountSeen++;
                    TokenOwnership storage ownership = _ownerships[curr];
                    if (
                        (ownership.addr != address(0)) &&
                        (ownership.quantity > (tokenId - curr)) &&
                        (ownership.quantity > 0)
                    ) {
                        uint128 amountLeft = (ownership.quantity-uint128(tokenId - curr))-1;
                        ownership.quantity -= 1;
                        qtyLeft = uint64(amountLeft);
                        break;
                    } else if (_startTokenId() > curr) {
                        //incase it cant find to avoid infinite loop..
                        break;
                    } else if (amountSeen > 16) {
                        break;
                    }
                }
            }

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0) && (qtyLeft > 0)) {
                
                // This will suffice for checking _exists(nextTokenId),
                if (nextTokenId != _currentIndex+1) {
                    nextSlot.addr = from;
                    nextSlot.quantity = qtyLeft;
                }
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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
            IERC721Receiver(to).onERC721Received(
                _msgSender(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 4 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 6 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 8 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 11 : 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;
    }
}

File 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"startingContractAddress","type":"address"},{"internalType":"uint256","name":"startingTokenId","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedsAllowedBatch","type":"error"},{"inputs":[],"name":"ExceedsCurrentSupply","type":"error"},{"inputs":[],"name":"IndexExceedsOwnerBounds","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEV_HOLDBACK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"glitchGirlToken","type":"uint256"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"GGMigrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bool","name":"freeGG","type":"bool"}],"name":"GGMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"GGPUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTALGGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"},{"internalType":"uint256[]","name":"amountAllowed","type":"uint256[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBatch","type":"uint256"}],"name":"adjustMaxBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"adjustPrice","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newContractAddress","type":"address"}],"name":"changeGGContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentGGContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMaxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"currentWhitelistSpots","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMigrating","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","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":"bool","name":"isMigrate","type":"bool"}],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBalance","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":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550600f600c55733586218d139c2fd5ec9445e13ffc466d5bb5aa8c600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ac57600080fd5b5060405162005348380380620053488339818101604052810190620000d2919062000439565b6040518060400160405280601581526020017f476c69746368204769726c732052656c6f6164656400000000000000000000008152506040518060400160405280600381526020017f4747320000000000000000000000000000000000000000000000000000000000815250816001908051906020019062000156929190620002e9565b5080600290805190602001906200016f929190620002e9565b50620001806200021260201b60201c565b6000819055505050620001a86200019c6200021b60201b60201c565b6200022360201b60201c565b82600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160008190555080600d908051906020019062000208929190620002e9565b505050506200068a565b60006001905090565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002f7906200057b565b90600052602060002090601f0160209004810192826200031b576000855562000367565b82601f106200033657805160ff191683800117855562000367565b8280016001018555821562000367579182015b828111156200036657825182559160200191906001019062000349565b5b5090506200037691906200037a565b5090565b5b80821115620003955760008160009055506001016200037b565b5090565b6000620003b0620003aa84620004d1565b620004a8565b905082815260208101848484011115620003c957600080fd5b620003d684828562000545565b509392505050565b600081519050620003ef8162000656565b92915050565b600082601f8301126200040757600080fd5b81516200041984826020860162000399565b91505092915050565b600081519050620004338162000670565b92915050565b6000806000606084860312156200044f57600080fd5b60006200045f86828701620003de565b9350506020620004728682870162000422565b925050604084015167ffffffffffffffff8111156200049057600080fd5b6200049e86828701620003f5565b9150509250925092565b6000620004b4620004c7565b9050620004c28282620005b1565b919050565b6000604051905090565b600067ffffffffffffffff821115620004ef57620004ee62000616565b5b620004fa8262000645565b9050602081019050919050565b600062000514826200051b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200056557808201518184015260208101905062000548565b8381111562000575576000848401525b50505050565b600060028204905060018216806200059457607f821691505b60208210811415620005ab57620005aa620005e7565b5b50919050565b620005bc8262000645565b810181811067ffffffffffffffff82111715620005de57620005dd62000616565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620006618162000507565b81146200066d57600080fd5b50565b6200067b816200053b565b81146200068757600080fd5b50565b614cae806200069a6000396000f3fe60806040526004361061023b5760003560e01c8063839f906f1161012e578063ae332ea5116100ab578063e985e9c51161006f578063e985e9c514610862578063f05e777d1461089f578063f2fde38b146108ca578063f48e0bcb146108f3578063ffeac44f1461091c5761023b565b8063ae332ea51461077d578063b11560c5146107a8578063b31b45ce146107d1578063b88d4fde146107fc578063c87b56dd146108255761023b565b80639a224903116100f25780639a224903146106aa5780639c8adefe146106d55780639d1b464a146106fe578063a22cb46514610729578063ad7a672f146107525761023b565b8063839f906f146105d55780638a4dcd85146106005780638da5cb5b14610629578063941975971461065457806395d89b411461067f5761023b565b80632a8092df116101bc57806355f804b31161018057806355f804b3146104f25780636352211e1461051b57806370a0823114610558578063715018a61461059557806372bf079e146105ac5761023b565b80632a8092df146103fb5780632f745c591461042657806342842e0e146104635780634d7094531461048c5780634f6ccce7146104b55761023b565b806318160ddd1161020357806318160ddd1461033757806323b872dd1461036257806324600fc31461038b57806325879311146103a2578063277bcc6e146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063163e1e611461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613dc7565b610945565b60405161027491906142c2565b60405180910390f35b34801561028957600080fd5b50610292610a27565b60405161029f91906142f8565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613e5e565b610ab9565b6040516102dc919061425b565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613ca8565b610b35565b005b34801561031a57600080fd5b5061033560048036038101906103309190613ce4565b610c40565b005b34801561034357600080fd5b5061034c610d92565b604051610359919061449a565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613ba2565b610da5565b005b34801561039757600080fd5b506103a0610db5565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190613b14565b610f0b565b6040516103d691906142dd565b60405180910390f35b6103f960048036038101906103f49190613eb0565b610f54565b005b34801561040757600080fd5b506104106111a4565b60405161041d91906142c2565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613ca8565b6111bb565b60405161045a919061449a565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613ba2565b6113db565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613b14565b6113fb565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190613e5e565b61143f565b6040516104e9919061449a565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613e19565b61148a565b005b34801561052757600080fd5b50610542600480360381019061053d9190613e5e565b61151c565b60405161054f919061425b565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613b14565b611532565b60405161058c919061449a565b60405180910390f35b3480156105a157600080fd5b506105aa611602565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613e5e565b61168a565b005b3480156105e157600080fd5b506105ea611710565b6040516105f7919061425b565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613d9e565b61173a565b005b34801561063557600080fd5b5061063e611819565b60405161064b919061425b565b60405180910390f35b34801561066057600080fd5b50610669611843565b604051610676919061449a565b60405180910390f35b34801561068b57600080fd5b50610694611848565b6040516106a191906142f8565b60405180910390f35b3480156106b657600080fd5b506106bf6118da565b6040516106cc919061449a565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613eec565b6118ec565b005b34801561070a57600080fd5b50610713611b40565b604051610720919061449a565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613c6c565b611b4a565b005b34801561075e57600080fd5b50610767611cc2565b604051610774919061449a565b60405180910390f35b34801561078957600080fd5b50610792611ce1565b60405161079f919061449a565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613ce4565b611ce7565b005b3480156107dd57600080fd5b506107e6611e21565b6040516107f3919061449a565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613bf1565b611e2b565b005b34801561083157600080fd5b5061084c60048036038101906108479190613e5e565b611ea7565b60405161085991906142f8565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613b66565b611f5a565b60405161089691906142c2565b60405180910390f35b3480156108ab57600080fd5b506108b4611fee565b6040516108c191906142c2565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613b14565b612005565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613d29565b6120fd565b005b34801561092857600080fd5b50610943600480360381019061093e9190613e5e565b612277565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f826122fd565b5b9050919050565b606060018054610a3690614860565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290614860565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612367565b610afa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b408261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76125ce565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf95750610bf781610bf26125ce565b611f5a565b155b15610c30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8383836125d6565b505050565b610c486125ce565b73ffffffffffffffffffffffffffffffffffffffff16610c66611819565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906143da565b60405180910390fd5b611b3982829050600054610cd091906145f7565b1115610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d089061443a565b60405180910390fd5b60005b82829050811015610d8d57610d7a838383818110610d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d709190613b14565b6001600054612688565b8080610d85906148c3565b915050610d14565b505050565b6000610d9c6126a8565b60005403905090565b610db08383836126b1565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c9061447a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff1663ad7a672f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ea557600080fd5b505afa158015610eb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edd9190613e87565b9081150290604051600060405180830381858888f19350505050158015610f08573d6000803e3d6000fd5b50565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b60009054906101000a900460ff16610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a9061445a565b60405180910390fd5b6000339050811561104157600083600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffb91906146d8565b121561103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061431a565b60405180910390fd5b611092565b82600a5461104f919061467e565b341015611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061437a565b60405180910390fd5b5b600c548311156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906143ba565b60405180910390fd5b6045611b396110e6919061476c565b836000546110f491906145f7565b1115611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061441a565b60405180910390fd5b6111428184600054612688565b811561119f5782600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119791906146d8565b925050819055505b505050565b6000600b60009054906101000a900460ff16905090565b60006111c683611532565b8211156111ff576040517f6df37eaf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611209610d92565b905060008060008060005b858110156113a2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461131b5780600001519450806020015167ffffffffffffffff169350600092505b8973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561135557508383105b1561138e578886141561137157819750505050505050506113d5565b858061137c906148c3565b965050828061138a906148c3565b9350505b50808061139a906148c3565b915050611214565b506040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b6113f683838360405180602001604052806000815250611e2b565b505050565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611449610d92565b821115611482576040517f401c27c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6114926125ce565b73ffffffffffffffffffffffffffffffffffffffff166114b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd906143da565b60405180910390fd5b8181600d919061151792919061385e565b505050565b600061152782612d95565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61160a6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611628611819565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906143da565b60405180910390fd5b611688600061302f565b565b6116926125ce565b73ffffffffffffffffffffffffffffffffffffffff166116b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906143da565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117426125ce565b73ffffffffffffffffffffffffffffffffffffffff16611760611819565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906143da565b60405180910390fd5b80156117eb57600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550611816565b600b60009054906101000a900460ff1615600b60006101000a81548160ff0219169083151502179055505b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b604581565b60606002805461185790614860565b80601f016020809104026020016040519081016040528092919081815260200182805461188390614860565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b5050505050905090565b6045611b396118e9919061476c565b81565b600b60019054906101000a900460ff1661193b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119329061435a565b60405180910390fd5b60003390506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008490505b838561197991906145f7565b811015611ad85760008273ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016119bb919061449a565b60206040518083038186803b1580156119d357600080fd5b505afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190613b3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906143fa565b60405180910390fd5b611a8482612367565b15611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb9061439a565b60405180910390fd5b508080611ad0906148c3565b91505061196d565b50611ae4828486612688565b82600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b339190614563565b9250508190555050505050565b6000600a54905090565b611b526125ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611bc46125ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c716125ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb691906142c2565b60405180910390a35050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b611b3981565b611cef6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611d0d611819565b73ffffffffffffffffffffffffffffffffffffffff1614611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a906143da565b60405180910390fd5b60005b82829050811015611e1c576000838383818110611dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dc19190613b14565b90506000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080611e14906148c3565b915050611d66565b505050565b6000600c54905090565b611e368484846126b1565b611e558373ffffffffffffffffffffffffffffffffffffffff166130f5565b8015611e6a5750611e6884848484613118565b155b15611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611eb282612367565b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee89061443a565b60405180910390fd5b600d611efc83613278565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611f449392919061422a565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60019054906101000a900460ff16905090565b61200d6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661202b611819565b73ffffffffffffffffffffffffffffffffffffffff1614612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906143da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e89061433a565b60405180910390fd5b6120fa8161302f565b50565b6121056125ce565b73ffffffffffffffffffffffffffffffffffffffff16612123611819565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906143da565b60405180910390fd5b60005b848490508110156122705760008585838181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906121d79190613b14565b9050838383818110612212577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080612268906148c3565b91505061217c565b5050505050565b61227f6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661229d611819565b73ffffffffffffffffffffffffffffffffffffffff16146122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea906143da565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080829050806123766126a8565b11158015612385575060005481105b156125c3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612477576001925050506125c9565b60005b6001156125c057828060019003935050600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509150600181019050600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16141580156125885750828503826020015167ffffffffffffffff16115b1561259957600193505050506125c9565b826125a26126a8565b11156125ad576125c0565b600f8111156125bb576125c0565b61247a565b50505b60009150505b919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126a383836040518060200160405280600081525084613425565b505050565b60006001905090565b60006126bc82612d95565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612727576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127486125ce565b73ffffffffffffffffffffffffffffffffffffffff1614806127775750612776856127716125ce565b611f5a565b5b806127bc57506127856125ce565b73ffffffffffffffffffffffffffffffffffffffff166127a484610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127f5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561285c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128698585856001613439565b612875600084876125d6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600060036000858152602001908152602001600020905060008073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a0a5760018260000160149054906101000a900467ffffffffffffffff160390505b858260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006001860190506000869050600081612a656126a8565b11158015612a74575060005482105b8015612a8a575060008467ffffffffffffffff16145b15612c1e575b600115612c1d5781806001900392505080806001019150506000600360008481526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015612b4357508289038160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b8015612b71575060008160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b15612bf35760006001848b038360000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff160303905060018260000160148282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508095505050612c1d565b82612bfc6126a8565b1115612c085750612c1d565b6010821115612c175750612c1d565b50612a90565b5b6000600360008581526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015612c9f575060008567ffffffffffffffff16115b15612d20576001600054018414612d1f578a8160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550848160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8e858585600161343f565b5050505050565b612d9d6138e4565b6000829050600081612dad6126a8565b11158015612dbc575060005482105b15612ff8576000600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eae5780935050505061302a565b5b600115612ff6578280600190039350508180600101925050600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614158015612fbf5750828503816020015167ffffffffffffffff16115b15612fcf5780935050505061302a565b82612fd86126a8565b1115612fe357612ff6565b6010821115612ff157612ff6565b612eaf565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261313e6125ce565b8786866040518563ffffffff1660e01b81526004016131609493929190614276565b602060405180830381600087803b15801561317a57600080fd5b505af19250505080156131ab57506040513d601f19601f820116820180604052508101906131a89190613df0565b60015b613225573d80600081146131db576040519150601f19603f3d011682016040523d82523d6000602084013e6131e0565b606091505b5060008151141561321d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156132c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613420565b600082905060005b600082146132f25780806132db906148c3565b915050600a826132eb919061464d565b91506132c8565b60008167ffffffffffffffff811115613334577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133665781602001600182028036833780820191505090505b5090505b600085146134195760018261337f919061476c565b9150600a8561338e919061490c565b603061339a91906145f7565b60f81b8183815181106133d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613412919061464d565b945061336a565b8093505050505b919050565b613433848484600185613445565b50505050565b50505050565b50505050565b6000819050600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156134b1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008514156134ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f851115613527576040517f8011f1fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135346000878388613439565b84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555084600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550856003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600086820190508480156136fe57506136fd8873ffffffffffffffffffffffffffffffffffffffff166130f5565b5b156137c9575b818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461376982612367565b1561377357600080fd5b6137866000898480600101955089613118565b6137bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561370457613835565b5b818060010192508873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156137ca575b83600054141561384757816000819055505b5050613856600087838861343f565b505050505050565b82805461386a90614860565b90600052602060002090601f01602090048101928261388c57600085556138d3565b82601f106138a557803560ff19168380011785556138d3565b828001600101855582156138d3579182015b828111156138d25782358255916020019190600101906138b7565b5b5090506138e0919061391e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561393757600081600090555060010161391f565b5090565b600061394e613949846144da565b6144b5565b90508281526020810184848401111561396657600080fd5b61397184828561481e565b509392505050565b60008135905061398881614c1c565b92915050565b60008151905061399d81614c1c565b92915050565b60008083601f8401126139b557600080fd5b8235905067ffffffffffffffff8111156139ce57600080fd5b6020830191508360208202830111156139e657600080fd5b9250929050565b60008083601f8401126139ff57600080fd5b8235905067ffffffffffffffff811115613a1857600080fd5b602083019150836020820283011115613a3057600080fd5b9250929050565b600081359050613a4681614c33565b92915050565b600081359050613a5b81614c4a565b92915050565b600081519050613a7081614c4a565b92915050565b600082601f830112613a8757600080fd5b8135613a9784826020860161393b565b91505092915050565b60008083601f840112613ab257600080fd5b8235905067ffffffffffffffff811115613acb57600080fd5b602083019150836001820283011115613ae357600080fd5b9250929050565b600081359050613af981614c61565b92915050565b600081519050613b0e81614c61565b92915050565b600060208284031215613b2657600080fd5b6000613b3484828501613979565b91505092915050565b600060208284031215613b4f57600080fd5b6000613b5d8482850161398e565b91505092915050565b60008060408385031215613b7957600080fd5b6000613b8785828601613979565b9250506020613b9885828601613979565b9150509250929050565b600080600060608486031215613bb757600080fd5b6000613bc586828701613979565b9350506020613bd686828701613979565b9250506040613be786828701613aea565b9150509250925092565b60008060008060808587031215613c0757600080fd5b6000613c1587828801613979565b9450506020613c2687828801613979565b9350506040613c3787828801613aea565b925050606085013567ffffffffffffffff811115613c5457600080fd5b613c6087828801613a76565b91505092959194509250565b60008060408385031215613c7f57600080fd5b6000613c8d85828601613979565b9250506020613c9e85828601613a37565b9150509250929050565b60008060408385031215613cbb57600080fd5b6000613cc985828601613979565b9250506020613cda85828601613aea565b9150509250929050565b60008060208385031215613cf757600080fd5b600083013567ffffffffffffffff811115613d1157600080fd5b613d1d858286016139a3565b92509250509250929050565b60008060008060408587031215613d3f57600080fd5b600085013567ffffffffffffffff811115613d5957600080fd5b613d65878288016139a3565b9450945050602085013567ffffffffffffffff811115613d8457600080fd5b613d90878288016139ed565b925092505092959194509250565b600060208284031215613db057600080fd5b6000613dbe84828501613a37565b91505092915050565b600060208284031215613dd957600080fd5b6000613de784828501613a4c565b91505092915050565b600060208284031215613e0257600080fd5b6000613e1084828501613a61565b91505092915050565b60008060208385031215613e2c57600080fd5b600083013567ffffffffffffffff811115613e4657600080fd5b613e5285828601613aa0565b92509250509250929050565b600060208284031215613e7057600080fd5b6000613e7e84828501613aea565b91505092915050565b600060208284031215613e9957600080fd5b6000613ea784828501613aff565b91505092915050565b60008060408385031215613ec357600080fd5b6000613ed185828601613aea565b9250506020613ee285828601613a37565b9150509250929050565b60008060408385031215613eff57600080fd5b6000613f0d85828601613aea565b9250506020613f1e85828601613aea565b9150509250929050565b613f31816147a0565b82525050565b613f40816147b2565b82525050565b6000613f5182614520565b613f5b8185614536565b9350613f6b81856020860161482d565b613f74816149f9565b840191505092915050565b613f88816147ea565b82525050565b6000613f998261452b565b613fa38185614547565b9350613fb381856020860161482d565b613fbc816149f9565b840191505092915050565b6000613fd28261452b565b613fdc8185614558565b9350613fec81856020860161482d565b80840191505092915050565b6000815461400581614860565b61400f8186614558565b9450600182166000811461402a576001811461403b5761406e565b60ff1983168652818601935061406e565b6140448561450b565b60005b8381101561406657815481890152600182019150602081019050614047565b838801955050505b50505092915050565b6000614084600b83614547565b915061408f82614a0a565b602082019050919050565b60006140a7602683614547565b91506140b282614a33565b604082019050919050565b60006140ca600d83614547565b91506140d582614a82565b602082019050919050565b60006140ed600e83614547565b91506140f882614aab565b602082019050919050565b6000614110601083614547565b915061411b82614ad4565b602082019050919050565b6000614133600f83614547565b915061413e82614afd565b602082019050919050565b6000614156602083614547565b915061416182614b26565b602082019050919050565b6000614179601083614547565b915061418482614b4f565b602082019050919050565b600061419c600983614547565b91506141a782614b78565b602082019050919050565b60006141bf600183614547565b91506141ca82614ba1565b602082019050919050565b60006141e2600b83614547565b91506141ed82614bca565b602082019050919050565b6000614205600383614547565b915061421082614bf3565b602082019050919050565b61422481614814565b82525050565b60006142368286613ff8565b91506142428285613fc7565b915061424e8284613fc7565b9150819050949350505050565b60006020820190506142706000830184613f28565b92915050565b600060808201905061428b6000830187613f28565b6142986020830186613f28565b6142a5604083018561421b565b81810360608301526142b78184613f46565b905095945050505050565b60006020820190506142d76000830184613f37565b92915050565b60006020820190506142f26000830184613f7f565b92915050565b600060208201905081810360008301526143128184613f8e565b905092915050565b6000602082019050818103600083015261433381614077565b9050919050565b600060208201905081810360008301526143538161409a565b9050919050565b60006020820190508181036000830152614373816140bd565b9050919050565b60006020820190508181036000830152614393816140e0565b9050919050565b600060208201905081810360008301526143b381614103565b9050919050565b600060208201905081810360008301526143d381614126565b9050919050565b600060208201905081810360008301526143f381614149565b9050919050565b600060208201905081810360008301526144138161416c565b9050919050565b600060208201905081810360008301526144338161418f565b9050919050565b60006020820190508181036000830152614453816141b2565b9050919050565b60006020820190508181036000830152614473816141d5565b9050919050565b60006020820190508181036000830152614493816141f8565b9050919050565b60006020820190506144af600083018461421b565b92915050565b60006144bf6144d0565b90506144cb8282614892565b919050565b6000604051905090565b600067ffffffffffffffff8211156144f5576144f46149ca565b5b6144fe826149f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061456e826147ea565b9150614579836147ea565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038313600083121516156145b4576145b361493d565b5b817f80000000000000000000000000000000000000000000000000000000000000000383126000831216156145ec576145eb61493d565b5b828201905092915050565b600061460282614814565b915061460d83614814565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146425761464161493d565b5b828201905092915050565b600061465882614814565b915061466383614814565b9250826146735761467261496c565b5b828204905092915050565b600061468982614814565b915061469483614814565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146cd576146cc61493d565b5b828202905092915050565b60006146e3826147ea565b91506146ee836147ea565b9250827f8000000000000000000000000000000000000000000000000000000000000000018212600084121516156147295761472861493d565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0182136000841216156147615761476061493d565b5b828203905092915050565b600061477782614814565b915061478283614814565b9250828210156147955761479461493d565b5b828203905092915050565b60006147ab826147f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561484b578082015181840152602081019050614830565b8381111561485a576000848401525b50505050565b6000600282049050600182168061487857607f821691505b6020821081141561488c5761488b61499b565b5b50919050565b61489b826149f9565b810181811067ffffffffffffffff821117156148ba576148b96149ca565b5b80604052505050565b60006148ce82614814565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149015761490061493d565b5b600182019050919050565b600061491782614814565b915061492283614814565b9250826149325761493161496c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206672656520676773000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d6967726174696e6700000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f416c7265616479206d6967726174656400000000000000000000000000000000600082015250565b7f4d6178206261746368206c696d69740000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f446f65736e74206f776e20746f6b656e00000000000000000000000000000000600082015250565b7f4e6f20737570706c790000000000000000000000000000000000000000000000600082015250565b7f3100000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f74206d696e74696e67000000000000000000000000000000000000000000600082015250565b7f4e6f2e0000000000000000000000000000000000000000000000000000000000600082015250565b614c25816147a0565b8114614c3057600080fd5b50565b614c3c816147b2565b8114614c4757600080fd5b50565b614c53816147be565b8114614c5e57600080fd5b50565b614c6a81614814565b8114614c7557600080fd5b5056fea2646970667358221220ef052692debe2177cd48fc7ffe2a2417fac7e5855e7f9dace4bb8643a39fa26664736f6c63430008040033000000000000000000000000b2a3fe3d512c1e0102d85f89caab403b94b7d0de00000000000000000000000000000000000000000000000000000000000006190000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f676c697463686769726c732e696f2f6170692f0000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063839f906f1161012e578063ae332ea5116100ab578063e985e9c51161006f578063e985e9c514610862578063f05e777d1461089f578063f2fde38b146108ca578063f48e0bcb146108f3578063ffeac44f1461091c5761023b565b8063ae332ea51461077d578063b11560c5146107a8578063b31b45ce146107d1578063b88d4fde146107fc578063c87b56dd146108255761023b565b80639a224903116100f25780639a224903146106aa5780639c8adefe146106d55780639d1b464a146106fe578063a22cb46514610729578063ad7a672f146107525761023b565b8063839f906f146105d55780638a4dcd85146106005780638da5cb5b14610629578063941975971461065457806395d89b411461067f5761023b565b80632a8092df116101bc57806355f804b31161018057806355f804b3146104f25780636352211e1461051b57806370a0823114610558578063715018a61461059557806372bf079e146105ac5761023b565b80632a8092df146103fb5780632f745c591461042657806342842e0e146104635780634d7094531461048c5780634f6ccce7146104b55761023b565b806318160ddd1161020357806318160ddd1461033757806323b872dd1461036257806324600fc31461038b57806325879311146103a2578063277bcc6e146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063163e1e611461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613dc7565b610945565b60405161027491906142c2565b60405180910390f35b34801561028957600080fd5b50610292610a27565b60405161029f91906142f8565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613e5e565b610ab9565b6040516102dc919061425b565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613ca8565b610b35565b005b34801561031a57600080fd5b5061033560048036038101906103309190613ce4565b610c40565b005b34801561034357600080fd5b5061034c610d92565b604051610359919061449a565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613ba2565b610da5565b005b34801561039757600080fd5b506103a0610db5565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190613b14565b610f0b565b6040516103d691906142dd565b60405180910390f35b6103f960048036038101906103f49190613eb0565b610f54565b005b34801561040757600080fd5b506104106111a4565b60405161041d91906142c2565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613ca8565b6111bb565b60405161045a919061449a565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613ba2565b6113db565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613b14565b6113fb565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190613e5e565b61143f565b6040516104e9919061449a565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613e19565b61148a565b005b34801561052757600080fd5b50610542600480360381019061053d9190613e5e565b61151c565b60405161054f919061425b565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613b14565b611532565b60405161058c919061449a565b60405180910390f35b3480156105a157600080fd5b506105aa611602565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613e5e565b61168a565b005b3480156105e157600080fd5b506105ea611710565b6040516105f7919061425b565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613d9e565b61173a565b005b34801561063557600080fd5b5061063e611819565b60405161064b919061425b565b60405180910390f35b34801561066057600080fd5b50610669611843565b604051610676919061449a565b60405180910390f35b34801561068b57600080fd5b50610694611848565b6040516106a191906142f8565b60405180910390f35b3480156106b657600080fd5b506106bf6118da565b6040516106cc919061449a565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613eec565b6118ec565b005b34801561070a57600080fd5b50610713611b40565b604051610720919061449a565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613c6c565b611b4a565b005b34801561075e57600080fd5b50610767611cc2565b604051610774919061449a565b60405180910390f35b34801561078957600080fd5b50610792611ce1565b60405161079f919061449a565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613ce4565b611ce7565b005b3480156107dd57600080fd5b506107e6611e21565b6040516107f3919061449a565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613bf1565b611e2b565b005b34801561083157600080fd5b5061084c60048036038101906108479190613e5e565b611ea7565b60405161085991906142f8565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613b66565b611f5a565b60405161089691906142c2565b60405180910390f35b3480156108ab57600080fd5b506108b4611fee565b6040516108c191906142c2565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613b14565b612005565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613d29565b6120fd565b005b34801561092857600080fd5b50610943600480360381019061093e9190613e5e565b612277565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f826122fd565b5b9050919050565b606060018054610a3690614860565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290614860565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612367565b610afa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b408261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76125ce565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf95750610bf781610bf26125ce565b611f5a565b155b15610c30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8383836125d6565b505050565b610c486125ce565b73ffffffffffffffffffffffffffffffffffffffff16610c66611819565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906143da565b60405180910390fd5b611b3982829050600054610cd091906145f7565b1115610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d089061443a565b60405180910390fd5b60005b82829050811015610d8d57610d7a838383818110610d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d709190613b14565b6001600054612688565b8080610d85906148c3565b915050610d14565b505050565b6000610d9c6126a8565b60005403905090565b610db08383836126b1565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c9061447a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff1663ad7a672f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ea557600080fd5b505afa158015610eb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edd9190613e87565b9081150290604051600060405180830381858888f19350505050158015610f08573d6000803e3d6000fd5b50565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b60009054906101000a900460ff16610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a9061445a565b60405180910390fd5b6000339050811561104157600083600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffb91906146d8565b121561103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061431a565b60405180910390fd5b611092565b82600a5461104f919061467e565b341015611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061437a565b60405180910390fd5b5b600c548311156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906143ba565b60405180910390fd5b6045611b396110e6919061476c565b836000546110f491906145f7565b1115611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061441a565b60405180910390fd5b6111428184600054612688565b811561119f5782600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119791906146d8565b925050819055505b505050565b6000600b60009054906101000a900460ff16905090565b60006111c683611532565b8211156111ff576040517f6df37eaf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611209610d92565b905060008060008060005b858110156113a2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461131b5780600001519450806020015167ffffffffffffffff169350600092505b8973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561135557508383105b1561138e578886141561137157819750505050505050506113d5565b858061137c906148c3565b965050828061138a906148c3565b9350505b50808061139a906148c3565b915050611214565b506040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b6113f683838360405180602001604052806000815250611e2b565b505050565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611449610d92565b821115611482576040517f401c27c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6114926125ce565b73ffffffffffffffffffffffffffffffffffffffff166114b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd906143da565b60405180910390fd5b8181600d919061151792919061385e565b505050565b600061152782612d95565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61160a6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611628611819565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906143da565b60405180910390fd5b611688600061302f565b565b6116926125ce565b73ffffffffffffffffffffffffffffffffffffffff166116b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906143da565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117426125ce565b73ffffffffffffffffffffffffffffffffffffffff16611760611819565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906143da565b60405180910390fd5b80156117eb57600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550611816565b600b60009054906101000a900460ff1615600b60006101000a81548160ff0219169083151502179055505b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b604581565b60606002805461185790614860565b80601f016020809104026020016040519081016040528092919081815260200182805461188390614860565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b5050505050905090565b6045611b396118e9919061476c565b81565b600b60019054906101000a900460ff1661193b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119329061435a565b60405180910390fd5b60003390506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008490505b838561197991906145f7565b811015611ad85760008273ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016119bb919061449a565b60206040518083038186803b1580156119d357600080fd5b505afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190613b3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906143fa565b60405180910390fd5b611a8482612367565b15611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb9061439a565b60405180910390fd5b508080611ad0906148c3565b91505061196d565b50611ae4828486612688565b82600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b339190614563565b9250508190555050505050565b6000600a54905090565b611b526125ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611bc46125ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c716125ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb691906142c2565b60405180910390a35050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b611b3981565b611cef6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611d0d611819565b73ffffffffffffffffffffffffffffffffffffffff1614611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a906143da565b60405180910390fd5b60005b82829050811015611e1c576000838383818110611dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dc19190613b14565b90506000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080611e14906148c3565b915050611d66565b505050565b6000600c54905090565b611e368484846126b1565b611e558373ffffffffffffffffffffffffffffffffffffffff166130f5565b8015611e6a5750611e6884848484613118565b155b15611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611eb282612367565b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee89061443a565b60405180910390fd5b600d611efc83613278565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611f449392919061422a565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60019054906101000a900460ff16905090565b61200d6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661202b611819565b73ffffffffffffffffffffffffffffffffffffffff1614612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906143da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e89061433a565b60405180910390fd5b6120fa8161302f565b50565b6121056125ce565b73ffffffffffffffffffffffffffffffffffffffff16612123611819565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906143da565b60405180910390fd5b60005b848490508110156122705760008585838181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906121d79190613b14565b9050838383818110612212577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080612268906148c3565b91505061217c565b5050505050565b61227f6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661229d611819565b73ffffffffffffffffffffffffffffffffffffffff16146122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea906143da565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080829050806123766126a8565b11158015612385575060005481105b156125c3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612477576001925050506125c9565b60005b6001156125c057828060019003935050600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509150600181019050600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16141580156125885750828503826020015167ffffffffffffffff16115b1561259957600193505050506125c9565b826125a26126a8565b11156125ad576125c0565b600f8111156125bb576125c0565b61247a565b50505b60009150505b919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126a383836040518060200160405280600081525084613425565b505050565b60006001905090565b60006126bc82612d95565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612727576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127486125ce565b73ffffffffffffffffffffffffffffffffffffffff1614806127775750612776856127716125ce565b611f5a565b5b806127bc57506127856125ce565b73ffffffffffffffffffffffffffffffffffffffff166127a484610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127f5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561285c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128698585856001613439565b612875600084876125d6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600060036000858152602001908152602001600020905060008073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a0a5760018260000160149054906101000a900467ffffffffffffffff160390505b858260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006001860190506000869050600081612a656126a8565b11158015612a74575060005482105b8015612a8a575060008467ffffffffffffffff16145b15612c1e575b600115612c1d5781806001900392505080806001019150506000600360008481526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015612b4357508289038160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b8015612b71575060008160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b15612bf35760006001848b038360000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff160303905060018260000160148282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508095505050612c1d565b82612bfc6126a8565b1115612c085750612c1d565b6010821115612c175750612c1d565b50612a90565b5b6000600360008581526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015612c9f575060008567ffffffffffffffff16115b15612d20576001600054018414612d1f578a8160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550848160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8e858585600161343f565b5050505050565b612d9d6138e4565b6000829050600081612dad6126a8565b11158015612dbc575060005482105b15612ff8576000600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eae5780935050505061302a565b5b600115612ff6578280600190039350508180600101925050600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614158015612fbf5750828503816020015167ffffffffffffffff16115b15612fcf5780935050505061302a565b82612fd86126a8565b1115612fe357612ff6565b6010821115612ff157612ff6565b612eaf565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261313e6125ce565b8786866040518563ffffffff1660e01b81526004016131609493929190614276565b602060405180830381600087803b15801561317a57600080fd5b505af19250505080156131ab57506040513d601f19601f820116820180604052508101906131a89190613df0565b60015b613225573d80600081146131db576040519150601f19603f3d011682016040523d82523d6000602084013e6131e0565b606091505b5060008151141561321d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156132c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613420565b600082905060005b600082146132f25780806132db906148c3565b915050600a826132eb919061464d565b91506132c8565b60008167ffffffffffffffff811115613334577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133665781602001600182028036833780820191505090505b5090505b600085146134195760018261337f919061476c565b9150600a8561338e919061490c565b603061339a91906145f7565b60f81b8183815181106133d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613412919061464d565b945061336a565b8093505050505b919050565b613433848484600185613445565b50505050565b50505050565b50505050565b6000819050600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156134b1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008514156134ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f851115613527576040517f8011f1fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135346000878388613439565b84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555084600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550856003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600086820190508480156136fe57506136fd8873ffffffffffffffffffffffffffffffffffffffff166130f5565b5b156137c9575b818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461376982612367565b1561377357600080fd5b6137866000898480600101955089613118565b6137bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561370457613835565b5b818060010192508873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156137ca575b83600054141561384757816000819055505b5050613856600087838861343f565b505050505050565b82805461386a90614860565b90600052602060002090601f01602090048101928261388c57600085556138d3565b82601f106138a557803560ff19168380011785556138d3565b828001600101855582156138d3579182015b828111156138d25782358255916020019190600101906138b7565b5b5090506138e0919061391e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561393757600081600090555060010161391f565b5090565b600061394e613949846144da565b6144b5565b90508281526020810184848401111561396657600080fd5b61397184828561481e565b509392505050565b60008135905061398881614c1c565b92915050565b60008151905061399d81614c1c565b92915050565b60008083601f8401126139b557600080fd5b8235905067ffffffffffffffff8111156139ce57600080fd5b6020830191508360208202830111156139e657600080fd5b9250929050565b60008083601f8401126139ff57600080fd5b8235905067ffffffffffffffff811115613a1857600080fd5b602083019150836020820283011115613a3057600080fd5b9250929050565b600081359050613a4681614c33565b92915050565b600081359050613a5b81614c4a565b92915050565b600081519050613a7081614c4a565b92915050565b600082601f830112613a8757600080fd5b8135613a9784826020860161393b565b91505092915050565b60008083601f840112613ab257600080fd5b8235905067ffffffffffffffff811115613acb57600080fd5b602083019150836001820283011115613ae357600080fd5b9250929050565b600081359050613af981614c61565b92915050565b600081519050613b0e81614c61565b92915050565b600060208284031215613b2657600080fd5b6000613b3484828501613979565b91505092915050565b600060208284031215613b4f57600080fd5b6000613b5d8482850161398e565b91505092915050565b60008060408385031215613b7957600080fd5b6000613b8785828601613979565b9250506020613b9885828601613979565b9150509250929050565b600080600060608486031215613bb757600080fd5b6000613bc586828701613979565b9350506020613bd686828701613979565b9250506040613be786828701613aea565b9150509250925092565b60008060008060808587031215613c0757600080fd5b6000613c1587828801613979565b9450506020613c2687828801613979565b9350506040613c3787828801613aea565b925050606085013567ffffffffffffffff811115613c5457600080fd5b613c6087828801613a76565b91505092959194509250565b60008060408385031215613c7f57600080fd5b6000613c8d85828601613979565b9250506020613c9e85828601613a37565b9150509250929050565b60008060408385031215613cbb57600080fd5b6000613cc985828601613979565b9250506020613cda85828601613aea565b9150509250929050565b60008060208385031215613cf757600080fd5b600083013567ffffffffffffffff811115613d1157600080fd5b613d1d858286016139a3565b92509250509250929050565b60008060008060408587031215613d3f57600080fd5b600085013567ffffffffffffffff811115613d5957600080fd5b613d65878288016139a3565b9450945050602085013567ffffffffffffffff811115613d8457600080fd5b613d90878288016139ed565b925092505092959194509250565b600060208284031215613db057600080fd5b6000613dbe84828501613a37565b91505092915050565b600060208284031215613dd957600080fd5b6000613de784828501613a4c565b91505092915050565b600060208284031215613e0257600080fd5b6000613e1084828501613a61565b91505092915050565b60008060208385031215613e2c57600080fd5b600083013567ffffffffffffffff811115613e4657600080fd5b613e5285828601613aa0565b92509250509250929050565b600060208284031215613e7057600080fd5b6000613e7e84828501613aea565b91505092915050565b600060208284031215613e9957600080fd5b6000613ea784828501613aff565b91505092915050565b60008060408385031215613ec357600080fd5b6000613ed185828601613aea565b9250506020613ee285828601613a37565b9150509250929050565b60008060408385031215613eff57600080fd5b6000613f0d85828601613aea565b9250506020613f1e85828601613aea565b9150509250929050565b613f31816147a0565b82525050565b613f40816147b2565b82525050565b6000613f5182614520565b613f5b8185614536565b9350613f6b81856020860161482d565b613f74816149f9565b840191505092915050565b613f88816147ea565b82525050565b6000613f998261452b565b613fa38185614547565b9350613fb381856020860161482d565b613fbc816149f9565b840191505092915050565b6000613fd28261452b565b613fdc8185614558565b9350613fec81856020860161482d565b80840191505092915050565b6000815461400581614860565b61400f8186614558565b9450600182166000811461402a576001811461403b5761406e565b60ff1983168652818601935061406e565b6140448561450b565b60005b8381101561406657815481890152600182019150602081019050614047565b838801955050505b50505092915050565b6000614084600b83614547565b915061408f82614a0a565b602082019050919050565b60006140a7602683614547565b91506140b282614a33565b604082019050919050565b60006140ca600d83614547565b91506140d582614a82565b602082019050919050565b60006140ed600e83614547565b91506140f882614aab565b602082019050919050565b6000614110601083614547565b915061411b82614ad4565b602082019050919050565b6000614133600f83614547565b915061413e82614afd565b602082019050919050565b6000614156602083614547565b915061416182614b26565b602082019050919050565b6000614179601083614547565b915061418482614b4f565b602082019050919050565b600061419c600983614547565b91506141a782614b78565b602082019050919050565b60006141bf600183614547565b91506141ca82614ba1565b602082019050919050565b60006141e2600b83614547565b91506141ed82614bca565b602082019050919050565b6000614205600383614547565b915061421082614bf3565b602082019050919050565b61422481614814565b82525050565b60006142368286613ff8565b91506142428285613fc7565b915061424e8284613fc7565b9150819050949350505050565b60006020820190506142706000830184613f28565b92915050565b600060808201905061428b6000830187613f28565b6142986020830186613f28565b6142a5604083018561421b565b81810360608301526142b78184613f46565b905095945050505050565b60006020820190506142d76000830184613f37565b92915050565b60006020820190506142f26000830184613f7f565b92915050565b600060208201905081810360008301526143128184613f8e565b905092915050565b6000602082019050818103600083015261433381614077565b9050919050565b600060208201905081810360008301526143538161409a565b9050919050565b60006020820190508181036000830152614373816140bd565b9050919050565b60006020820190508181036000830152614393816140e0565b9050919050565b600060208201905081810360008301526143b381614103565b9050919050565b600060208201905081810360008301526143d381614126565b9050919050565b600060208201905081810360008301526143f381614149565b9050919050565b600060208201905081810360008301526144138161416c565b9050919050565b600060208201905081810360008301526144338161418f565b9050919050565b60006020820190508181036000830152614453816141b2565b9050919050565b60006020820190508181036000830152614473816141d5565b9050919050565b60006020820190508181036000830152614493816141f8565b9050919050565b60006020820190506144af600083018461421b565b92915050565b60006144bf6144d0565b90506144cb8282614892565b919050565b6000604051905090565b600067ffffffffffffffff8211156144f5576144f46149ca565b5b6144fe826149f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061456e826147ea565b9150614579836147ea565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038313600083121516156145b4576145b361493d565b5b817f80000000000000000000000000000000000000000000000000000000000000000383126000831216156145ec576145eb61493d565b5b828201905092915050565b600061460282614814565b915061460d83614814565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146425761464161493d565b5b828201905092915050565b600061465882614814565b915061466383614814565b9250826146735761467261496c565b5b828204905092915050565b600061468982614814565b915061469483614814565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146cd576146cc61493d565b5b828202905092915050565b60006146e3826147ea565b91506146ee836147ea565b9250827f8000000000000000000000000000000000000000000000000000000000000000018212600084121516156147295761472861493d565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0182136000841216156147615761476061493d565b5b828203905092915050565b600061477782614814565b915061478283614814565b9250828210156147955761479461493d565b5b828203905092915050565b60006147ab826147f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561484b578082015181840152602081019050614830565b8381111561485a576000848401525b50505050565b6000600282049050600182168061487857607f821691505b6020821081141561488c5761488b61499b565b5b50919050565b61489b826149f9565b810181811067ffffffffffffffff821117156148ba576148b96149ca565b5b80604052505050565b60006148ce82614814565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149015761490061493d565b5b600182019050919050565b600061491782614814565b915061492283614814565b9250826149325761493161496c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206672656520676773000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d6967726174696e6700000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f416c7265616479206d6967726174656400000000000000000000000000000000600082015250565b7f4d6178206261746368206c696d69740000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f446f65736e74206f776e20746f6b656e00000000000000000000000000000000600082015250565b7f4e6f20737570706c790000000000000000000000000000000000000000000000600082015250565b7f3100000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f74206d696e74696e67000000000000000000000000000000000000000000600082015250565b7f4e6f2e0000000000000000000000000000000000000000000000000000000000600082015250565b614c25816147a0565b8114614c3057600080fd5b50565b614c3c816147b2565b8114614c4757600080fd5b50565b614c53816147be565b8114614c5e57600080fd5b50565b614c6a81614814565b8114614c7557600080fd5b5056fea2646970667358221220ef052692debe2177cd48fc7ffe2a2417fac7e5855e7f9dace4bb8643a39fa26664736f6c63430008040033

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

000000000000000000000000b2a3fe3d512c1e0102d85f89caab403b94b7d0de00000000000000000000000000000000000000000000000000000000000006190000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f676c697463686769726c732e696f2f6170692f0000000000

-----Decoded View---------------
Arg [0] : startingContractAddress (address): 0xB2a3fe3d512C1E0102D85f89caAb403B94B7D0de
Arg [1] : startingTokenId (uint256): 1561
Arg [2] : baseURI (string): https://glitchgirls.io/api/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000b2a3fe3d512c1e0102d85f89caab403b94b7d0de
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000619
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [4] : 68747470733a2f2f676c697463686769726c732e696f2f6170692f0000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.