ETH Price: $3,487.79 (+2.02%)
Gas: 12 Gwei

Token

Glitch Girls Reloaded (GG2)
 

Overview

Max Total Supply

1,839 GG2

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
gansen.eth
Balance
10 GG2
0x7196e387e6daff279c964559d3d64c0faf523b20
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
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.069 ether;

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

    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 = 0x4E7C2c8a6b3387f540fEf530e7CaD679Ad62818E;

    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;

        unchecked {
            if ((_startTokenId() <= curr) && (curr < _currentIndex)) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }

                while (true) {
                    curr--;
                    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;
                    }
                }
            }
        }
        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];
            currSlot.addr = to;
            currSlot.quantity = 1;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            

            uint256 curr = tokenId;


            uint64 qtyLeft = 1;

            if ((_startTokenId() <= curr) && (curr < _currentIndex)) {
                while (true) {
                    curr--;
                    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);

                    } else if (_startTokenId() > curr) {
                        //incase it cant find to avoid infinite loop..
                        break;
                    }
                }
            }

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    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"}]

608060405266f5232269808000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550600a600c55734e7c2c8a6b3387f540fef530e7cad679ad62818e600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ac57600080fd5b506040516200529f3803806200529f8339818101604052810190620000d2919062000439565b6040518060400160405280601581526020017f476c69746368204769726c732052656c6f6164656400000000000000000000008152506040518060400160405280600381526020017f4747320000000000000000000000000000000000000000000000000000000000815250816001908051906020019062000156929190620002e9565b5080600290805190602001906200016f929190620002e9565b50620001806200021260201b60201c565b6000819055505050620001a86200019c6200021b60201b60201c565b6200022360201b60201c565b82600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160008190555080600d908051906020019062000208929190620002e9565b505050506200068a565b60006001905090565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002f7906200057b565b90600052602060002090601f0160209004810192826200031b576000855562000367565b82601f106200033657805160ff191683800117855562000367565b8280016001018555821562000367579182015b828111156200036657825182559160200191906001019062000349565b5b5090506200037691906200037a565b5090565b5b80821115620003955760008160009055506001016200037b565b5090565b6000620003b0620003aa84620004d1565b620004a8565b905082815260208101848484011115620003c957600080fd5b620003d684828562000545565b509392505050565b600081519050620003ef8162000656565b92915050565b600082601f8301126200040757600080fd5b81516200041984826020860162000399565b91505092915050565b600081519050620004338162000670565b92915050565b6000806000606084860312156200044f57600080fd5b60006200045f86828701620003de565b9350506020620004728682870162000422565b925050604084015167ffffffffffffffff8111156200049057600080fd5b6200049e86828701620003f5565b9150509250925092565b6000620004b4620004c7565b9050620004c28282620005b1565b919050565b6000604051905090565b600067ffffffffffffffff821115620004ef57620004ee62000616565b5b620004fa8262000645565b9050602081019050919050565b600062000514826200051b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200056557808201518184015260208101905062000548565b8381111562000575576000848401525b50505050565b600060028204905060018216806200059457607f821691505b60208210811415620005ab57620005aa620005e7565b5b50919050565b620005bc8262000645565b810181811067ffffffffffffffff82111715620005de57620005dd62000616565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620006618162000507565b81146200066d57600080fd5b50565b6200067b816200053b565b81146200068757600080fd5b50565b614c05806200069a6000396000f3fe60806040526004361061023b5760003560e01c8063839f906f1161012e578063ae332ea5116100ab578063e985e9c51161006f578063e985e9c514610862578063f05e777d1461089f578063f2fde38b146108ca578063f48e0bcb146108f3578063ffeac44f1461091c5761023b565b8063ae332ea51461077d578063b11560c5146107a8578063b31b45ce146107d1578063b88d4fde146107fc578063c87b56dd146108255761023b565b80639a224903116100f25780639a224903146106aa5780639c8adefe146106d55780639d1b464a146106fe578063a22cb46514610729578063ad7a672f146107525761023b565b8063839f906f146105d55780638a4dcd85146106005780638da5cb5b14610629578063941975971461065457806395d89b411461067f5761023b565b80632a8092df116101bc57806355f804b31161018057806355f804b3146104f25780636352211e1461051b57806370a0823114610558578063715018a61461059557806372bf079e146105ac5761023b565b80632a8092df146103fb5780632f745c591461042657806342842e0e146104635780634d7094531461048c5780634f6ccce7146104b55761023b565b806318160ddd1161020357806318160ddd1461033757806323b872dd1461036257806324600fc31461038b57806325879311146103a2578063277bcc6e146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063163e1e611461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613d1e565b610945565b6040516102749190614219565b60405180910390f35b34801561028957600080fd5b50610292610a27565b60405161029f919061424f565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613db5565b610ab9565b6040516102dc91906141b2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613bff565b610b35565b005b34801561031a57600080fd5b5061033560048036038101906103309190613c3b565b610c40565b005b34801561034357600080fd5b5061034c610d92565b60405161035991906143f1565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613af9565b610da5565b005b34801561039757600080fd5b506103a0610db5565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190613a6b565b610f0b565b6040516103d69190614234565b60405180910390f35b6103f960048036038101906103f49190613e07565b610f54565b005b34801561040757600080fd5b506104106111a4565b60405161041d9190614219565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613bff565b6111bb565b60405161045a91906143f1565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613af9565b6113db565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613a6b565b6113fb565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190613db5565b61143f565b6040516104e991906143f1565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613d70565b61148a565b005b34801561052757600080fd5b50610542600480360381019061053d9190613db5565b61151c565b60405161054f91906141b2565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613a6b565b611532565b60405161058c91906143f1565b60405180910390f35b3480156105a157600080fd5b506105aa611602565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613db5565b61168a565b005b3480156105e157600080fd5b506105ea611710565b6040516105f791906141b2565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613cf5565b61173a565b005b34801561063557600080fd5b5061063e611819565b60405161064b91906141b2565b60405180910390f35b34801561066057600080fd5b50610669611843565b60405161067691906143f1565b60405180910390f35b34801561068b57600080fd5b50610694611848565b6040516106a1919061424f565b60405180910390f35b3480156106b657600080fd5b506106bf6118da565b6040516106cc91906143f1565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613e43565b6118ec565b005b34801561070a57600080fd5b50610713611b40565b60405161072091906143f1565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613bc3565b611b4a565b005b34801561075e57600080fd5b50610767611cc2565b60405161077491906143f1565b60405180910390f35b34801561078957600080fd5b50610792611ce1565b60405161079f91906143f1565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613c3b565b611ce7565b005b3480156107dd57600080fd5b506107e6611e21565b6040516107f391906143f1565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613b48565b611e2b565b005b34801561083157600080fd5b5061084c60048036038101906108479190613db5565b611ea7565b604051610859919061424f565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613abd565b611f5a565b6040516108969190614219565b60405180910390f35b3480156108ab57600080fd5b506108b4611fee565b6040516108c19190614219565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613a6b565b612005565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613c80565b6120fd565b005b34801561092857600080fd5b50610943600480360381019061093e9190613db5565b612277565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f826122fd565b5b9050919050565b606060018054610a36906147b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a62906147b7565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612367565b610afa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b408261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76125ce565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf95750610bf781610bf26125ce565b611f5a565b155b15610c30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8383836125d6565b505050565b610c486125ce565b73ffffffffffffffffffffffffffffffffffffffff16610c66611819565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390614331565b60405180910390fd5b611b3982829050600054610cd0919061454e565b1115610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890614391565b60405180910390fd5b60005b82829050811015610d8d57610d7a838383818110610d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d709190613a6b565b6001600054612688565b8080610d859061481a565b915050610d14565b505050565b6000610d9c6126a8565b60005403905090565b610db08383836126b1565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906143d1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff1663ad7a672f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ea557600080fd5b505afa158015610eb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edd9190613dde565b9081150290604051600060405180830381858888f19350505050158015610f08573d6000803e3d6000fd5b50565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b60009054906101000a900460ff16610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a906143b1565b60405180910390fd5b6000339050811561104157600083600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffb919061462f565b121561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614271565b60405180910390fd5b611092565b82600a5461104f91906145d5565b341015611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906142d1565b60405180910390fd5b5b600c548311156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90614311565b60405180910390fd5b6045611b396110e691906146c3565b836000546110f4919061454e565b1115611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90614371565b60405180910390fd5b6111428184600054612688565b811561119f5782600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611197919061462f565b925050819055505b505050565b6000600b60009054906101000a900460ff16905090565b60006111c683611532565b8211156111ff576040517f6df37eaf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611209610d92565b905060008060008060005b858110156113a2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461131b5780600001519450806020015167ffffffffffffffff169350600092505b8973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561135557508383105b1561138e578886141561137157819750505050505050506113d5565b858061137c9061481a565b965050828061138a9061481a565b9350505b50808061139a9061481a565b915050611214565b506040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b6113f683838360405180602001604052806000815250611e2b565b505050565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611449610d92565b821115611482576040517f401c27c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6114926125ce565b73ffffffffffffffffffffffffffffffffffffffff166114b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90614331565b60405180910390fd5b8181600d91906115179291906137b5565b505050565b600061152782612d06565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61160a6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611628611819565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590614331565b60405180910390fd5b6116886000612f86565b565b6116926125ce565b73ffffffffffffffffffffffffffffffffffffffff166116b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90614331565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117426125ce565b73ffffffffffffffffffffffffffffffffffffffff16611760611819565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614331565b60405180910390fd5b80156117eb57600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550611816565b600b60009054906101000a900460ff1615600b60006101000a81548160ff0219169083151502179055505b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b604581565b606060028054611857906147b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611883906147b7565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b5050505050905090565b6045611b396118e991906146c3565b81565b600b60019054906101000a900460ff1661193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906142b1565b60405180910390fd5b60003390506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008490505b8385611979919061454e565b811015611ad85760008273ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016119bb91906143f1565b60206040518083038186803b1580156119d357600080fd5b505afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190613a94565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614351565b60405180910390fd5b611a8482612367565b15611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb906142f1565b60405180910390fd5b508080611ad09061481a565b91505061196d565b50611ae4828486612688565b82600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3391906144ba565b9250508190555050505050565b6000600a54905090565b611b526125ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611bc46125ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c716125ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb69190614219565b60405180910390a35050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b611b3981565b611cef6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611d0d611819565b73ffffffffffffffffffffffffffffffffffffffff1614611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a90614331565b60405180910390fd5b60005b82829050811015611e1c576000838383818110611dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dc19190613a6b565b90506000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080611e149061481a565b915050611d66565b505050565b6000600c54905090565b611e368484846126b1565b611e558373ffffffffffffffffffffffffffffffffffffffff1661304c565b8015611e6a5750611e688484848461306f565b155b15611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611eb282612367565b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890614391565b60405180910390fd5b600d611efc836131cf565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611f4493929190614181565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60019054906101000a900460ff16905090565b61200d6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661202b611819565b73ffffffffffffffffffffffffffffffffffffffff1614612081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207890614331565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890614291565b60405180910390fd5b6120fa81612f86565b50565b6121056125ce565b73ffffffffffffffffffffffffffffffffffffffff16612123611819565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614331565b60405180910390fd5b60005b848490508110156122705760008585838181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906121d79190613a6b565b9050838383818110612212577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505080806122689061481a565b91505061217c565b5050505050565b61227f6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661229d611819565b73ffffffffffffffffffffffffffffffffffffffff16146122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea90614331565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080829050806123766126a8565b11158015612385575060005481105b156125c3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612477576001925050506125c9565b60005b6001156125c057828060019003935050600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509150600181019050600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16141580156125885750828503826020015167ffffffffffffffff16115b1561259957600193505050506125c9565b826125a26126a8565b11156125ad576125c0565b600f8111156125bb576125c0565b61247a565b50505b60009150505b919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126a38383604051806020016040528060008152508461337c565b505050565b60006001905090565b60006126bc82612d06565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612727576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127486125ce565b73ffffffffffffffffffffffffffffffffffffffff1614806127775750612776856127716125ce565b611f5a565b5b806127bc57506127856125ce565b73ffffffffffffffffffffffffffffffffffffffff166127a484610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127f5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561285c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128698585856001613390565b612875600084876125d6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600360008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600185019050600085905060006001905081612a1d6126a8565b11158015612a2c575060005482105b15612ba9575b600115612ba8578180600190039250506000600360008481526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015612add57508288038160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b8015612b0b575060008160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b15612b8c5760006001848a038360000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff160303905060018260000160148282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080925050612ba2565b82612b956126a8565b1115612ba15750612ba8565b5b50612a32565b5b6000600360008581526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c92576000548414612c9157898160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cff8585856001613396565b5050505050565b612d0e61383b565b600082905080612d1c6126a8565b11158015612d2b575060005481105b15612f4f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e1c578092505050612f81565b5b600115612f4d57818060019003925050600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614158015612f255750818403816020015167ffffffffffffffff16115b15612f34578092505050612f81565b81612f3d6126a8565b1115612f4857612f4d565b612e1d565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130956125ce565b8786866040518563ffffffff1660e01b81526004016130b794939291906141cd565b602060405180830381600087803b1580156130d157600080fd5b505af192505050801561310257506040513d601f19601f820116820180604052508101906130ff9190613d47565b60015b61317c573d8060008114613132576040519150601f19603f3d011682016040523d82523d6000602084013e613137565b606091505b50600081511415613174576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613217576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613377565b600082905060005b600082146132495780806132329061481a565b915050600a8261324291906145a4565b915061321f565b60008167ffffffffffffffff81111561328b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132bd5781602001600182028036833780820191505090505b5090505b60008514613370576001826132d691906146c3565b9150600a856132e59190614863565b60306132f1919061454e565b60f81b81838151811061332d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561336991906145a4565b94506132c1565b8093505050505b919050565b61338a84848460018561339c565b50505050565b50505050565b50505050565b6000819050600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613408576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000851415613443576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f85111561347e576040517f8011f1fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61348b6000878388613390565b84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555084600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550856003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000868201905084801561365557506136548873ffffffffffffffffffffffffffffffffffffffff1661304c565b5b15613720575b818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136c082612367565b156136ca57600080fd5b6136dd600089848060010195508961306f565b613713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561365b5761378c565b5b818060010192508873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613721575b83600054141561379e57816000819055505b50506137ad6000878388613396565b505050505050565b8280546137c1906147b7565b90600052602060002090601f0160209004810192826137e3576000855561382a565b82601f106137fc57803560ff191683800117855561382a565b8280016001018555821561382a579182015b8281111561382957823582559160200191906001019061380e565b5b5090506138379190613875565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561388e576000816000905550600101613876565b5090565b60006138a56138a084614431565b61440c565b9050828152602081018484840111156138bd57600080fd5b6138c8848285614775565b509392505050565b6000813590506138df81614b73565b92915050565b6000815190506138f481614b73565b92915050565b60008083601f84011261390c57600080fd5b8235905067ffffffffffffffff81111561392557600080fd5b60208301915083602082028301111561393d57600080fd5b9250929050565b60008083601f84011261395657600080fd5b8235905067ffffffffffffffff81111561396f57600080fd5b60208301915083602082028301111561398757600080fd5b9250929050565b60008135905061399d81614b8a565b92915050565b6000813590506139b281614ba1565b92915050565b6000815190506139c781614ba1565b92915050565b600082601f8301126139de57600080fd5b81356139ee848260208601613892565b91505092915050565b60008083601f840112613a0957600080fd5b8235905067ffffffffffffffff811115613a2257600080fd5b602083019150836001820283011115613a3a57600080fd5b9250929050565b600081359050613a5081614bb8565b92915050565b600081519050613a6581614bb8565b92915050565b600060208284031215613a7d57600080fd5b6000613a8b848285016138d0565b91505092915050565b600060208284031215613aa657600080fd5b6000613ab4848285016138e5565b91505092915050565b60008060408385031215613ad057600080fd5b6000613ade858286016138d0565b9250506020613aef858286016138d0565b9150509250929050565b600080600060608486031215613b0e57600080fd5b6000613b1c868287016138d0565b9350506020613b2d868287016138d0565b9250506040613b3e86828701613a41565b9150509250925092565b60008060008060808587031215613b5e57600080fd5b6000613b6c878288016138d0565b9450506020613b7d878288016138d0565b9350506040613b8e87828801613a41565b925050606085013567ffffffffffffffff811115613bab57600080fd5b613bb7878288016139cd565b91505092959194509250565b60008060408385031215613bd657600080fd5b6000613be4858286016138d0565b9250506020613bf58582860161398e565b9150509250929050565b60008060408385031215613c1257600080fd5b6000613c20858286016138d0565b9250506020613c3185828601613a41565b9150509250929050565b60008060208385031215613c4e57600080fd5b600083013567ffffffffffffffff811115613c6857600080fd5b613c74858286016138fa565b92509250509250929050565b60008060008060408587031215613c9657600080fd5b600085013567ffffffffffffffff811115613cb057600080fd5b613cbc878288016138fa565b9450945050602085013567ffffffffffffffff811115613cdb57600080fd5b613ce787828801613944565b925092505092959194509250565b600060208284031215613d0757600080fd5b6000613d158482850161398e565b91505092915050565b600060208284031215613d3057600080fd5b6000613d3e848285016139a3565b91505092915050565b600060208284031215613d5957600080fd5b6000613d67848285016139b8565b91505092915050565b60008060208385031215613d8357600080fd5b600083013567ffffffffffffffff811115613d9d57600080fd5b613da9858286016139f7565b92509250509250929050565b600060208284031215613dc757600080fd5b6000613dd584828501613a41565b91505092915050565b600060208284031215613df057600080fd5b6000613dfe84828501613a56565b91505092915050565b60008060408385031215613e1a57600080fd5b6000613e2885828601613a41565b9250506020613e398582860161398e565b9150509250929050565b60008060408385031215613e5657600080fd5b6000613e6485828601613a41565b9250506020613e7585828601613a41565b9150509250929050565b613e88816146f7565b82525050565b613e9781614709565b82525050565b6000613ea882614477565b613eb2818561448d565b9350613ec2818560208601614784565b613ecb81614950565b840191505092915050565b613edf81614741565b82525050565b6000613ef082614482565b613efa818561449e565b9350613f0a818560208601614784565b613f1381614950565b840191505092915050565b6000613f2982614482565b613f3381856144af565b9350613f43818560208601614784565b80840191505092915050565b60008154613f5c816147b7565b613f6681866144af565b94506001821660008114613f815760018114613f9257613fc5565b60ff19831686528186019350613fc5565b613f9b85614462565b60005b83811015613fbd57815481890152600182019150602081019050613f9e565b838801955050505b50505092915050565b6000613fdb600b8361449e565b9150613fe682614961565b602082019050919050565b6000613ffe60268361449e565b91506140098261498a565b604082019050919050565b6000614021600d8361449e565b915061402c826149d9565b602082019050919050565b6000614044600e8361449e565b915061404f82614a02565b602082019050919050565b600061406760108361449e565b915061407282614a2b565b602082019050919050565b600061408a600f8361449e565b915061409582614a54565b602082019050919050565b60006140ad60208361449e565b91506140b882614a7d565b602082019050919050565b60006140d060108361449e565b91506140db82614aa6565b602082019050919050565b60006140f360098361449e565b91506140fe82614acf565b602082019050919050565b600061411660018361449e565b915061412182614af8565b602082019050919050565b6000614139600b8361449e565b915061414482614b21565b602082019050919050565b600061415c60038361449e565b915061416782614b4a565b602082019050919050565b61417b8161476b565b82525050565b600061418d8286613f4f565b91506141998285613f1e565b91506141a58284613f1e565b9150819050949350505050565b60006020820190506141c76000830184613e7f565b92915050565b60006080820190506141e26000830187613e7f565b6141ef6020830186613e7f565b6141fc6040830185614172565b818103606083015261420e8184613e9d565b905095945050505050565b600060208201905061422e6000830184613e8e565b92915050565b60006020820190506142496000830184613ed6565b92915050565b600060208201905081810360008301526142698184613ee5565b905092915050565b6000602082019050818103600083015261428a81613fce565b9050919050565b600060208201905081810360008301526142aa81613ff1565b9050919050565b600060208201905081810360008301526142ca81614014565b9050919050565b600060208201905081810360008301526142ea81614037565b9050919050565b6000602082019050818103600083015261430a8161405a565b9050919050565b6000602082019050818103600083015261432a8161407d565b9050919050565b6000602082019050818103600083015261434a816140a0565b9050919050565b6000602082019050818103600083015261436a816140c3565b9050919050565b6000602082019050818103600083015261438a816140e6565b9050919050565b600060208201905081810360008301526143aa81614109565b9050919050565b600060208201905081810360008301526143ca8161412c565b9050919050565b600060208201905081810360008301526143ea8161414f565b9050919050565b60006020820190506144066000830184614172565b92915050565b6000614416614427565b905061442282826147e9565b919050565b6000604051905090565b600067ffffffffffffffff82111561444c5761444b614921565b5b61445582614950565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c582614741565b91506144d083614741565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0383136000831215161561450b5761450a614894565b5b817f800000000000000000000000000000000000000000000000000000000000000003831260008312161561454357614542614894565b5b828201905092915050565b60006145598261476b565b91506145648361476b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561459957614598614894565b5b828201905092915050565b60006145af8261476b565b91506145ba8361476b565b9250826145ca576145c96148c3565b5b828204905092915050565b60006145e08261476b565b91506145eb8361476b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462457614623614894565b5b828202905092915050565b600061463a82614741565b915061464583614741565b9250827f8000000000000000000000000000000000000000000000000000000000000000018212600084121516156146805761467f614894565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0182136000841216156146b8576146b7614894565b5b828203905092915050565b60006146ce8261476b565b91506146d98361476b565b9250828210156146ec576146eb614894565b5b828203905092915050565b60006147028261474b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a2578082015181840152602081019050614787565b838111156147b1576000848401525b50505050565b600060028204905060018216806147cf57607f821691505b602082108114156147e3576147e26148f2565b5b50919050565b6147f282614950565b810181811067ffffffffffffffff8211171561481157614810614921565b5b80604052505050565b60006148258261476b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485857614857614894565b5b600182019050919050565b600061486e8261476b565b91506148798361476b565b925082614889576148886148c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206672656520676773000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d6967726174696e6700000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f416c7265616479206d6967726174656400000000000000000000000000000000600082015250565b7f4d6178206261746368206c696d69740000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f446f65736e74206f776e20746f6b656e00000000000000000000000000000000600082015250565b7f4e6f20737570706c790000000000000000000000000000000000000000000000600082015250565b7f3100000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f74206d696e74696e67000000000000000000000000000000000000000000600082015250565b7f4e6f2e0000000000000000000000000000000000000000000000000000000000600082015250565b614b7c816146f7565b8114614b8757600080fd5b50565b614b9381614709565b8114614b9e57600080fd5b50565b614baa81614715565b8114614bb557600080fd5b50565b614bc18161476b565b8114614bcc57600080fd5b5056fea26469706673582212203c1f208ab3bafea24ba74d4f176aa7adb1635942847a03ba081f02d192fcc68f64736f6c63430008040033000000000000000000000000b2a3fe3d512c1e0102d85f89caab403b94b7d0de00000000000000000000000000000000000000000000000000000000000006190000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f676c697463686769726c732e696f2f6170692f0000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063839f906f1161012e578063ae332ea5116100ab578063e985e9c51161006f578063e985e9c514610862578063f05e777d1461089f578063f2fde38b146108ca578063f48e0bcb146108f3578063ffeac44f1461091c5761023b565b8063ae332ea51461077d578063b11560c5146107a8578063b31b45ce146107d1578063b88d4fde146107fc578063c87b56dd146108255761023b565b80639a224903116100f25780639a224903146106aa5780639c8adefe146106d55780639d1b464a146106fe578063a22cb46514610729578063ad7a672f146107525761023b565b8063839f906f146105d55780638a4dcd85146106005780638da5cb5b14610629578063941975971461065457806395d89b411461067f5761023b565b80632a8092df116101bc57806355f804b31161018057806355f804b3146104f25780636352211e1461051b57806370a0823114610558578063715018a61461059557806372bf079e146105ac5761023b565b80632a8092df146103fb5780632f745c591461042657806342842e0e146104635780634d7094531461048c5780634f6ccce7146104b55761023b565b806318160ddd1161020357806318160ddd1461033757806323b872dd1461036257806324600fc31461038b57806325879311146103a2578063277bcc6e146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063163e1e611461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613d1e565b610945565b6040516102749190614219565b60405180910390f35b34801561028957600080fd5b50610292610a27565b60405161029f919061424f565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613db5565b610ab9565b6040516102dc91906141b2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613bff565b610b35565b005b34801561031a57600080fd5b5061033560048036038101906103309190613c3b565b610c40565b005b34801561034357600080fd5b5061034c610d92565b60405161035991906143f1565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613af9565b610da5565b005b34801561039757600080fd5b506103a0610db5565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190613a6b565b610f0b565b6040516103d69190614234565b60405180910390f35b6103f960048036038101906103f49190613e07565b610f54565b005b34801561040757600080fd5b506104106111a4565b60405161041d9190614219565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613bff565b6111bb565b60405161045a91906143f1565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613af9565b6113db565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613a6b565b6113fb565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190613db5565b61143f565b6040516104e991906143f1565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613d70565b61148a565b005b34801561052757600080fd5b50610542600480360381019061053d9190613db5565b61151c565b60405161054f91906141b2565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613a6b565b611532565b60405161058c91906143f1565b60405180910390f35b3480156105a157600080fd5b506105aa611602565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613db5565b61168a565b005b3480156105e157600080fd5b506105ea611710565b6040516105f791906141b2565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613cf5565b61173a565b005b34801561063557600080fd5b5061063e611819565b60405161064b91906141b2565b60405180910390f35b34801561066057600080fd5b50610669611843565b60405161067691906143f1565b60405180910390f35b34801561068b57600080fd5b50610694611848565b6040516106a1919061424f565b60405180910390f35b3480156106b657600080fd5b506106bf6118da565b6040516106cc91906143f1565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613e43565b6118ec565b005b34801561070a57600080fd5b50610713611b40565b60405161072091906143f1565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613bc3565b611b4a565b005b34801561075e57600080fd5b50610767611cc2565b60405161077491906143f1565b60405180910390f35b34801561078957600080fd5b50610792611ce1565b60405161079f91906143f1565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613c3b565b611ce7565b005b3480156107dd57600080fd5b506107e6611e21565b6040516107f391906143f1565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613b48565b611e2b565b005b34801561083157600080fd5b5061084c60048036038101906108479190613db5565b611ea7565b604051610859919061424f565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613abd565b611f5a565b6040516108969190614219565b60405180910390f35b3480156108ab57600080fd5b506108b4611fee565b6040516108c19190614219565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613a6b565b612005565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613c80565b6120fd565b005b34801561092857600080fd5b50610943600480360381019061093e9190613db5565b612277565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f826122fd565b5b9050919050565b606060018054610a36906147b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a62906147b7565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612367565b610afa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b408261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76125ce565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf95750610bf781610bf26125ce565b611f5a565b155b15610c30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8383836125d6565b505050565b610c486125ce565b73ffffffffffffffffffffffffffffffffffffffff16610c66611819565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390614331565b60405180910390fd5b611b3982829050600054610cd0919061454e565b1115610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890614391565b60405180910390fd5b60005b82829050811015610d8d57610d7a838383818110610d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d709190613a6b565b6001600054612688565b8080610d859061481a565b915050610d14565b505050565b6000610d9c6126a8565b60005403905090565b610db08383836126b1565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906143d1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff1663ad7a672f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ea557600080fd5b505afa158015610eb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edd9190613dde565b9081150290604051600060405180830381858888f19350505050158015610f08573d6000803e3d6000fd5b50565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b60009054906101000a900460ff16610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a906143b1565b60405180910390fd5b6000339050811561104157600083600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffb919061462f565b121561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614271565b60405180910390fd5b611092565b82600a5461104f91906145d5565b341015611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906142d1565b60405180910390fd5b5b600c548311156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90614311565b60405180910390fd5b6045611b396110e691906146c3565b836000546110f4919061454e565b1115611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90614371565b60405180910390fd5b6111428184600054612688565b811561119f5782600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611197919061462f565b925050819055505b505050565b6000600b60009054906101000a900460ff16905090565b60006111c683611532565b8211156111ff576040517f6df37eaf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611209610d92565b905060008060008060005b858110156113a2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461131b5780600001519450806020015167ffffffffffffffff169350600092505b8973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561135557508383105b1561138e578886141561137157819750505050505050506113d5565b858061137c9061481a565b965050828061138a9061481a565b9350505b50808061139a9061481a565b915050611214565b506040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b6113f683838360405180602001604052806000815250611e2b565b505050565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611449610d92565b821115611482576040517f401c27c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6114926125ce565b73ffffffffffffffffffffffffffffffffffffffff166114b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90614331565b60405180910390fd5b8181600d91906115179291906137b5565b505050565b600061152782612d06565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61160a6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611628611819565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590614331565b60405180910390fd5b6116886000612f86565b565b6116926125ce565b73ffffffffffffffffffffffffffffffffffffffff166116b0611819565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90614331565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117426125ce565b73ffffffffffffffffffffffffffffffffffffffff16611760611819565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614331565b60405180910390fd5b80156117eb57600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550611816565b600b60009054906101000a900460ff1615600b60006101000a81548160ff0219169083151502179055505b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b604581565b606060028054611857906147b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611883906147b7565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b5050505050905090565b6045611b396118e991906146c3565b81565b600b60019054906101000a900460ff1661193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906142b1565b60405180910390fd5b60003390506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008490505b8385611979919061454e565b811015611ad85760008273ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016119bb91906143f1565b60206040518083038186803b1580156119d357600080fd5b505afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190613a94565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614351565b60405180910390fd5b611a8482612367565b15611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb906142f1565b60405180910390fd5b508080611ad09061481a565b91505061196d565b50611ae4828486612688565b82600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3391906144ba565b9250508190555050505050565b6000600a54905090565b611b526125ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611bc46125ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c716125ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb69190614219565b60405180910390a35050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b611b3981565b611cef6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611d0d611819565b73ffffffffffffffffffffffffffffffffffffffff1614611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a90614331565b60405180910390fd5b60005b82829050811015611e1c576000838383818110611dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dc19190613a6b565b90506000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080611e149061481a565b915050611d66565b505050565b6000600c54905090565b611e368484846126b1565b611e558373ffffffffffffffffffffffffffffffffffffffff1661304c565b8015611e6a5750611e688484848461306f565b155b15611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611eb282612367565b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890614391565b60405180910390fd5b600d611efc836131cf565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611f4493929190614181565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60019054906101000a900460ff16905090565b61200d6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661202b611819565b73ffffffffffffffffffffffffffffffffffffffff1614612081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207890614331565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890614291565b60405180910390fd5b6120fa81612f86565b50565b6121056125ce565b73ffffffffffffffffffffffffffffffffffffffff16612123611819565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614331565b60405180910390fd5b60005b848490508110156122705760008585838181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906121d79190613a6b565b9050838383818110612212577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505080806122689061481a565b91505061217c565b5050505050565b61227f6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661229d611819565b73ffffffffffffffffffffffffffffffffffffffff16146122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea90614331565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080829050806123766126a8565b11158015612385575060005481105b156125c3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612477576001925050506125c9565b60005b6001156125c057828060019003935050600360008481526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509150600181019050600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16141580156125885750828503826020015167ffffffffffffffff16115b1561259957600193505050506125c9565b826125a26126a8565b11156125ad576125c0565b600f8111156125bb576125c0565b61247a565b50505b60009150505b919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126a38383604051806020016040528060008152508461337c565b505050565b60006001905090565b60006126bc82612d06565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612727576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127486125ce565b73ffffffffffffffffffffffffffffffffffffffff1614806127775750612776856127716125ce565b611f5a565b5b806127bc57506127856125ce565b73ffffffffffffffffffffffffffffffffffffffff166127a484610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127f5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561285c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128698585856001613390565b612875600084876125d6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600360008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600185019050600085905060006001905081612a1d6126a8565b11158015612a2c575060005482105b15612ba9575b600115612ba8578180600190039250506000600360008481526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015612add57508288038160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b8015612b0b575060008160000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff16115b15612b8c5760006001848a038360000160149054906101000a900467ffffffffffffffff1667ffffffffffffffff160303905060018260000160148282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080925050612ba2565b82612b956126a8565b1115612ba15750612ba8565b5b50612a32565b5b6000600360008581526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c92576000548414612c9157898160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cff8585856001613396565b5050505050565b612d0e61383b565b600082905080612d1c6126a8565b11158015612d2b575060005481105b15612f4f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e1c578092505050612f81565b5b600115612f4d57818060019003925050600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614158015612f255750818403816020015167ffffffffffffffff16115b15612f34578092505050612f81565b81612f3d6126a8565b1115612f4857612f4d565b612e1d565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130956125ce565b8786866040518563ffffffff1660e01b81526004016130b794939291906141cd565b602060405180830381600087803b1580156130d157600080fd5b505af192505050801561310257506040513d601f19601f820116820180604052508101906130ff9190613d47565b60015b61317c573d8060008114613132576040519150601f19603f3d011682016040523d82523d6000602084013e613137565b606091505b50600081511415613174576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613217576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613377565b600082905060005b600082146132495780806132329061481a565b915050600a8261324291906145a4565b915061321f565b60008167ffffffffffffffff81111561328b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132bd5781602001600182028036833780820191505090505b5090505b60008514613370576001826132d691906146c3565b9150600a856132e59190614863565b60306132f1919061454e565b60f81b81838151811061332d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561336991906145a4565b94506132c1565b8093505050505b919050565b61338a84848460018561339c565b50505050565b50505050565b50505050565b6000819050600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613408576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000851415613443576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f85111561347e576040517f8011f1fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61348b6000878388613390565b84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555084600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550856003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000868201905084801561365557506136548873ffffffffffffffffffffffffffffffffffffffff1661304c565b5b15613720575b818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136c082612367565b156136ca57600080fd5b6136dd600089848060010195508961306f565b613713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561365b5761378c565b5b818060010192508873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613721575b83600054141561379e57816000819055505b50506137ad6000878388613396565b505050505050565b8280546137c1906147b7565b90600052602060002090601f0160209004810192826137e3576000855561382a565b82601f106137fc57803560ff191683800117855561382a565b8280016001018555821561382a579182015b8281111561382957823582559160200191906001019061380e565b5b5090506138379190613875565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561388e576000816000905550600101613876565b5090565b60006138a56138a084614431565b61440c565b9050828152602081018484840111156138bd57600080fd5b6138c8848285614775565b509392505050565b6000813590506138df81614b73565b92915050565b6000815190506138f481614b73565b92915050565b60008083601f84011261390c57600080fd5b8235905067ffffffffffffffff81111561392557600080fd5b60208301915083602082028301111561393d57600080fd5b9250929050565b60008083601f84011261395657600080fd5b8235905067ffffffffffffffff81111561396f57600080fd5b60208301915083602082028301111561398757600080fd5b9250929050565b60008135905061399d81614b8a565b92915050565b6000813590506139b281614ba1565b92915050565b6000815190506139c781614ba1565b92915050565b600082601f8301126139de57600080fd5b81356139ee848260208601613892565b91505092915050565b60008083601f840112613a0957600080fd5b8235905067ffffffffffffffff811115613a2257600080fd5b602083019150836001820283011115613a3a57600080fd5b9250929050565b600081359050613a5081614bb8565b92915050565b600081519050613a6581614bb8565b92915050565b600060208284031215613a7d57600080fd5b6000613a8b848285016138d0565b91505092915050565b600060208284031215613aa657600080fd5b6000613ab4848285016138e5565b91505092915050565b60008060408385031215613ad057600080fd5b6000613ade858286016138d0565b9250506020613aef858286016138d0565b9150509250929050565b600080600060608486031215613b0e57600080fd5b6000613b1c868287016138d0565b9350506020613b2d868287016138d0565b9250506040613b3e86828701613a41565b9150509250925092565b60008060008060808587031215613b5e57600080fd5b6000613b6c878288016138d0565b9450506020613b7d878288016138d0565b9350506040613b8e87828801613a41565b925050606085013567ffffffffffffffff811115613bab57600080fd5b613bb7878288016139cd565b91505092959194509250565b60008060408385031215613bd657600080fd5b6000613be4858286016138d0565b9250506020613bf58582860161398e565b9150509250929050565b60008060408385031215613c1257600080fd5b6000613c20858286016138d0565b9250506020613c3185828601613a41565b9150509250929050565b60008060208385031215613c4e57600080fd5b600083013567ffffffffffffffff811115613c6857600080fd5b613c74858286016138fa565b92509250509250929050565b60008060008060408587031215613c9657600080fd5b600085013567ffffffffffffffff811115613cb057600080fd5b613cbc878288016138fa565b9450945050602085013567ffffffffffffffff811115613cdb57600080fd5b613ce787828801613944565b925092505092959194509250565b600060208284031215613d0757600080fd5b6000613d158482850161398e565b91505092915050565b600060208284031215613d3057600080fd5b6000613d3e848285016139a3565b91505092915050565b600060208284031215613d5957600080fd5b6000613d67848285016139b8565b91505092915050565b60008060208385031215613d8357600080fd5b600083013567ffffffffffffffff811115613d9d57600080fd5b613da9858286016139f7565b92509250509250929050565b600060208284031215613dc757600080fd5b6000613dd584828501613a41565b91505092915050565b600060208284031215613df057600080fd5b6000613dfe84828501613a56565b91505092915050565b60008060408385031215613e1a57600080fd5b6000613e2885828601613a41565b9250506020613e398582860161398e565b9150509250929050565b60008060408385031215613e5657600080fd5b6000613e6485828601613a41565b9250506020613e7585828601613a41565b9150509250929050565b613e88816146f7565b82525050565b613e9781614709565b82525050565b6000613ea882614477565b613eb2818561448d565b9350613ec2818560208601614784565b613ecb81614950565b840191505092915050565b613edf81614741565b82525050565b6000613ef082614482565b613efa818561449e565b9350613f0a818560208601614784565b613f1381614950565b840191505092915050565b6000613f2982614482565b613f3381856144af565b9350613f43818560208601614784565b80840191505092915050565b60008154613f5c816147b7565b613f6681866144af565b94506001821660008114613f815760018114613f9257613fc5565b60ff19831686528186019350613fc5565b613f9b85614462565b60005b83811015613fbd57815481890152600182019150602081019050613f9e565b838801955050505b50505092915050565b6000613fdb600b8361449e565b9150613fe682614961565b602082019050919050565b6000613ffe60268361449e565b91506140098261498a565b604082019050919050565b6000614021600d8361449e565b915061402c826149d9565b602082019050919050565b6000614044600e8361449e565b915061404f82614a02565b602082019050919050565b600061406760108361449e565b915061407282614a2b565b602082019050919050565b600061408a600f8361449e565b915061409582614a54565b602082019050919050565b60006140ad60208361449e565b91506140b882614a7d565b602082019050919050565b60006140d060108361449e565b91506140db82614aa6565b602082019050919050565b60006140f360098361449e565b91506140fe82614acf565b602082019050919050565b600061411660018361449e565b915061412182614af8565b602082019050919050565b6000614139600b8361449e565b915061414482614b21565b602082019050919050565b600061415c60038361449e565b915061416782614b4a565b602082019050919050565b61417b8161476b565b82525050565b600061418d8286613f4f565b91506141998285613f1e565b91506141a58284613f1e565b9150819050949350505050565b60006020820190506141c76000830184613e7f565b92915050565b60006080820190506141e26000830187613e7f565b6141ef6020830186613e7f565b6141fc6040830185614172565b818103606083015261420e8184613e9d565b905095945050505050565b600060208201905061422e6000830184613e8e565b92915050565b60006020820190506142496000830184613ed6565b92915050565b600060208201905081810360008301526142698184613ee5565b905092915050565b6000602082019050818103600083015261428a81613fce565b9050919050565b600060208201905081810360008301526142aa81613ff1565b9050919050565b600060208201905081810360008301526142ca81614014565b9050919050565b600060208201905081810360008301526142ea81614037565b9050919050565b6000602082019050818103600083015261430a8161405a565b9050919050565b6000602082019050818103600083015261432a8161407d565b9050919050565b6000602082019050818103600083015261434a816140a0565b9050919050565b6000602082019050818103600083015261436a816140c3565b9050919050565b6000602082019050818103600083015261438a816140e6565b9050919050565b600060208201905081810360008301526143aa81614109565b9050919050565b600060208201905081810360008301526143ca8161412c565b9050919050565b600060208201905081810360008301526143ea8161414f565b9050919050565b60006020820190506144066000830184614172565b92915050565b6000614416614427565b905061442282826147e9565b919050565b6000604051905090565b600067ffffffffffffffff82111561444c5761444b614921565b5b61445582614950565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c582614741565b91506144d083614741565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0383136000831215161561450b5761450a614894565b5b817f800000000000000000000000000000000000000000000000000000000000000003831260008312161561454357614542614894565b5b828201905092915050565b60006145598261476b565b91506145648361476b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561459957614598614894565b5b828201905092915050565b60006145af8261476b565b91506145ba8361476b565b9250826145ca576145c96148c3565b5b828204905092915050565b60006145e08261476b565b91506145eb8361476b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462457614623614894565b5b828202905092915050565b600061463a82614741565b915061464583614741565b9250827f8000000000000000000000000000000000000000000000000000000000000000018212600084121516156146805761467f614894565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0182136000841216156146b8576146b7614894565b5b828203905092915050565b60006146ce8261476b565b91506146d98361476b565b9250828210156146ec576146eb614894565b5b828203905092915050565b60006147028261474b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a2578082015181840152602081019050614787565b838111156147b1576000848401525b50505050565b600060028204905060018216806147cf57607f821691505b602082108114156147e3576147e26148f2565b5b50919050565b6147f282614950565b810181811067ffffffffffffffff8211171561481157614810614921565b5b80604052505050565b60006148258261476b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485857614857614894565b5b600182019050919050565b600061486e8261476b565b91506148798361476b565b925082614889576148886148c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206672656520676773000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d6967726174696e6700000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f416c7265616479206d6967726174656400000000000000000000000000000000600082015250565b7f4d6178206261746368206c696d69740000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f446f65736e74206f776e20746f6b656e00000000000000000000000000000000600082015250565b7f4e6f20737570706c790000000000000000000000000000000000000000000000600082015250565b7f3100000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f74206d696e74696e67000000000000000000000000000000000000000000600082015250565b7f4e6f2e0000000000000000000000000000000000000000000000000000000000600082015250565b614b7c816146f7565b8114614b8757600080fd5b50565b614b9381614709565b8114614b9e57600080fd5b50565b614baa81614715565b8114614bb557600080fd5b50565b614bc18161476b565b8114614bcc57600080fd5b5056fea26469706673582212203c1f208ab3bafea24ba74d4f176aa7adb1635942847a03ba081f02d192fcc68f64736f6c63430008040033

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.