ETH Price: $3,319.23 (+1.55%)
Gas: 7 Gwei

GVG500 (GVG500)
 

Overview

TokenID

107

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
gangtest

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-28
*/

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: GVG500.sol


/**
                                                                                                         
        ###############################################################################################        
        ###############################################################################################        
        ##                                                                                           ##        
        ##                                    ############# ###                                      ##        
        ##                             ######  # ###  ###############                                ##        
        ##                         +######## # #               ######  #####                         ##        
        ##                     ######+#      #  ###+###########     # ###.#                          ##        
        ##                   +######      ##### ##################### #    ####  #                   ##        
        ##                #####       ########                    #######  #  ###.###                ##        
        ##              ###+      #######        ################     ######      #####              ##        
        ##             ###      #####       #########################     ######      ##             ##        
        ##             #      ####      ##########                ####      #### #     #             ##        
        ##             ########      ######  #########################         ##### ###             ##        
        ##               ####        ##  #####                        ##         #####               ##        
        ##                            #     ##################################                       ##        
        ##                  #################                          ####  ###                     ##        
        ##               ###############        #  ########### #####################                 ##        
        ##              #####   ########     ############### #####   #####  ########                 ##        
        ##              ###  ##############   #### +      #####  ##############  ###                 ##        
        ##               ########     #######  ####      ####   ######     #########                 ##        
        ##            ####  #  #####      ####   ###    ####  #####     ######  #  ###               ##        
        ##          ####################    ###   ##    ###   ###   ####################             ##        
        ##          #####################   ###   ##    ###   ##   ######################            ##        
        ##          ##     #########  ##### ###   ##    ###   ## #####   #########    ###            ##        
        ##          ###   ############  #######  ###    ###   ######   ###########    ###            ##        
        ##          ####  #####   .####  #####  ####     ###   ####  #####    ####   ###             ##        
        ##           ####   ######## ##        ####      ####       #############  ####              ##        
        ##            #####   #########        ###        ####       ##########  #####               ##        
        ##              #######          ###   ####      ####   ###           #######                ##        
        ##                ####################  #####  #####  #####################                  ##        
        ##                   ###################  #########  ##################                      ##        
        ##                                   ####   #####  #####                                     ##        
        ##          ########################## ####      #### ##########################             ##        
        ##          #                           #####   #### #                         #             ##        
        ##          ##    ## ### ###   ######  ## ######## ##  ######   ###    ###+   ##             ##        
        ##           ##### ##############  ### ### # #### #. ####  ########## ###### ###             ##        
        ##           ####### # # # #   ##  ##  # ###### # #  # ##+ ###  # # #### # # ###             ##        
        ##            #### ##############  ### #### ######## ####  ########## ###### ###             ##        
        ##          ################################ ## ### ##################.### ## ##             ##        
        ##          ##                              ## #                               #+            ##        
        ##          ################################## #################################+            ##        
        ##              ###              ########              #####                                 ##        
        ##            ########          ##########           ########            #####               ##        
        ##           #### #####         ###     ##          ####  ####          #######              ##        
        ##           ##########         ##########          ##########          ### ###              ##        
        ##           #########            #######           ##########          +######              ##        
        ##              ###.                 #                 #####              ###                ##        
        ##                                                                                           ##        
        ##                                                                                           ##        
        ##                                                                                           ##        
        ###############################################################################################        
        ###############################################################################################        
        
        Developer: CrankyDev.eth
        Owner: GVG500.eth
*/
pragma solidity >=0.7.0 <0.9.0;



contract gangtest is ERC721A, Ownable {
    uint256 public COST = 0.25 ether;
    uint256 public MAX_SUPPLY = 500;
    uint256 public MAX_PER_TRANSACTION = 10; 
    bool public SALE = false;
    string public baseURI;

    error SaleNotActive();
    error MaxSupplyReached();
    error MaxPerTxReached(); 
    error NotEnoughETH();
    error NoContractMint();

    constructor(
        string memory _name,
        string memory _symbol,
        address initialOwner 
    ) ERC721A(_name, _symbol) Ownable(initialOwner) payable {
    }

    function setCost(uint256 _cost) external onlyOwner {
        COST = _cost;
    }
  
    function setSupply(uint256 _newSupply) external onlyOwner {
        MAX_SUPPLY = _newSupply;
    }
  
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function MintGVG500(uint256 _amount) external payable {
        if (tx.origin != msg.sender) revert NoContractMint();
        if (!SALE) revert SaleNotActive();
        if (_totalMinted() + _amount > MAX_SUPPLY) revert MaxSupplyReached();
        if (_amount > MAX_PER_TRANSACTION) revert MaxPerTxReached(); 
        if (msg.value < COST * _amount) revert NotEnoughETH();

        _mint(msg.sender, _amount);
    }

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

    function setBaseURI(string calldata _newURI) external onlyOwner {
        baseURI = _newURI;
    }

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

    function toggleSale(bool _toggle) external onlyOwner {
        SALE = _toggle;
    }
  
    function setMaxPerTransaction(uint256 _newMaxPerTx) external onlyOwner { 
        MAX_PER_TRANSACTION = _newMaxPerTx;
    }

    function AirDrop(uint256 _amount, address _to) external onlyOwner {
        if (_totalMinted() + _amount > MAX_SUPPLY) revert MaxSupplyReached();
        _mint(_to, _amount);
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoContractMint","type":"error"},{"inputs":[],"name":"NotEnoughETH","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"AirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"MintGVG500","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SALE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerTx","type":"uint256"}],"name":"setMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","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":"_toggle","type":"bool"}],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526703782dace9d900006009556101f4600a55600a600b555f600c5f6101000a81548160ff02191690831515021790555060405162003107380380620031078339818101604052810190620000599190620003d6565b80838381600290816200006d9190620006a4565b5080600390816200007f9190620006a4565b50620000906200012560201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200010a575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000101919062000799565b60405180910390fd5b6200011b816200012d60201b60201c565b50505050620007b4565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620002518262000209565b810181811067ffffffffffffffff8211171562000273576200027262000219565b5b80604052505050565b5f62000287620001f0565b905062000295828262000246565b919050565b5f67ffffffffffffffff821115620002b757620002b662000219565b5b620002c28262000209565b9050602081019050919050565b5f5b83811015620002ee578082015181840152602081019050620002d1565b5f8484015250505050565b5f6200030f62000309846200029a565b6200027c565b9050828152602081018484840111156200032e576200032d62000205565b5b6200033b848285620002cf565b509392505050565b5f82601f8301126200035a576200035962000201565b5b81516200036c848260208601620002f9565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620003a08262000375565b9050919050565b620003b28162000394565b8114620003bd575f80fd5b50565b5f81519050620003d081620003a7565b92915050565b5f805f60608486031215620003f057620003ef620001f9565b5b5f84015167ffffffffffffffff81111562000410576200040f620001fd565b5b6200041e8682870162000343565b935050602084015167ffffffffffffffff811115620004425762000441620001fd565b5b620004508682870162000343565b92505060406200046386828701620003c0565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004bc57607f821691505b602082108103620004d257620004d162000477565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f9565b620005428683620004f9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200058c6200058662000580846200055a565b62000563565b6200055a565b9050919050565b5f819050919050565b620005a7836200056c565b620005bf620005b68262000593565b84845462000505565b825550505050565b5f90565b620005d5620005c7565b620005e28184846200059c565b505050565b5b818110156200060957620005fd5f82620005cb565b600181019050620005e8565b5050565b601f82111562000658576200062281620004d8565b6200062d84620004ea565b810160208510156200063d578190505b620006556200064c85620004ea565b830182620005e7565b50505b505050565b5f82821c905092915050565b5f6200067a5f19846008026200065d565b1980831691505092915050565b5f62000694838362000669565b9150826002028217905092915050565b620006af826200046d565b67ffffffffffffffff811115620006cb57620006ca62000219565b5b620006d78254620004a4565b620006e48282856200060d565b5f60209050601f8311600181146200071a575f841562000705578287015190505b62000711858262000687565b86555062000780565b601f1984166200072a86620004d8565b5f5b8281101562000753578489015182556001820191506020850194506020810190506200072c565b868310156200077357848901516200076f601f89168262000669565b8355505b6001600288020188555050505b505050505050565b620007938162000394565b82525050565b5f602082019050620007ae5f83018462000788565b92915050565b61294580620007c25f395ff3fe6080604052600436106101d7575f3560e01c80636c0360eb11610101578063bf8fbbd211610094578063dc33e68111610063578063dc33e68114610629578063e985e9c514610665578063f2fde38b146106a1578063f4c05475146106c9576101d7565b8063bf8fbbd214610571578063c87b56dd1461059b578063cb14eb87146105d7578063ccfdd2f814610601576101d7565b806395d89b41116100d057806395d89b41146104db578063a22cb46514610505578063aab402e51461052d578063b88d4fde14610555576101d7565b80636c0360eb1461043557806370a082311461045f578063715018a61461049b5780638da5cb5b146104b1576101d7565b806332cb6b0c1161017957806344a0d68a1161014857806344a0d68a1461037f5780634db08aea146103a757806355f804b3146103d15780636352211e146103f9576101d7565b806332cb6b0c146102fb5780633b4c4b25146103255780633ccfd60b1461034d57806342842e0e14610363576101d7565b8063095ea7b3116101b5578063095ea7b31461027d5780631744a40b1461029957806318160ddd146102b557806323b872dd146102df576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190611d90565b6106f1565b60405161020e9190611dd5565b60405180910390f35b348015610222575f80fd5b5061022b610782565b6040516102389190611e78565b60405180910390f35b34801561024c575f80fd5b5061026760048036038101906102629190611ecb565b610812565b6040516102749190611f35565b60405180910390f35b61029760048036038101906102929190611f78565b61088c565b005b6102b360048036038101906102ae9190611ecb565b6109cb565b005b3480156102c0575f80fd5b506102c9610b53565b6040516102d69190611fc5565b60405180910390f35b6102f960048036038101906102f49190611fde565b610b68565b005b348015610306575f80fd5b5061030f610e76565b60405161031c9190611fc5565b60405180910390f35b348015610330575f80fd5b5061034b60048036038101906103469190611ecb565b610e7c565b005b348015610358575f80fd5b50610361610e8e565b005b61037d60048036038101906103789190611fde565b610f41565b005b34801561038a575f80fd5b506103a560048036038101906103a09190611ecb565b610f60565b005b3480156103b2575f80fd5b506103bb610f72565b6040516103c89190611dd5565b60405180910390f35b3480156103dc575f80fd5b506103f760048036038101906103f2919061208f565b610f84565b005b348015610404575f80fd5b5061041f600480360381019061041a9190611ecb565b610fa2565b60405161042c9190611f35565b60405180910390f35b348015610440575f80fd5b50610449610fb3565b6040516104569190611e78565b60405180910390f35b34801561046a575f80fd5b50610485600480360381019061048091906120da565b61103f565b6040516104929190611fc5565b60405180910390f35b3480156104a6575f80fd5b506104af6110f4565b005b3480156104bc575f80fd5b506104c5611107565b6040516104d29190611f35565b60405180910390f35b3480156104e6575f80fd5b506104ef61112f565b6040516104fc9190611e78565b60405180910390f35b348015610510575f80fd5b5061052b6004803603810190610526919061212f565b6111bf565b005b348015610538575f80fd5b50610553600480360381019061054e919061216d565b6112c5565b005b61056f600480360381019061056a91906122c0565b6112e9565b005b34801561057c575f80fd5b5061058561135b565b6040516105929190611fc5565b60405180910390f35b3480156105a6575f80fd5b506105c160048036038101906105bc9190611ecb565b611361565b6040516105ce9190611e78565b60405180910390f35b3480156105e2575f80fd5b506105eb6113fc565b6040516105f89190611fc5565b60405180910390f35b34801561060c575f80fd5b5061062760048036038101906106229190611ecb565b611402565b005b348015610634575f80fd5b5061064f600480360381019061064a91906120da565b611414565b60405161065c9190611fc5565b60405180910390f35b348015610670575f80fd5b5061068b60048036038101906106869190612340565b611425565b6040516106989190611dd5565b60405180910390f35b3480156106ac575f80fd5b506106c760048036038101906106c291906120da565b6114b3565b005b3480156106d4575f80fd5b506106ef60048036038101906106ea919061237e565b611537565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610791906123e9565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd906123e9565b80156108085780601f106107df57610100808354040283529160200191610808565b820191905f5260205f20905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b5f61081c8261159b565b610852576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61089682610fa2565b90508073ffffffffffffffffffffffffffffffffffffffff166108b76115f5565b73ffffffffffffffffffffffffffffffffffffffff161461091a576108e3816108de6115f5565b611425565b610919576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a30576040517fc8a2f6cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5f9054906101000a900460ff16610a75576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610a816115fc565b610a8b9190612446565b1115610ac3576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610aff576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600954610b0d9190612479565b341015610b46576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b50338261160d565b50565b5f610b5c6117b6565b6001545f540303905090565b5f610b72826117be565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610be484611881565b91509150610bfa8187610bf56115f5565b6118a4565b610c4657610c0f86610c0a6115f5565b611425565b610c45576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb886868660016118e7565b8015610cc2575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610d8a85610d668888876118ed565b7c020000000000000000000000000000000000000000000000000000000017611914565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610e06575f6001850190505f60045f8381526020019081526020015f205403610e04575f548114610e03578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e6e868686600161193e565b505050505050565b600a5481565b610e84611944565b80600a8190555050565b610e96611944565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610ebb906124e7565b5f6040518083038185875af1925050503d805f8114610ef5576040519150601f19603f3d011682016040523d82523d5f602084013e610efa565b606091505b5050905080610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590612545565b60405180910390fd5b50565b610f5b83838360405180602001604052805f8152506112e9565b505050565b610f68611944565b8060098190555050565b600c5f9054906101000a900460ff1681565b610f8c611944565b8181600d9182610f9d92919061270a565b505050565b5f610fac826117be565b9050919050565b600d8054610fc0906123e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fec906123e9565b80156110375780601f1061100e57610100808354040283529160200191611037565b820191905f5260205f20905b81548152906001019060200180831161101a57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6110fc611944565b6111055f6119cb565b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461113e906123e9565b80601f016020809104026020016040519081016040528092919081815260200182805461116a906123e9565b80156111b55780601f1061118c576101008083540402835291602001916111b5565b820191905f5260205f20905b81548152906001019060200180831161119857829003601f168201915b5050505050905090565b8060075f6111cb6115f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112746115f5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b99190611dd5565b60405180910390a35050565b6112cd611944565b80600c5f6101000a81548160ff02191690831515021790555050565b6112f4848484610b68565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113555761131e84848484611a8e565b611354576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b606061136c8261159b565b6113a2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113ab611bd9565b90505f8151036113c95760405180602001604052805f8152506113f4565b806113d384611c69565b6040516020016113e4929190612811565b6040516020818303038152906040525b915050919050565b600b5481565b61140a611944565b80600b8190555050565b5f61141e82611cb8565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114bb611944565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016115229190611f35565b60405180910390fd5b611534816119cb565b50565b61153f611944565b600a548261154b6115fc565b6115559190612446565b111561158d576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611597818361160d565b5050565b5f816115a56117b6565b111580156115b357505f5482105b80156115ee57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6116056117b6565b5f5403905090565b5f805490505f820361164b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116575f8483856118e7565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506116c9836116ba5f865f6118ed565b6116c385611d0c565b17611914565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146117635780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061172a565b505f820361179d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506117b15f84838561193e565b505050565b5f6001905090565b5f80829050806117cc6117b6565b1161184a575f54811015611849575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611847575b5f810361183d5760045f836001900393508381526020019081526020015f20549050611816565b809250505061187c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611903868684611d1b565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61194c611d23565b73ffffffffffffffffffffffffffffffffffffffff1661196a611107565b73ffffffffffffffffffffffffffffffffffffffff16146119c95761198d611d23565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119c09190611f35565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ab36115f5565b8786866040518563ffffffff1660e01b8152600401611ad59493929190612886565b6020604051808303815f875af1925050508015611b1057506040513d601f19601f82011682018060405250810190611b0d91906128e4565b60015b611b86573d805f8114611b3e576040519150601f19603f3d011682016040523d82523d5f602084013e611b43565b606091505b505f815103611b7e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611be8906123e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611c14906123e9565b8015611c5f5780601f10611c3657610100808354040283529160200191611c5f565b820191905f5260205f20905b815481529060010190602001808311611c4257829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b600115611ca357600184039350600a81066030018453600a8104905080611c81575b50828103602084039350808452505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f6001821460e11b9050919050565b5f9392505050565b5f33905090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d6f81611d3b565b8114611d79575f80fd5b50565b5f81359050611d8a81611d66565b92915050565b5f60208284031215611da557611da4611d33565b5b5f611db284828501611d7c565b91505092915050565b5f8115159050919050565b611dcf81611dbb565b82525050565b5f602082019050611de85f830184611dc6565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e25578082015181840152602081019050611e0a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e4a82611dee565b611e548185611df8565b9350611e64818560208601611e08565b611e6d81611e30565b840191505092915050565b5f6020820190508181035f830152611e908184611e40565b905092915050565b5f819050919050565b611eaa81611e98565b8114611eb4575f80fd5b50565b5f81359050611ec581611ea1565b92915050565b5f60208284031215611ee057611edf611d33565b5b5f611eed84828501611eb7565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f1f82611ef6565b9050919050565b611f2f81611f15565b82525050565b5f602082019050611f485f830184611f26565b92915050565b611f5781611f15565b8114611f61575f80fd5b50565b5f81359050611f7281611f4e565b92915050565b5f8060408385031215611f8e57611f8d611d33565b5b5f611f9b85828601611f64565b9250506020611fac85828601611eb7565b9150509250929050565b611fbf81611e98565b82525050565b5f602082019050611fd85f830184611fb6565b92915050565b5f805f60608486031215611ff557611ff4611d33565b5b5f61200286828701611f64565b935050602061201386828701611f64565b925050604061202486828701611eb7565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261204f5761204e61202e565b5b8235905067ffffffffffffffff81111561206c5761206b612032565b5b60208301915083600182028301111561208857612087612036565b5b9250929050565b5f80602083850312156120a5576120a4611d33565b5b5f83013567ffffffffffffffff8111156120c2576120c1611d37565b5b6120ce8582860161203a565b92509250509250929050565b5f602082840312156120ef576120ee611d33565b5b5f6120fc84828501611f64565b91505092915050565b61210e81611dbb565b8114612118575f80fd5b50565b5f8135905061212981612105565b92915050565b5f806040838503121561214557612144611d33565b5b5f61215285828601611f64565b92505060206121638582860161211b565b9150509250929050565b5f6020828403121561218257612181611d33565b5b5f61218f8482850161211b565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6121d282611e30565b810181811067ffffffffffffffff821117156121f1576121f061219c565b5b80604052505050565b5f612203611d2a565b905061220f82826121c9565b919050565b5f67ffffffffffffffff82111561222e5761222d61219c565b5b61223782611e30565b9050602081019050919050565b828183375f83830152505050565b5f61226461225f84612214565b6121fa565b9050828152602081018484840111156122805761227f612198565b5b61228b848285612244565b509392505050565b5f82601f8301126122a7576122a661202e565b5b81356122b7848260208601612252565b91505092915050565b5f805f80608085870312156122d8576122d7611d33565b5b5f6122e587828801611f64565b94505060206122f687828801611f64565b935050604061230787828801611eb7565b925050606085013567ffffffffffffffff81111561232857612327611d37565b5b61233487828801612293565b91505092959194509250565b5f806040838503121561235657612355611d33565b5b5f61236385828601611f64565b925050602061237485828601611f64565b9150509250929050565b5f806040838503121561239457612393611d33565b5b5f6123a185828601611eb7565b92505060206123b285828601611f64565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061240057607f821691505b602082108103612413576124126123bc565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61245082611e98565b915061245b83611e98565b925082820190508082111561247357612472612419565b5b92915050565b5f61248382611e98565b915061248e83611e98565b925082820261249c81611e98565b915082820484148315176124b3576124b2612419565b5b5092915050565b5f81905092915050565b50565b5f6124d25f836124ba565b91506124dd826124c4565b5f82019050919050565b5f6124f1826124c7565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f61252f601083611df8565b915061253a826124fb565b602082019050919050565b5f6020820190508181035f83015261255c81612523565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261258e565b6125d3868361258e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61260e61260961260484611e98565b6125eb565b611e98565b9050919050565b5f819050919050565b612627836125f4565b61263b61263382612615565b84845461259a565b825550505050565b5f90565b61264f612643565b61265a81848461261e565b505050565b5b8181101561267d576126725f82612647565b600181019050612660565b5050565b601f8211156126c2576126938161256d565b61269c8461257f565b810160208510156126ab578190505b6126bf6126b78561257f565b83018261265f565b50505b505050565b5f82821c905092915050565b5f6126e25f19846008026126c7565b1980831691505092915050565b5f6126fa83836126d3565b9150826002028217905092915050565b6127148383612563565b67ffffffffffffffff81111561272d5761272c61219c565b5b61273782546123e9565b612742828285612681565b5f601f83116001811461276f575f841561275d578287013590505b61276785826126ef565b8655506127ce565b601f19841661277d8661256d565b5f5b828110156127a45784890135825560018201915060208501945060208101905061277f565b868310156127c157848901356127bd601f8916826126d3565b8355505b6001600288020188555050505b50505050505050565b5f81905092915050565b5f6127eb82611dee565b6127f581856127d7565b9350612805818560208601611e08565b80840191505092915050565b5f61281c82856127e1565b915061282882846127e1565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f61285882612834565b612862818561283e565b9350612872818560208601611e08565b61287b81611e30565b840191505092915050565b5f6080820190506128995f830187611f26565b6128a66020830186611f26565b6128b36040830185611fb6565b81810360608301526128c5818461284e565b905095945050505050565b5f815190506128de81611d66565b92915050565b5f602082840312156128f9576128f8611d33565b5b5f612906848285016128d0565b9150509291505056fea26469706673582212205442d07ac51b30bb8366edb12f5b97aed58cb30cf63fa251a026105ebb2576fa64736f6c63430008170033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000003db466cb3c706f48cd816c21aed359ad837b0c880000000000000000000000000000000000000000000000000000000000000006475647353030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064756473530300000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d7575f3560e01c80636c0360eb11610101578063bf8fbbd211610094578063dc33e68111610063578063dc33e68114610629578063e985e9c514610665578063f2fde38b146106a1578063f4c05475146106c9576101d7565b8063bf8fbbd214610571578063c87b56dd1461059b578063cb14eb87146105d7578063ccfdd2f814610601576101d7565b806395d89b41116100d057806395d89b41146104db578063a22cb46514610505578063aab402e51461052d578063b88d4fde14610555576101d7565b80636c0360eb1461043557806370a082311461045f578063715018a61461049b5780638da5cb5b146104b1576101d7565b806332cb6b0c1161017957806344a0d68a1161014857806344a0d68a1461037f5780634db08aea146103a757806355f804b3146103d15780636352211e146103f9576101d7565b806332cb6b0c146102fb5780633b4c4b25146103255780633ccfd60b1461034d57806342842e0e14610363576101d7565b8063095ea7b3116101b5578063095ea7b31461027d5780631744a40b1461029957806318160ddd146102b557806323b872dd146102df576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190611d90565b6106f1565b60405161020e9190611dd5565b60405180910390f35b348015610222575f80fd5b5061022b610782565b6040516102389190611e78565b60405180910390f35b34801561024c575f80fd5b5061026760048036038101906102629190611ecb565b610812565b6040516102749190611f35565b60405180910390f35b61029760048036038101906102929190611f78565b61088c565b005b6102b360048036038101906102ae9190611ecb565b6109cb565b005b3480156102c0575f80fd5b506102c9610b53565b6040516102d69190611fc5565b60405180910390f35b6102f960048036038101906102f49190611fde565b610b68565b005b348015610306575f80fd5b5061030f610e76565b60405161031c9190611fc5565b60405180910390f35b348015610330575f80fd5b5061034b60048036038101906103469190611ecb565b610e7c565b005b348015610358575f80fd5b50610361610e8e565b005b61037d60048036038101906103789190611fde565b610f41565b005b34801561038a575f80fd5b506103a560048036038101906103a09190611ecb565b610f60565b005b3480156103b2575f80fd5b506103bb610f72565b6040516103c89190611dd5565b60405180910390f35b3480156103dc575f80fd5b506103f760048036038101906103f2919061208f565b610f84565b005b348015610404575f80fd5b5061041f600480360381019061041a9190611ecb565b610fa2565b60405161042c9190611f35565b60405180910390f35b348015610440575f80fd5b50610449610fb3565b6040516104569190611e78565b60405180910390f35b34801561046a575f80fd5b50610485600480360381019061048091906120da565b61103f565b6040516104929190611fc5565b60405180910390f35b3480156104a6575f80fd5b506104af6110f4565b005b3480156104bc575f80fd5b506104c5611107565b6040516104d29190611f35565b60405180910390f35b3480156104e6575f80fd5b506104ef61112f565b6040516104fc9190611e78565b60405180910390f35b348015610510575f80fd5b5061052b6004803603810190610526919061212f565b6111bf565b005b348015610538575f80fd5b50610553600480360381019061054e919061216d565b6112c5565b005b61056f600480360381019061056a91906122c0565b6112e9565b005b34801561057c575f80fd5b5061058561135b565b6040516105929190611fc5565b60405180910390f35b3480156105a6575f80fd5b506105c160048036038101906105bc9190611ecb565b611361565b6040516105ce9190611e78565b60405180910390f35b3480156105e2575f80fd5b506105eb6113fc565b6040516105f89190611fc5565b60405180910390f35b34801561060c575f80fd5b5061062760048036038101906106229190611ecb565b611402565b005b348015610634575f80fd5b5061064f600480360381019061064a91906120da565b611414565b60405161065c9190611fc5565b60405180910390f35b348015610670575f80fd5b5061068b60048036038101906106869190612340565b611425565b6040516106989190611dd5565b60405180910390f35b3480156106ac575f80fd5b506106c760048036038101906106c291906120da565b6114b3565b005b3480156106d4575f80fd5b506106ef60048036038101906106ea919061237e565b611537565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610791906123e9565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd906123e9565b80156108085780601f106107df57610100808354040283529160200191610808565b820191905f5260205f20905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b5f61081c8261159b565b610852576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61089682610fa2565b90508073ffffffffffffffffffffffffffffffffffffffff166108b76115f5565b73ffffffffffffffffffffffffffffffffffffffff161461091a576108e3816108de6115f5565b611425565b610919576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a30576040517fc8a2f6cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5f9054906101000a900460ff16610a75576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610a816115fc565b610a8b9190612446565b1115610ac3576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610aff576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600954610b0d9190612479565b341015610b46576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b50338261160d565b50565b5f610b5c6117b6565b6001545f540303905090565b5f610b72826117be565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610be484611881565b91509150610bfa8187610bf56115f5565b6118a4565b610c4657610c0f86610c0a6115f5565b611425565b610c45576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb886868660016118e7565b8015610cc2575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610d8a85610d668888876118ed565b7c020000000000000000000000000000000000000000000000000000000017611914565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610e06575f6001850190505f60045f8381526020019081526020015f205403610e04575f548114610e03578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e6e868686600161193e565b505050505050565b600a5481565b610e84611944565b80600a8190555050565b610e96611944565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610ebb906124e7565b5f6040518083038185875af1925050503d805f8114610ef5576040519150601f19603f3d011682016040523d82523d5f602084013e610efa565b606091505b5050905080610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590612545565b60405180910390fd5b50565b610f5b83838360405180602001604052805f8152506112e9565b505050565b610f68611944565b8060098190555050565b600c5f9054906101000a900460ff1681565b610f8c611944565b8181600d9182610f9d92919061270a565b505050565b5f610fac826117be565b9050919050565b600d8054610fc0906123e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fec906123e9565b80156110375780601f1061100e57610100808354040283529160200191611037565b820191905f5260205f20905b81548152906001019060200180831161101a57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6110fc611944565b6111055f6119cb565b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461113e906123e9565b80601f016020809104026020016040519081016040528092919081815260200182805461116a906123e9565b80156111b55780601f1061118c576101008083540402835291602001916111b5565b820191905f5260205f20905b81548152906001019060200180831161119857829003601f168201915b5050505050905090565b8060075f6111cb6115f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112746115f5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b99190611dd5565b60405180910390a35050565b6112cd611944565b80600c5f6101000a81548160ff02191690831515021790555050565b6112f4848484610b68565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113555761131e84848484611a8e565b611354576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b606061136c8261159b565b6113a2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113ab611bd9565b90505f8151036113c95760405180602001604052805f8152506113f4565b806113d384611c69565b6040516020016113e4929190612811565b6040516020818303038152906040525b915050919050565b600b5481565b61140a611944565b80600b8190555050565b5f61141e82611cb8565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114bb611944565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016115229190611f35565b60405180910390fd5b611534816119cb565b50565b61153f611944565b600a548261154b6115fc565b6115559190612446565b111561158d576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611597818361160d565b5050565b5f816115a56117b6565b111580156115b357505f5482105b80156115ee57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6116056117b6565b5f5403905090565b5f805490505f820361164b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116575f8483856118e7565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506116c9836116ba5f865f6118ed565b6116c385611d0c565b17611914565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146117635780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061172a565b505f820361179d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506117b15f84838561193e565b505050565b5f6001905090565b5f80829050806117cc6117b6565b1161184a575f54811015611849575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611847575b5f810361183d5760045f836001900393508381526020019081526020015f20549050611816565b809250505061187c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611903868684611d1b565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61194c611d23565b73ffffffffffffffffffffffffffffffffffffffff1661196a611107565b73ffffffffffffffffffffffffffffffffffffffff16146119c95761198d611d23565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119c09190611f35565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ab36115f5565b8786866040518563ffffffff1660e01b8152600401611ad59493929190612886565b6020604051808303815f875af1925050508015611b1057506040513d601f19601f82011682018060405250810190611b0d91906128e4565b60015b611b86573d805f8114611b3e576040519150601f19603f3d011682016040523d82523d5f602084013e611b43565b606091505b505f815103611b7e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611be8906123e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611c14906123e9565b8015611c5f5780601f10611c3657610100808354040283529160200191611c5f565b820191905f5260205f20905b815481529060010190602001808311611c4257829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b600115611ca357600184039350600a81066030018453600a8104905080611c81575b50828103602084039350808452505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f6001821460e11b9050919050565b5f9392505050565b5f33905090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d6f81611d3b565b8114611d79575f80fd5b50565b5f81359050611d8a81611d66565b92915050565b5f60208284031215611da557611da4611d33565b5b5f611db284828501611d7c565b91505092915050565b5f8115159050919050565b611dcf81611dbb565b82525050565b5f602082019050611de85f830184611dc6565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e25578082015181840152602081019050611e0a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e4a82611dee565b611e548185611df8565b9350611e64818560208601611e08565b611e6d81611e30565b840191505092915050565b5f6020820190508181035f830152611e908184611e40565b905092915050565b5f819050919050565b611eaa81611e98565b8114611eb4575f80fd5b50565b5f81359050611ec581611ea1565b92915050565b5f60208284031215611ee057611edf611d33565b5b5f611eed84828501611eb7565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f1f82611ef6565b9050919050565b611f2f81611f15565b82525050565b5f602082019050611f485f830184611f26565b92915050565b611f5781611f15565b8114611f61575f80fd5b50565b5f81359050611f7281611f4e565b92915050565b5f8060408385031215611f8e57611f8d611d33565b5b5f611f9b85828601611f64565b9250506020611fac85828601611eb7565b9150509250929050565b611fbf81611e98565b82525050565b5f602082019050611fd85f830184611fb6565b92915050565b5f805f60608486031215611ff557611ff4611d33565b5b5f61200286828701611f64565b935050602061201386828701611f64565b925050604061202486828701611eb7565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261204f5761204e61202e565b5b8235905067ffffffffffffffff81111561206c5761206b612032565b5b60208301915083600182028301111561208857612087612036565b5b9250929050565b5f80602083850312156120a5576120a4611d33565b5b5f83013567ffffffffffffffff8111156120c2576120c1611d37565b5b6120ce8582860161203a565b92509250509250929050565b5f602082840312156120ef576120ee611d33565b5b5f6120fc84828501611f64565b91505092915050565b61210e81611dbb565b8114612118575f80fd5b50565b5f8135905061212981612105565b92915050565b5f806040838503121561214557612144611d33565b5b5f61215285828601611f64565b92505060206121638582860161211b565b9150509250929050565b5f6020828403121561218257612181611d33565b5b5f61218f8482850161211b565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6121d282611e30565b810181811067ffffffffffffffff821117156121f1576121f061219c565b5b80604052505050565b5f612203611d2a565b905061220f82826121c9565b919050565b5f67ffffffffffffffff82111561222e5761222d61219c565b5b61223782611e30565b9050602081019050919050565b828183375f83830152505050565b5f61226461225f84612214565b6121fa565b9050828152602081018484840111156122805761227f612198565b5b61228b848285612244565b509392505050565b5f82601f8301126122a7576122a661202e565b5b81356122b7848260208601612252565b91505092915050565b5f805f80608085870312156122d8576122d7611d33565b5b5f6122e587828801611f64565b94505060206122f687828801611f64565b935050604061230787828801611eb7565b925050606085013567ffffffffffffffff81111561232857612327611d37565b5b61233487828801612293565b91505092959194509250565b5f806040838503121561235657612355611d33565b5b5f61236385828601611f64565b925050602061237485828601611f64565b9150509250929050565b5f806040838503121561239457612393611d33565b5b5f6123a185828601611eb7565b92505060206123b285828601611f64565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061240057607f821691505b602082108103612413576124126123bc565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61245082611e98565b915061245b83611e98565b925082820190508082111561247357612472612419565b5b92915050565b5f61248382611e98565b915061248e83611e98565b925082820261249c81611e98565b915082820484148315176124b3576124b2612419565b5b5092915050565b5f81905092915050565b50565b5f6124d25f836124ba565b91506124dd826124c4565b5f82019050919050565b5f6124f1826124c7565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f61252f601083611df8565b915061253a826124fb565b602082019050919050565b5f6020820190508181035f83015261255c81612523565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261258e565b6125d3868361258e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61260e61260961260484611e98565b6125eb565b611e98565b9050919050565b5f819050919050565b612627836125f4565b61263b61263382612615565b84845461259a565b825550505050565b5f90565b61264f612643565b61265a81848461261e565b505050565b5b8181101561267d576126725f82612647565b600181019050612660565b5050565b601f8211156126c2576126938161256d565b61269c8461257f565b810160208510156126ab578190505b6126bf6126b78561257f565b83018261265f565b50505b505050565b5f82821c905092915050565b5f6126e25f19846008026126c7565b1980831691505092915050565b5f6126fa83836126d3565b9150826002028217905092915050565b6127148383612563565b67ffffffffffffffff81111561272d5761272c61219c565b5b61273782546123e9565b612742828285612681565b5f601f83116001811461276f575f841561275d578287013590505b61276785826126ef565b8655506127ce565b601f19841661277d8661256d565b5f5b828110156127a45784890135825560018201915060208501945060208101905061277f565b868310156127c157848901356127bd601f8916826126d3565b8355505b6001600288020188555050505b50505050505050565b5f81905092915050565b5f6127eb82611dee565b6127f581856127d7565b9350612805818560208601611e08565b80840191505092915050565b5f61281c82856127e1565b915061282882846127e1565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f61285882612834565b612862818561283e565b9350612872818560208601611e08565b61287b81611e30565b840191505092915050565b5f6080820190506128995f830187611f26565b6128a66020830186611f26565b6128b36040830185611fb6565b81810360608301526128c5818461284e565b905095945050505050565b5f815190506128de81611d66565b92915050565b5f602082840312156128f9576128f8611d33565b5b5f612906848285016128d0565b9150509291505056fea26469706673582212205442d07ac51b30bb8366edb12f5b97aed58cb30cf63fa251a026105ebb2576fa64736f6c63430008170033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000003db466cb3c706f48cd816c21aed359ad837b0c880000000000000000000000000000000000000000000000000000000000000006475647353030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064756473530300000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): GVG500
Arg [1] : _symbol (string): GVG500
Arg [2] : initialOwner (address): 0x3dB466cB3C706F48CD816C21aEd359aD837b0C88

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000003db466cb3c706f48cd816c21aed359ad837b0c88
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4756473530300000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4756473530300000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61652:2235:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22494:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29887:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29320:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62536:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19147:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33526:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61736:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62305:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63711:173;;;;;;;;;;;;;:::i;:::-;;36447:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62213:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61821:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63067:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24789:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61852:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20331:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3254:103;;;;;;;;;;;;;:::i;:::-;;2579:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23572:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30445:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63291:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37238:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61697:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23782:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61774:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63387:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62415:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30836:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3512:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63520:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22494:639;22579:4;22918:10;22903:25;;:11;:25;;;;:102;;;;22995:10;22980:25;;:11;:25;;;;22903:102;:179;;;;23072:10;23057:25;;:11;:25;;;;22903:179;22883:199;;22494:639;;;:::o;23396:100::-;23450:13;23483:5;23476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23396:100;:::o;29887:218::-;29963:7;29988:16;29996:7;29988;:16::i;:::-;29983:64;;30013:34;;;;;;;;;;;;;;29983:64;30067:15;:24;30083:7;30067:24;;;;;;;;;;;:30;;;;;;;;;;;;30060:37;;29887:218;;;:::o;29320:408::-;29409:13;29425:16;29433:7;29425;:16::i;:::-;29409:32;;29481:5;29458:28;;:19;:17;:19::i;:::-;:28;;;29454:175;;29506:44;29523:5;29530:19;:17;:19::i;:::-;29506:16;:44::i;:::-;29501:128;;29578:35;;;;;;;;;;;;;;29501:128;29454:175;29674:2;29641:15;:24;29657:7;29641:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29712:7;29708:2;29692:28;;29701:5;29692:28;;;;;;;;;;;;29398:330;29320:408;;:::o;62536:422::-;62618:10;62605:23;;:9;:23;;;62601:52;;62637:16;;;;;;;;;;;;;;62601:52;62669:4;;;;;;;;;;;62664:33;;62682:15;;;;;;;;;;;;;;62664:33;62739:10;;62729:7;62712:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;62708:68;;;62758:18;;;;;;;;;;;;;;62708:68;62801:19;;62791:7;:29;62787:59;;;62829:17;;;;;;;;;;;;;;62787:59;62881:7;62874:4;;:14;;;;:::i;:::-;62862:9;:26;62858:53;;;62897:14;;;;;;;;;;;;;;62858:53;62924:26;62930:10;62942:7;62924:5;:26::i;:::-;62536:422;:::o;19147:323::-;19208:7;19436:15;:13;:15::i;:::-;19421:12;;19405:13;;:28;:46;19398:53;;19147:323;:::o;33526:2825::-;33668:27;33698;33717:7;33698:18;:27::i;:::-;33668:57;;33783:4;33742:45;;33758:19;33742:45;;;33738:86;;33796:28;;;;;;;;;;;;;;33738:86;33838:27;33867:23;33894:35;33921:7;33894:26;:35::i;:::-;33837:92;;;;34029:68;34054:15;34071:4;34077:19;:17;:19::i;:::-;34029:24;:68::i;:::-;34024:180;;34117:43;34134:4;34140:19;:17;:19::i;:::-;34117:16;:43::i;:::-;34112:92;;34169:35;;;;;;;;;;;;;;34112:92;34024:180;34235:1;34221:16;;:2;:16;;;34217:52;;34246:23;;;;;;;;;;;;;;34217:52;34282:43;34304:4;34310:2;34314:7;34323:1;34282:21;:43::i;:::-;34418:15;34415:160;;;34558:1;34537:19;34530:30;34415:160;34955:18;:24;34974:4;34955:24;;;;;;;;;;;;;;;;34953:26;;;;;;;;;;;;35024:18;:22;35043:2;35024:22;;;;;;;;;;;;;;;;35022:24;;;;;;;;;;;35346:146;35383:2;35432:45;35447:4;35453:2;35457:19;35432:14;:45::i;:::-;15546:8;35404:73;35346:18;:146::i;:::-;35317:17;:26;35335:7;35317:26;;;;;;;;;;;:175;;;;35663:1;15546:8;35612:19;:47;:52;35608:627;;35685:19;35717:1;35707:7;:11;35685:33;;35874:1;35840:17;:30;35858:11;35840:30;;;;;;;;;;;;:35;35836:384;;35978:13;;35963:11;:28;35959:242;;36158:19;36125:17;:30;36143:11;36125:30;;;;;;;;;;;:52;;;;35959:242;35836:384;35666:569;35608:627;36282:7;36278:2;36263:27;;36272:4;36263:27;;;;;;;;;;;;36301:42;36322:4;36328:2;36332:7;36341:1;36301:20;:42::i;:::-;33657:2694;;;33526:2825;;;:::o;61736:31::-;;;;:::o;62305:100::-;2465:13;:11;:13::i;:::-;62387:10:::1;62374;:23;;;;62305:100:::0;:::o;63711:173::-;2465:13;:11;:13::i;:::-;63762:12:::1;63780:10;:15;;63803:21;63780:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63761:68;;;63848:7;63840:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63750:134;63711:173::o:0;36447:193::-;36593:39;36610:4;36616:2;36620:7;36593:39;;;;;;;;;;;;:16;:39::i;:::-;36447:193;;;:::o;62213:82::-;2465:13;:11;:13::i;:::-;62282:5:::1;62275:4;:12;;;;62213:82:::0;:::o;61821:24::-;;;;;;;;;;;;;:::o;63067:100::-;2465:13;:11;:13::i;:::-;63152:7:::1;;63142;:17;;;;;;;:::i;:::-;;63067:100:::0;;:::o;24789:152::-;24861:7;24904:27;24923:7;24904:18;:27::i;:::-;24881:52;;24789:152;;;:::o;61852:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20331:233::-;20403:7;20444:1;20427:19;;:5;:19;;;20423:60;;20455:28;;;;;;;;;;;;;;20423:60;14490:13;20501:18;:25;20520:5;20501:25;;;;;;;;;;;;;;;;:55;20494:62;;20331:233;;;:::o;3254:103::-;2465:13;:11;:13::i;:::-;3319:30:::1;3346:1;3319:18;:30::i;:::-;3254:103::o:0;2579:87::-;2625:7;2652:6;;;;;;;;;;;2645:13;;2579:87;:::o;23572:104::-;23628:13;23661:7;23654:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23572:104;:::o;30445:234::-;30592:8;30540:18;:39;30559:19;:17;:19::i;:::-;30540:39;;;;;;;;;;;;;;;:49;30580:8;30540:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30652:8;30616:55;;30631:19;:17;:19::i;:::-;30616:55;;;30662:8;30616:55;;;;;;:::i;:::-;;;;;;;;30445:234;;:::o;63291:86::-;2465:13;:11;:13::i;:::-;63362:7:::1;63355:4;;:14;;;;;;;;;;;;;;;;;;63291:86:::0;:::o;37238:407::-;37413:31;37426:4;37432:2;37436:7;37413:12;:31::i;:::-;37477:1;37459:2;:14;;;:19;37455:183;;37498:56;37529:4;37535:2;37539:7;37548:5;37498:30;:56::i;:::-;37493:145;;37582:40;;;;;;;;;;;;;;37493:145;37455:183;37238:407;;;;:::o;61697:32::-;;;;:::o;23782:318::-;23855:13;23886:16;23894:7;23886;:16::i;:::-;23881:59;;23911:29;;;;;;;;;;;;;;23881:59;23953:21;23977:10;:8;:10::i;:::-;23953:34;;24030:1;24011:7;24005:21;:26;:87;;;;;;;;;;;;;;;;;24058:7;24067:18;24077:7;24067:9;:18::i;:::-;24041:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24005:87;23998:94;;;23782:318;;;:::o;61774:39::-;;;;:::o;63387:125::-;2465:13;:11;:13::i;:::-;63492:12:::1;63470:19;:34;;;;63387:125:::0;:::o;62415:113::-;62473:7;62500:20;62514:5;62500:13;:20::i;:::-;62493:27;;62415:113;;;:::o;30836:164::-;30933:4;30957:18;:25;30976:5;30957:25;;;;;;;;;;;;;;;:35;30983:8;30957:35;;;;;;;;;;;;;;;;;;;;;;;;;30950:42;;30836:164;;;;:::o;3512:220::-;2465:13;:11;:13::i;:::-;3617:1:::1;3597:22;;:8;:22;;::::0;3593:93:::1;;3671:1;3643:31;;;;;;;;;;;:::i;:::-;;;;;;;;3593:93;3696:28;3715:8;3696:18;:28::i;:::-;3512:220:::0;:::o;63520:183::-;2465:13;:11;:13::i;:::-;63628:10:::1;;63618:7;63601:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;63597:68;;;63647:18;;;;;;;;;;;;;;63597:68;63676:19;63682:3;63687:7;63676:5;:19::i;:::-;63520:183:::0;;:::o;31258:282::-;31323:4;31379:7;31360:15;:13;:15::i;:::-;:26;;:66;;;;;31413:13;;31403:7;:23;31360:66;:153;;;;;31512:1;15266:8;31464:17;:26;31482:7;31464:26;;;;;;;;;;;;:44;:49;31360:153;31340:173;;31258:282;;;:::o;53566:105::-;53626:7;53653:10;53646:17;;53566:105;:::o;19568:296::-;19623:7;19830:15;:13;:15::i;:::-;19814:13;;:31;19807:38;;19568:296;:::o;40907:2966::-;40980:20;41003:13;;40980:36;;41043:1;41031:8;:13;41027:44;;41053:18;;;;;;;;;;;;;;41027:44;41084:61;41114:1;41118:2;41122:12;41136:8;41084:21;:61::i;:::-;41628:1;14628:2;41598:1;:26;;41597:32;41585:8;:45;41559:18;:22;41578:2;41559:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41907:139;41944:2;41998:33;42021:1;42025:2;42029:1;41998:14;:33::i;:::-;41965:30;41986:8;41965:20;:30::i;:::-;:66;41907:18;:139::i;:::-;41873:17;:31;41891:12;41873:31;;;;;;;;;;;:173;;;;42063:16;42094:11;42123:8;42108:12;:23;42094:37;;42644:16;42640:2;42636:25;42624:37;;43016:12;42976:8;42935:1;42873:25;42814:1;42753;42726:335;43387:1;43373:12;43369:20;43327:346;43428:3;43419:7;43416:16;43327:346;;43646:7;43636:8;43633:1;43606:25;43603:1;43600;43595:59;43481:1;43472:7;43468:15;43457:26;;43327:346;;;43331:77;43718:1;43706:8;:13;43702:45;;43728:19;;;;;;;;;;;;;;43702:45;43780:3;43764:13;:19;;;;41333:2462;;43805:60;43834:1;43838:2;43842:12;43856:8;43805:20;:60::i;:::-;40969:2904;40907:2966;;:::o;62966:93::-;63023:7;63050:1;63043:8;;62966:93;:::o;25944:1275::-;26011:7;26031:12;26046:7;26031:22;;26114:4;26095:15;:13;:15::i;:::-;:23;26091:1061;;26148:13;;26141:4;:20;26137:1015;;;26186:14;26203:17;:23;26221:4;26203:23;;;;;;;;;;;;26186:40;;26320:1;15266:8;26292:6;:24;:29;26288:845;;26957:113;26974:1;26964:6;:11;26957:113;;27017:17;:25;27035:6;;;;;;;27017:25;;;;;;;;;;;;27008:34;;26957:113;;;27103:6;27096:13;;;;;;26288:845;26163:989;26137:1015;26091:1061;27180:31;;;;;;;;;;;;;;25944:1275;;;;:::o;32421:485::-;32523:27;32552:23;32593:38;32634:15;:24;32650:7;32634:24;;;;;;;;;;;32593:65;;32811:18;32788:41;;32868:19;32862:26;32843:45;;32773:126;32421:485;;;:::o;31649:659::-;31798:11;31963:16;31956:5;31952:28;31943:37;;32123:16;32112:9;32108:32;32095:45;;32273:15;32262:9;32259:30;32251:5;32240:9;32237:20;32234:56;32224:66;;31649:659;;;;;:::o;38307:159::-;;;;;:::o;52875:311::-;53010:7;53030:16;15670:3;53056:19;:41;;53030:68;;15670:3;53124:31;53135:4;53141:2;53145:9;53124:10;:31::i;:::-;53116:40;;:62;;53109:69;;;52875:311;;;;;:::o;27767:450::-;27847:14;28015:16;28008:5;28004:28;27995:37;;28192:5;28178:11;28153:23;28149:41;28146:52;28139:5;28136:63;28126:73;;27767:450;;;;:::o;39131:158::-;;;;;:::o;2744:166::-;2815:12;:10;:12::i;:::-;2804:23;;:7;:5;:7::i;:::-;:23;;;2800:103;;2878:12;:10;:12::i;:::-;2851:40;;;;;;;;;;;:::i;:::-;;;;;;;;2800:103;2744:166::o;3892:191::-;3966:16;3985:6;;;;;;;;;;;3966:25;;4011:8;4002:6;;:17;;;;;;;;;;;;;;;;;;4066:8;4035:40;;4056:8;4035:40;;;;;;;;;;;;3955:128;3892:191;:::o;39729:716::-;39892:4;39938:2;39913:45;;;39959:19;:17;:19::i;:::-;39980:4;39986:7;39995:5;39913:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40213:1;40196:6;:13;:18;40192:235;;40242:40;;;;;;;;;;;;;;40192:235;40385:6;40379:13;40370:6;40366:2;40362:15;40355:38;39909:529;40082:54;;;40072:64;;;:6;:64;;;;40065:71;;;39729:716;;;;;;:::o;63175:108::-;63235:13;63268:7;63261:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63175:108;:::o;53773:1745::-;53838:17;54272:4;54265;54259:11;54255:22;54364:1;54358:4;54351:15;54439:4;54436:1;54432:12;54425:19;;54521:1;54516:3;54509:14;54625:3;54864:5;54846:428;54872:1;54846:428;;;54912:1;54907:3;54903:11;54896:18;;55083:2;55077:4;55073:13;55069:2;55065:22;55060:3;55052:36;55177:2;55171:4;55167:13;55159:21;;55244:4;54846:428;55234:25;54846:428;54850:21;55313:3;55308;55304:13;55428:4;55423:3;55419:14;55412:21;;55493:6;55488:3;55481:19;53877:1634;;;53773:1745;;;:::o;20646:178::-;20707:7;14490:13;14628:2;20735:18;:25;20754:5;20735:25;;;;;;;;;;;;;;;;:50;;20734:82;20727:89;;20646:178;;;:::o;28319:324::-;28389:14;28622:1;28612:8;28609:15;28583:24;28579:46;28569:56;;28319:324;;;:::o;52576:147::-;52713:6;52576:147;;;;;:::o;695:98::-;748:7;775:10;768:17;;695:98;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:323::-;8470:6;8519:2;8507:9;8498:7;8494:23;8490:32;8487:119;;;8525:79;;:::i;:::-;8487:119;8645:1;8670:50;8712:7;8703:6;8692:9;8688:22;8670:50;:::i;:::-;8660:60;;8616:114;8414:323;;;;:::o;8743:117::-;8852:1;8849;8842:12;8866:180;8914:77;8911:1;8904:88;9011:4;9008:1;9001:15;9035:4;9032:1;9025:15;9052:281;9135:27;9157:4;9135:27;:::i;:::-;9127:6;9123:40;9265:6;9253:10;9250:22;9229:18;9217:10;9214:34;9211:62;9208:88;;;9276:18;;:::i;:::-;9208:88;9316:10;9312:2;9305:22;9095:238;9052:281;;:::o;9339:129::-;9373:6;9400:20;;:::i;:::-;9390:30;;9429:33;9457:4;9449:6;9429:33;:::i;:::-;9339:129;;;:::o;9474:307::-;9535:4;9625:18;9617:6;9614:30;9611:56;;;9647:18;;:::i;:::-;9611:56;9685:29;9707:6;9685:29;:::i;:::-;9677:37;;9769:4;9763;9759:15;9751:23;;9474:307;;;:::o;9787:146::-;9884:6;9879:3;9874;9861:30;9925:1;9916:6;9911:3;9907:16;9900:27;9787:146;;;:::o;9939:423::-;10016:5;10041:65;10057:48;10098:6;10057:48;:::i;:::-;10041:65;:::i;:::-;10032:74;;10129:6;10122:5;10115:21;10167:4;10160:5;10156:16;10205:3;10196:6;10191:3;10187:16;10184:25;10181:112;;;10212:79;;:::i;:::-;10181:112;10302:54;10349:6;10344:3;10339;10302:54;:::i;:::-;10022:340;9939:423;;;;;:::o;10381:338::-;10436:5;10485:3;10478:4;10470:6;10466:17;10462:27;10452:122;;10493:79;;:::i;:::-;10452:122;10610:6;10597:20;10635:78;10709:3;10701:6;10694:4;10686:6;10682:17;10635:78;:::i;:::-;10626:87;;10442:277;10381:338;;;;:::o;10725:943::-;10820:6;10828;10836;10844;10893:3;10881:9;10872:7;10868:23;10864:33;10861:120;;;10900:79;;:::i;:::-;10861:120;11020:1;11045:53;11090:7;11081:6;11070:9;11066:22;11045:53;:::i;:::-;11035:63;;10991:117;11147:2;11173:53;11218:7;11209:6;11198:9;11194:22;11173:53;:::i;:::-;11163:63;;11118:118;11275:2;11301:53;11346:7;11337:6;11326:9;11322:22;11301:53;:::i;:::-;11291:63;;11246:118;11431:2;11420:9;11416:18;11403:32;11462:18;11454:6;11451:30;11448:117;;;11484:79;;:::i;:::-;11448:117;11589:62;11643:7;11634:6;11623:9;11619:22;11589:62;:::i;:::-;11579:72;;11374:287;10725:943;;;;;;;:::o;11674:474::-;11742:6;11750;11799:2;11787:9;11778:7;11774:23;11770:32;11767:119;;;11805:79;;:::i;:::-;11767:119;11925:1;11950:53;11995:7;11986:6;11975:9;11971:22;11950:53;:::i;:::-;11940:63;;11896:117;12052:2;12078:53;12123:7;12114:6;12103:9;12099:22;12078:53;:::i;:::-;12068:63;;12023:118;11674:474;;;;;:::o;12154:::-;12222:6;12230;12279:2;12267:9;12258:7;12254:23;12250:32;12247:119;;;12285:79;;:::i;:::-;12247:119;12405:1;12430:53;12475:7;12466:6;12455:9;12451:22;12430:53;:::i;:::-;12420:63;;12376:117;12532:2;12558:53;12603:7;12594:6;12583:9;12579:22;12558:53;:::i;:::-;12548:63;;12503:118;12154:474;;;;;:::o;12634:180::-;12682:77;12679:1;12672:88;12779:4;12776:1;12769:15;12803:4;12800:1;12793:15;12820:320;12864:6;12901:1;12895:4;12891:12;12881:22;;12948:1;12942:4;12938:12;12969:18;12959:81;;13025:4;13017:6;13013:17;13003:27;;12959:81;13087:2;13079:6;13076:14;13056:18;13053:38;13050:84;;13106:18;;:::i;:::-;13050:84;12871:269;12820:320;;;:::o;13146:180::-;13194:77;13191:1;13184:88;13291:4;13288:1;13281:15;13315:4;13312:1;13305:15;13332:191;13372:3;13391:20;13409:1;13391:20;:::i;:::-;13386:25;;13425:20;13443:1;13425:20;:::i;:::-;13420:25;;13468:1;13465;13461:9;13454:16;;13489:3;13486:1;13483:10;13480:36;;;13496:18;;:::i;:::-;13480:36;13332:191;;;;:::o;13529:410::-;13569:7;13592:20;13610:1;13592:20;:::i;:::-;13587:25;;13626:20;13644:1;13626:20;:::i;:::-;13621:25;;13681:1;13678;13674:9;13703:30;13721:11;13703:30;:::i;:::-;13692:41;;13882:1;13873:7;13869:15;13866:1;13863:22;13843:1;13836:9;13816:83;13793:139;;13912:18;;:::i;:::-;13793:139;13577:362;13529:410;;;;:::o;13945:147::-;14046:11;14083:3;14068:18;;13945:147;;;;:::o;14098:114::-;;:::o;14218:398::-;14377:3;14398:83;14479:1;14474:3;14398:83;:::i;:::-;14391:90;;14490:93;14579:3;14490:93;:::i;:::-;14608:1;14603:3;14599:11;14592:18;;14218:398;;;:::o;14622:379::-;14806:3;14828:147;14971:3;14828:147;:::i;:::-;14821:154;;14992:3;14985:10;;14622:379;;;:::o;15007:166::-;15147:18;15143:1;15135:6;15131:14;15124:42;15007:166;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:97::-;16035:6;16063:3;16053:13;;15976:97;;;;:::o;16079:141::-;16128:4;16151:3;16143:11;;16174:3;16171:1;16164:14;16208:4;16205:1;16195:18;16187:26;;16079:141;;;:::o;16226:93::-;16263:6;16310:2;16305;16298:5;16294:14;16290:23;16280:33;;16226:93;;;:::o;16325:107::-;16369:8;16419:5;16413:4;16409:16;16388:37;;16325:107;;;;:::o;16438:393::-;16507:6;16557:1;16545:10;16541:18;16580:97;16610:66;16599:9;16580:97;:::i;:::-;16698:39;16728:8;16717:9;16698:39;:::i;:::-;16686:51;;16770:4;16766:9;16759:5;16755:21;16746:30;;16819:4;16809:8;16805:19;16798:5;16795:30;16785:40;;16514:317;;16438:393;;;;;:::o;16837:60::-;16865:3;16886:5;16879:12;;16837:60;;;:::o;16903:142::-;16953:9;16986:53;17004:34;17013:24;17031:5;17013:24;:::i;:::-;17004:34;:::i;:::-;16986:53;:::i;:::-;16973:66;;16903:142;;;:::o;17051:75::-;17094:3;17115:5;17108:12;;17051:75;;;:::o;17132:269::-;17242:39;17273:7;17242:39;:::i;:::-;17303:91;17352:41;17376:16;17352:41;:::i;:::-;17344:6;17337:4;17331:11;17303:91;:::i;:::-;17297:4;17290:105;17208:193;17132:269;;;:::o;17407:73::-;17452:3;17407:73;:::o;17486:189::-;17563:32;;:::i;:::-;17604:65;17662:6;17654;17648:4;17604:65;:::i;:::-;17539:136;17486:189;;:::o;17681:186::-;17741:120;17758:3;17751:5;17748:14;17741:120;;;17812:39;17849:1;17842:5;17812:39;:::i;:::-;17785:1;17778:5;17774:13;17765:22;;17741:120;;;17681:186;;:::o;17873:543::-;17974:2;17969:3;17966:11;17963:446;;;18008:38;18040:5;18008:38;:::i;:::-;18092:29;18110:10;18092:29;:::i;:::-;18082:8;18078:44;18275:2;18263:10;18260:18;18257:49;;;18296:8;18281:23;;18257:49;18319:80;18375:22;18393:3;18375:22;:::i;:::-;18365:8;18361:37;18348:11;18319:80;:::i;:::-;17978:431;;17963:446;17873:543;;;:::o;18422:117::-;18476:8;18526:5;18520:4;18516:16;18495:37;;18422:117;;;;:::o;18545:169::-;18589:6;18622:51;18670:1;18666:6;18658:5;18655:1;18651:13;18622:51;:::i;:::-;18618:56;18703:4;18697;18693:15;18683:25;;18596:118;18545:169;;;;:::o;18719:295::-;18795:4;18941:29;18966:3;18960:4;18941:29;:::i;:::-;18933:37;;19003:3;19000:1;18996:11;18990:4;18987:21;18979:29;;18719:295;;;;:::o;19019:1403::-;19143:44;19183:3;19178;19143:44;:::i;:::-;19252:18;19244:6;19241:30;19238:56;;;19274:18;;:::i;:::-;19238:56;19318:38;19350:4;19344:11;19318:38;:::i;:::-;19403:67;19463:6;19455;19449:4;19403:67;:::i;:::-;19497:1;19526:2;19518:6;19515:14;19543:1;19538:632;;;;20214:1;20231:6;20228:84;;;20287:9;20282:3;20278:19;20265:33;20256:42;;20228:84;20338:67;20398:6;20391:5;20338:67;:::i;:::-;20332:4;20325:81;20187:229;19508:908;;19538:632;19590:4;19586:9;19578:6;19574:22;19624:37;19656:4;19624:37;:::i;:::-;19683:1;19697:215;19711:7;19708:1;19705:14;19697:215;;;19797:9;19792:3;19788:19;19775:33;19767:6;19760:49;19848:1;19840:6;19836:14;19826:24;;19895:2;19884:9;19880:18;19867:31;;19734:4;19731:1;19727:12;19722:17;;19697:215;;;19940:6;19931:7;19928:19;19925:186;;;20005:9;20000:3;19996:19;19983:33;20048:48;20090:4;20082:6;20078:17;20067:9;20048:48;:::i;:::-;20040:6;20033:64;19948:163;19925:186;20157:1;20153;20145:6;20141:14;20137:22;20131:4;20124:36;19545:625;;;19508:908;;19118:1304;;;19019:1403;;;:::o;20428:148::-;20530:11;20567:3;20552:18;;20428:148;;;;:::o;20582:390::-;20688:3;20716:39;20749:5;20716:39;:::i;:::-;20771:89;20853:6;20848:3;20771:89;:::i;:::-;20764:96;;20869:65;20927:6;20922:3;20915:4;20908:5;20904:16;20869:65;:::i;:::-;20959:6;20954:3;20950:16;20943:23;;20692:280;20582:390;;;;:::o;20978:435::-;21158:3;21180:95;21271:3;21262:6;21180:95;:::i;:::-;21173:102;;21292:95;21383:3;21374:6;21292:95;:::i;:::-;21285:102;;21404:3;21397:10;;20978:435;;;;;:::o;21419:98::-;21470:6;21504:5;21498:12;21488:22;;21419:98;;;:::o;21523:168::-;21606:11;21640:6;21635:3;21628:19;21680:4;21675:3;21671:14;21656:29;;21523:168;;;;:::o;21697:373::-;21783:3;21811:38;21843:5;21811:38;:::i;:::-;21865:70;21928:6;21923:3;21865:70;:::i;:::-;21858:77;;21944:65;22002:6;21997:3;21990:4;21983:5;21979:16;21944:65;:::i;:::-;22034:29;22056:6;22034:29;:::i;:::-;22029:3;22025:39;22018:46;;21787:283;21697:373;;;;:::o;22076:640::-;22271:4;22309:3;22298:9;22294:19;22286:27;;22323:71;22391:1;22380:9;22376:17;22367:6;22323:71;:::i;:::-;22404:72;22472:2;22461:9;22457:18;22448:6;22404:72;:::i;:::-;22486;22554:2;22543:9;22539:18;22530:6;22486:72;:::i;:::-;22605:9;22599:4;22595:20;22590:2;22579:9;22575:18;22568:48;22633:76;22704:4;22695:6;22633:76;:::i;:::-;22625:84;;22076:640;;;;;;;:::o;22722:141::-;22778:5;22809:6;22803:13;22794:22;;22825:32;22851:5;22825:32;:::i;:::-;22722:141;;;;:::o;22869:349::-;22938:6;22987:2;22975:9;22966:7;22962:23;22958:32;22955:119;;;22993:79;;:::i;:::-;22955:119;23113:1;23138:63;23193:7;23184:6;23173:9;23169:22;23138:63;:::i;:::-;23128:73;;23084:127;22869:349;;;;:::o

Swarm Source

ipfs://5442d07ac51b30bb8366edb12f5b97aed58cb30cf63fa251a026105ebb2576fa
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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