ETH Price: $2,935.59 (+1.15%)
Gas: 5 Gwei

Token

goblintown (GOBLIN)
 

Overview

Max Total Supply

9,999 GOBLIN

Holders

4,815

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 GOBLIN
0xc847606081c3eaa28bc2f9b537f9e603f92fd29b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AAAAAAAUUUUUGGGHHHHH gobblins goblinns GOBLINNNNNNNNns wekm ta goblintown yoo sniksnakr DEJEN RATS oooooh rats are yummmz dis a NEFTEEE O GOBBLINGS on da BLOKCHIN wat?

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
goblintownNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-19
*/

//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@*  %@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@  @@@@    *@@@@@@@@@@@@@@  @@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@   .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@# %@@@@@@@@@   @@ /@@@@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@@ /@  /@@  @@@@@ @@@@@   @@@@@@@@ @@@@@@@@@@@@@@@@@@@@./@*         .@@@@@@@@@@@@@@
//@@@@@@@@@@* @@@@@@@@@@@@  @@ @@@@@@@@@@@@ (@%   &@@@@@@  @@@,@@@@@@@ #@@@@%   @@@@@@ #@@@@         @@  @@@@@@@@@@@@@@@@. @/ @@@@@@@@@@@@  @@@@@@@@@@@@
//@@@@@@@@@@ /@@@@@@@@@@@@@      @  @@@    # @@@@@@@@@. @@ (@@@ @@@@@  @@@@@@@  @@@@@@  @@ &@@@@@@@@@  @ @@@@@@@  @@@@@@@/ @  @@@@@@@@@@@@@  @@@@@@@@@@@
//@@@@@@@@@@  @@@@@@@@@@@@    @@@@@@@@@@@@@   @@@@@@@@@@ @/ @@@& @@@/ @@@@@@@@  @@@@@@@   .@@@@@@@@@@@@ & @@@@@@  (@@@@@@  @  &@@@@@@@@@@@@@( @@@@@@@@@@
//@@@@@@@@@@@  .@@@@@.  ,@@@   @@@@@@@@@@@@   @@@@@@@@@  @@ .@@@  @@@ @@@@@@@@  @@@@@@@@ # @@@@@@@@@@@@@   @@@@@   @@@@@  @@@  @@@@@@@@@@@@@@  @@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@%  @@@@@@@@@@@@@  %    ,@@  @@@  @@@@ @@@@ &@@@@@  (@@@@@@@@/   @@@@@@@@@@@* @  @@@* @ @@@@. @@@@# @@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@  @ ,@@@@@@@@@@@@ *@@@@@ @@@@@@@@@@@@@@@@@@@@@@  @ %@@@@@@@  @@@@, @@ @@  @@  @@@@@@ @@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@ %@@@@@@@@@@@@@@ *@  @@@@@@@  &@@( @@@@@@@@@@@@ %@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@   @@@@@@@@@@@@@@@@# @  @@@@@@@ @@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@@@      .@@@@@@  @@@@       @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@   @@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@*   %@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
// File: Context.sol



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: Payment.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }


    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }


    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }


    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}
// File: IERC721Receiver.sol



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: ERC165.sol



pragma solidity ^0.8.0;


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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
// File: IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;









contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

pragma solidity ^0.8.2;

contract goblintownNFT is ERC721A, Ownable, ReentrancyGuard {  
    using Strings for uint256;
    string public _partslink;
    bool public byebye = false;
    uint256 public goblins = 9999;
    uint256 public goblinbyebye = 1; 
    mapping(address => uint256) public howmanygobblins;
   
	constructor() ERC721A("goblintown", "GOBLIN") {}

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

 	function makingobblin() external nonReentrant {
  	    uint256 totalgobnlinsss = totalSupply();
        require(byebye);
        require(totalgobnlinsss + goblinbyebye <= goblins);
        require(msg.sender == tx.origin);
    	require(howmanygobblins[msg.sender] < goblinbyebye);
        _safeMint(msg.sender, goblinbyebye);
        howmanygobblins[msg.sender] += goblinbyebye;
    }

 	function makegoblinnnfly(address lords, uint256 _goblins) public onlyOwner {
  	    uint256 totalgobnlinsss = totalSupply();
	    require(totalgobnlinsss + _goblins <= goblins);
        _safeMint(lords, _goblins);
    }

    function makegoblngobyebye(bool _bye) external onlyOwner {
        byebye = _bye;
    }

    function spredgobblins(uint256 _byebye) external onlyOwner {
        goblinbyebye = _byebye;
    }

    function makegobblinhaveparts(string memory parts) external onlyOwner {
        _partslink = parts;
    }

    function sumthinboutfunds() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_partslink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"byebye","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goblinbyebye","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goblins","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howmanygobblins","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"parts","type":"string"}],"name":"makegobblinhaveparts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lords","type":"address"},{"internalType":"uint256","name":"_goblins","type":"uint256"}],"name":"makegoblinnnfly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bye","type":"bool"}],"name":"makegoblngobyebye","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"makingobblin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_byebye","type":"uint256"}],"name":"spredgobblins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sumthinboutfunds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff1916905561270f600b556001600c553480156200002657600080fd5b50604080518082018252600a81526933b7b13634b73a37bbb760b11b60208083019182528351808501909452600684526523a7a12624a760d11b90840152815191929162000077916001916200010b565b5080516200008d9060029060208401906200010b565b505050620000aa620000a4620000b560201b60201c565b620000b9565b6001600855620001ed565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b602082108103620001e757634e487b7160e01b600052602260045260246000fd5b50919050565b611eae80620001fd6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d519f39b11610064578063d519f39b146104fa578063e985e9c51461051a578063ed64da9f14610563578063f2fde38b1461057857600080fd5b8063a22cb46514610484578063b88d4fde146104a4578063c87b56dd146104c4578063ced33bc4146104e457600080fd5b80638d80854e116100d15780638d80854e146104175780638da5cb5b1461043757806395d89b4114610455578063a01ffdff1461046a57600080fd5b8063715018a6146103b557806375d2a90e146103ca57806383ae807b146103ea57600080fd5b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103355780636352211e146103555780636e63b1041461037557806370a082311461039557600080fd5b80632f745c59146102d85780633232deeb146102f857806333958a181461030d57806342842e0e1461031557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a257806325f08cf2146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611964565b610598565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610605565b6040516101fe91906119d9565b34801561023557600080fd5b506102496102443660046119ec565b610697565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a21565b610727565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611a4b565b61083e565b3480156102ce57600080fd5b50610294600c5481565b3480156102e457600080fd5b506102946102f3366004611a21565b610849565b34801561030457600080fd5b5061021c6109a4565b610281610a32565b34801561032157600080fd5b50610281610330366004611a4b565b610ab4565b34801561034157600080fd5b506102946103503660046119ec565b610acf565b34801561036157600080fd5b506102496103703660046119ec565b610b31565b34801561038157600080fd5b50610281610390366004611b13565b610b43565b3480156103a157600080fd5b506102946103b0366004611b5c565b610b84565b3480156103c157600080fd5b50610281610c15565b3480156103d657600080fd5b506102816103e53660046119ec565b610c4b565b3480156103f657600080fd5b50610294610405366004611b5c565b600d6020526000908152604090205481565b34801561042357600080fd5b50610281610432366004611b87565b610c7a565b34801561044357600080fd5b506007546001600160a01b0316610249565b34801561046157600080fd5b5061021c610cb7565b34801561047657600080fd5b50600a546101f29060ff1681565b34801561049057600080fd5b5061028161049f366004611ba2565b610cc6565b3480156104b057600080fd5b506102816104bf366004611bd5565b610d8a565b3480156104d057600080fd5b5061021c6104df3660046119ec565b610dc3565b3480156104f057600080fd5b50610294600b5481565b34801561050657600080fd5b50610281610515366004611a21565b610e90565b34801561052657600080fd5b506101f2610535366004611c51565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056f57600080fd5b50610281610edf565b34801561058457600080fd5b50610281610593366004611b5c565b610fc7565b60006001600160e01b031982166380ac58cd60e01b14806105c957506001600160e01b03198216635b5e139f60e01b145b806105e457506001600160e01b0319821663780e9d6360e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061490611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611c7b565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a4826000541190565b61070b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073282610b31565b9050806001600160a01b0316836001600160a01b0316036107a05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610702565b336001600160a01b03821614806107bc57506107bc8133610535565b61082e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610702565b61083983838361105f565b505050565b6108398383836110bb565b600061085483610b84565b82106108ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610702565b600080549080805b83811015610944576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090857805192505b876001600160a01b0316836001600160a01b03160361093b57868403610934575093506105ff92505050565b6001909301925b506001016108b5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610702565b600980546109b190611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90611c7b565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b505050505081565b6007546001600160a01b03163314610a5c5760405162461bcd60e51b815260040161070290611cb5565b604051600090339047908381818185875af1925050503d8060008114610a9e576040519150601f19603f3d011682016040523d82523d6000602084013e610aa3565b606091505b5050905080610ab157600080fd5b50565b61083983838360405180602001604052806000815250610d8a565b600080548210610b2d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610702565b5090565b6000610b3c826113a0565b5192915050565b6007546001600160a01b03163314610b6d5760405162461bcd60e51b815260040161070290611cb5565b8051610b809060099060208401906118be565b5050565b60006001600160a01b038216610bf05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610702565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c3f5760405162461bcd60e51b815260040161070290611cb5565b610c496000611477565b565b6007546001600160a01b03163314610c755760405162461bcd60e51b815260040161070290611cb5565b600c55565b6007546001600160a01b03163314610ca45760405162461bcd60e51b815260040161070290611cb5565b600a805460ff1916911515919091179055565b60606002805461061490611c7b565b336001600160a01b03831603610d1e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610702565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d958484846110bb565b610da1848484846114c9565b610dbd5760405162461bcd60e51b815260040161070290611cea565b50505050565b6060610dd0826000541190565b610e345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610702565b6000610e3e6115cb565b90508051600003610e5e5760405180602001604052806000815250610e89565b80610e68846115da565b604051602001610e79929190611d3d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610eba5760405162461bcd60e51b815260040161070290611cb5565b600054600b54610eca8383611d82565b1115610ed557600080fd5b61083983836116db565b600260085403610f315760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b6002600855600054600a5460ff16610f4857600080fd5b600b54600c54610f589083611d82565b1115610f6357600080fd5b333214610f6f57600080fd5b600c54336000908152600d602052604090205410610f8c57600080fd5b610f9833600c546116db565b600c54336000908152600d602052604081208054909190610fba908490611d82565b9091555050600160085550565b6007546001600160a01b03163314610ff15760405162461bcd60e51b815260040161070290611cb5565b6001600160a01b0381166110565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610702565b610ab181611477565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110c6826113a0565b80519091506000906001600160a01b0316336001600160a01b031614806110fd5750336110f284610697565b6001600160a01b0316145b8061110f5750815161110f9033610535565b9050806111795760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610702565b846001600160a01b031682600001516001600160a01b0316146111ed5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610702565b6001600160a01b0384166112515760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610702565b611261600084846000015161105f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661135657611309816000541190565b15611356578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526113bf826000541190565b61141e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610702565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561146d579392505050565b5060001901611420565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115bf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061150d903390899088908890600401611d9a565b6020604051808303816000875af1925050508015611548575060408051601f3d908101601f1916820190925261154591810190611dd7565b60015b6115a5573d808015611576576040519150601f19603f3d011682016040523d82523d6000602084013e61157b565b606091505b50805160000361159d5760405162461bcd60e51b815260040161070290611cea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115c3565b5060015b949350505050565b60606009805461061490611c7b565b6060816000036116015750506040805180820190915260018152600360fc1b602082015290565b8160005b811561162b578061161581611df4565b91506116249050600a83611e23565b9150611605565b60008167ffffffffffffffff81111561164657611646611a87565b6040519080825280601f01601f191660200182016040528015611670576020820181803683370190505b5090505b84156115c357611685600183611e37565b9150611692600a86611e4e565b61169d906030611d82565b60f81b8183815181106116b2576116b2611e62565b60200101906001600160f81b031916908160001a9053506116d4600a86611e23565b9450611674565b610b8082826040518060200160405280600081525061083983838360016000546001600160a01b03851661175b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610702565b836000036117bc5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610702565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118b55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156118a95761188d60008884886114c9565b6118a95760405162461bcd60e51b815260040161070290611cea565b6001918201910161183a565b50600055611399565b8280546118ca90611c7b565b90600052602060002090601f0160209004810192826118ec5760008555611932565b82601f1061190557805160ff1916838001178555611932565b82800160010185558215611932579182015b82811115611932578251825591602001919060010190611917565b50610b2d9291505b80821115610b2d576000815560010161193a565b6001600160e01b031981168114610ab157600080fd5b60006020828403121561197657600080fd5b8135610e898161194e565b60005b8381101561199c578181015183820152602001611984565b83811115610dbd5750506000910152565b600081518084526119c5816020860160208601611981565b601f01601f19169290920160200192915050565b602081526000610e8960208301846119ad565b6000602082840312156119fe57600080fd5b5035919050565b80356001600160a01b0381168114611a1c57600080fd5b919050565b60008060408385031215611a3457600080fd5b611a3d83611a05565b946020939093013593505050565b600080600060608486031215611a6057600080fd5b611a6984611a05565b9250611a7760208501611a05565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ab857611ab8611a87565b604051601f8501601f19908116603f01168101908282118183101715611ae057611ae0611a87565b81604052809350858152868686011115611af957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b2557600080fd5b813567ffffffffffffffff811115611b3c57600080fd5b8201601f81018413611b4d57600080fd5b6115c384823560208401611a9d565b600060208284031215611b6e57600080fd5b610e8982611a05565b80358015158114611a1c57600080fd5b600060208284031215611b9957600080fd5b610e8982611b77565b60008060408385031215611bb557600080fd5b611bbe83611a05565b9150611bcc60208401611b77565b90509250929050565b60008060008060808587031215611beb57600080fd5b611bf485611a05565b9350611c0260208601611a05565b925060408501359150606085013567ffffffffffffffff811115611c2557600080fd5b8501601f81018713611c3657600080fd5b611c4587823560208401611a9d565b91505092959194509250565b60008060408385031215611c6457600080fd5b611c6d83611a05565b9150611bcc60208401611a05565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611d4f818460208801611981565b835190830190611d63818360208801611981565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d9557611d95611d6c565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dcd908301846119ad565b9695505050505050565b600060208284031215611de957600080fd5b8151610e898161194e565b600060018201611e0657611e06611d6c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e3257611e32611e0d565b500490565b600082821015611e4957611e49611d6c565b500390565b600082611e5d57611e5d611e0d565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122088534b870b74d079496500c10c65c4c8b09d28e149d4dfc41803e09188afc86f64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d519f39b11610064578063d519f39b146104fa578063e985e9c51461051a578063ed64da9f14610563578063f2fde38b1461057857600080fd5b8063a22cb46514610484578063b88d4fde146104a4578063c87b56dd146104c4578063ced33bc4146104e457600080fd5b80638d80854e116100d15780638d80854e146104175780638da5cb5b1461043757806395d89b4114610455578063a01ffdff1461046a57600080fd5b8063715018a6146103b557806375d2a90e146103ca57806383ae807b146103ea57600080fd5b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103355780636352211e146103555780636e63b1041461037557806370a082311461039557600080fd5b80632f745c59146102d85780633232deeb146102f857806333958a181461030d57806342842e0e1461031557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a257806325f08cf2146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611964565b610598565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610605565b6040516101fe91906119d9565b34801561023557600080fd5b506102496102443660046119ec565b610697565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a21565b610727565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611a4b565b61083e565b3480156102ce57600080fd5b50610294600c5481565b3480156102e457600080fd5b506102946102f3366004611a21565b610849565b34801561030457600080fd5b5061021c6109a4565b610281610a32565b34801561032157600080fd5b50610281610330366004611a4b565b610ab4565b34801561034157600080fd5b506102946103503660046119ec565b610acf565b34801561036157600080fd5b506102496103703660046119ec565b610b31565b34801561038157600080fd5b50610281610390366004611b13565b610b43565b3480156103a157600080fd5b506102946103b0366004611b5c565b610b84565b3480156103c157600080fd5b50610281610c15565b3480156103d657600080fd5b506102816103e53660046119ec565b610c4b565b3480156103f657600080fd5b50610294610405366004611b5c565b600d6020526000908152604090205481565b34801561042357600080fd5b50610281610432366004611b87565b610c7a565b34801561044357600080fd5b506007546001600160a01b0316610249565b34801561046157600080fd5b5061021c610cb7565b34801561047657600080fd5b50600a546101f29060ff1681565b34801561049057600080fd5b5061028161049f366004611ba2565b610cc6565b3480156104b057600080fd5b506102816104bf366004611bd5565b610d8a565b3480156104d057600080fd5b5061021c6104df3660046119ec565b610dc3565b3480156104f057600080fd5b50610294600b5481565b34801561050657600080fd5b50610281610515366004611a21565b610e90565b34801561052657600080fd5b506101f2610535366004611c51565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056f57600080fd5b50610281610edf565b34801561058457600080fd5b50610281610593366004611b5c565b610fc7565b60006001600160e01b031982166380ac58cd60e01b14806105c957506001600160e01b03198216635b5e139f60e01b145b806105e457506001600160e01b0319821663780e9d6360e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061490611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611c7b565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a4826000541190565b61070b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073282610b31565b9050806001600160a01b0316836001600160a01b0316036107a05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610702565b336001600160a01b03821614806107bc57506107bc8133610535565b61082e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610702565b61083983838361105f565b505050565b6108398383836110bb565b600061085483610b84565b82106108ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610702565b600080549080805b83811015610944576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090857805192505b876001600160a01b0316836001600160a01b03160361093b57868403610934575093506105ff92505050565b6001909301925b506001016108b5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610702565b600980546109b190611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90611c7b565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b505050505081565b6007546001600160a01b03163314610a5c5760405162461bcd60e51b815260040161070290611cb5565b604051600090339047908381818185875af1925050503d8060008114610a9e576040519150601f19603f3d011682016040523d82523d6000602084013e610aa3565b606091505b5050905080610ab157600080fd5b50565b61083983838360405180602001604052806000815250610d8a565b600080548210610b2d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610702565b5090565b6000610b3c826113a0565b5192915050565b6007546001600160a01b03163314610b6d5760405162461bcd60e51b815260040161070290611cb5565b8051610b809060099060208401906118be565b5050565b60006001600160a01b038216610bf05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610702565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c3f5760405162461bcd60e51b815260040161070290611cb5565b610c496000611477565b565b6007546001600160a01b03163314610c755760405162461bcd60e51b815260040161070290611cb5565b600c55565b6007546001600160a01b03163314610ca45760405162461bcd60e51b815260040161070290611cb5565b600a805460ff1916911515919091179055565b60606002805461061490611c7b565b336001600160a01b03831603610d1e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610702565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d958484846110bb565b610da1848484846114c9565b610dbd5760405162461bcd60e51b815260040161070290611cea565b50505050565b6060610dd0826000541190565b610e345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610702565b6000610e3e6115cb565b90508051600003610e5e5760405180602001604052806000815250610e89565b80610e68846115da565b604051602001610e79929190611d3d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610eba5760405162461bcd60e51b815260040161070290611cb5565b600054600b54610eca8383611d82565b1115610ed557600080fd5b61083983836116db565b600260085403610f315760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b6002600855600054600a5460ff16610f4857600080fd5b600b54600c54610f589083611d82565b1115610f6357600080fd5b333214610f6f57600080fd5b600c54336000908152600d602052604090205410610f8c57600080fd5b610f9833600c546116db565b600c54336000908152600d602052604081208054909190610fba908490611d82565b9091555050600160085550565b6007546001600160a01b03163314610ff15760405162461bcd60e51b815260040161070290611cb5565b6001600160a01b0381166110565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610702565b610ab181611477565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110c6826113a0565b80519091506000906001600160a01b0316336001600160a01b031614806110fd5750336110f284610697565b6001600160a01b0316145b8061110f5750815161110f9033610535565b9050806111795760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610702565b846001600160a01b031682600001516001600160a01b0316146111ed5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610702565b6001600160a01b0384166112515760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610702565b611261600084846000015161105f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661135657611309816000541190565b15611356578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526113bf826000541190565b61141e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610702565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561146d579392505050565b5060001901611420565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115bf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061150d903390899088908890600401611d9a565b6020604051808303816000875af1925050508015611548575060408051601f3d908101601f1916820190925261154591810190611dd7565b60015b6115a5573d808015611576576040519150601f19603f3d011682016040523d82523d6000602084013e61157b565b606091505b50805160000361159d5760405162461bcd60e51b815260040161070290611cea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115c3565b5060015b949350505050565b60606009805461061490611c7b565b6060816000036116015750506040805180820190915260018152600360fc1b602082015290565b8160005b811561162b578061161581611df4565b91506116249050600a83611e23565b9150611605565b60008167ffffffffffffffff81111561164657611646611a87565b6040519080825280601f01601f191660200182016040528015611670576020820181803683370190505b5090505b84156115c357611685600183611e37565b9150611692600a86611e4e565b61169d906030611d82565b60f81b8183815181106116b2576116b2611e62565b60200101906001600160f81b031916908160001a9053506116d4600a86611e23565b9450611674565b610b8082826040518060200160405280600081525061083983838360016000546001600160a01b03851661175b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610702565b836000036117bc5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610702565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118b55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156118a95761188d60008884886114c9565b6118a95760405162461bcd60e51b815260040161070290611cea565b6001918201910161183a565b50600055611399565b8280546118ca90611c7b565b90600052602060002090601f0160209004810192826118ec5760008555611932565b82601f1061190557805160ff1916838001178555611932565b82800160010185558215611932579182015b82811115611932578251825591602001919060010190611917565b50610b2d9291505b80821115610b2d576000815560010161193a565b6001600160e01b031981168114610ab157600080fd5b60006020828403121561197657600080fd5b8135610e898161194e565b60005b8381101561199c578181015183820152602001611984565b83811115610dbd5750506000910152565b600081518084526119c5816020860160208601611981565b601f01601f19169290920160200192915050565b602081526000610e8960208301846119ad565b6000602082840312156119fe57600080fd5b5035919050565b80356001600160a01b0381168114611a1c57600080fd5b919050565b60008060408385031215611a3457600080fd5b611a3d83611a05565b946020939093013593505050565b600080600060608486031215611a6057600080fd5b611a6984611a05565b9250611a7760208501611a05565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ab857611ab8611a87565b604051601f8501601f19908116603f01168101908282118183101715611ae057611ae0611a87565b81604052809350858152868686011115611af957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b2557600080fd5b813567ffffffffffffffff811115611b3c57600080fd5b8201601f81018413611b4d57600080fd5b6115c384823560208401611a9d565b600060208284031215611b6e57600080fd5b610e8982611a05565b80358015158114611a1c57600080fd5b600060208284031215611b9957600080fd5b610e8982611b77565b60008060408385031215611bb557600080fd5b611bbe83611a05565b9150611bcc60208401611b77565b90509250929050565b60008060008060808587031215611beb57600080fd5b611bf485611a05565b9350611c0260208601611a05565b925060408501359150606085013567ffffffffffffffff811115611c2557600080fd5b8501601f81018713611c3657600080fd5b611c4587823560208401611a9d565b91505092959194509250565b60008060408385031215611c6457600080fd5b611c6d83611a05565b9150611bcc60208401611a05565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611d4f818460208801611981565b835190830190611d63818360208801611981565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d9557611d95611d6c565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dcd908301846119ad565b9695505050505050565b600060208284031215611de957600080fd5b8151610e898161194e565b600060018201611e0657611e06611d6c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e3257611e32611e0d565b500490565b600082821015611e4957611e49611d6c565b500390565b600082611e5d57611e5d611e0d565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122088534b870b74d079496500c10c65c4c8b09d28e149d4dfc41803e09188afc86f64736f6c634300080d0033

Deployed Bytecode Sourcemap

58512:1584:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42669:372;;;;;;;;;;-1:-1:-1;42669:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42669:372:0;;;;;;;;44555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46117:214::-;;;;;;;;;;-1:-1:-1;46117:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;46117:214:0;1528:203:1;45638:413:0;;;;;;;;;;-1:-1:-1;45638:413:0;;;;;:::i;:::-;;:::i;:::-;;40926:100;;;;;;;;;;-1:-1:-1;40979:7:0;41006:12;40926:100;;;2319:25:1;;;2307:2;2292:18;40926:100:0;2173:177:1;46993:162:0;;;;;;;;;;-1:-1:-1;46993:162:0;;;;;:::i;:::-;;:::i;58713:31::-;;;;;;;;;;;;;;;;41590:1007;;;;;;;;;;-1:-1:-1;41590:1007:0;;;;;:::i;:::-;;:::i;58613:24::-;;;;;;;;;;;;;:::i;59933:160::-;;;:::i;47226:177::-;;;;;;;;;;-1:-1:-1;47226:177:0;;;;;:::i;:::-;;:::i;41103:187::-;;;;;;;;;;-1:-1:-1;41103:187:0;;;;;:::i;:::-;;:::i;44364:124::-;;;;;;;;;;-1:-1:-1;44364:124:0;;;;;:::i;:::-;;:::i;59818:107::-;;;;;;;;;;-1:-1:-1;59818:107:0;;;;;:::i;:::-;;:::i;43105:221::-;;;;;;;;;;-1:-1:-1;43105:221:0;;;;;:::i;:::-;;:::i;16256:94::-;;;;;;;;;;;;;:::i;59710:100::-;;;;;;;;;;-1:-1:-1;59710:100:0;;;;;:::i;:::-;;:::i;58752:50::-;;;;;;;;;;-1:-1:-1;58752:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;59613:89;;;;;;;;;;-1:-1:-1;59613:89:0;;;;;:::i;:::-;;:::i;15605:87::-;;;;;;;;;;-1:-1:-1;15678:6:0;;-1:-1:-1;;;;;15678:6:0;15605:87;;44724:104;;;;;;;;;;;;;:::i;58644:26::-;;;;;;;;;;-1:-1:-1;58644:26:0;;;;;;;;46403:288;;;;;;;;;;-1:-1:-1;46403:288:0;;;;;:::i;:::-;;:::i;47474:355::-;;;;;;;;;;-1:-1:-1;47474:355:0;;;;;:::i;:::-;;:::i;44899:335::-;;;;;;;;;;-1:-1:-1;44899:335:0;;;;;:::i;:::-;;:::i;58677:29::-;;;;;;;;;;;;;;;;59382:223;;;;;;;;;;-1:-1:-1;59382:223:0;;;;;:::i;:::-;;:::i;46762:164::-;;;;;;;;;;-1:-1:-1;46762:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46883:25:0;;;46859:4;46883:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46762:164;58984:392;;;;;;;;;;;;;:::i;16505:192::-;;;;;;;;;;-1:-1:-1;16505:192:0;;;;;:::i;:::-;;:::i;42669:372::-;42771:4;-1:-1:-1;;;;;;42808:40:0;;-1:-1:-1;;;42808:40:0;;:105;;-1:-1:-1;;;;;;;42865:48:0;;-1:-1:-1;;;42865:48:0;42808:105;:172;;;-1:-1:-1;;;;;;;42930:50:0;;-1:-1:-1;;;42930:50:0;42808:172;:225;;;-1:-1:-1;;;;;;;;;;33166:40:0;;;42997:36;42788:245;42669:372;-1:-1:-1;;42669:372:0:o;44555:100::-;44609:13;44642:5;44635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44555:100;:::o;46117:214::-;46185:7;46213:16;46221:7;48141:4;48175:12;-1:-1:-1;48165:22:0;48084:111;46213:16;46205:74;;;;-1:-1:-1;;;46205:74:0;;6237:2:1;46205:74:0;;;6219:21:1;6276:2;6256:18;;;6249:30;6315:34;6295:18;;;6288:62;-1:-1:-1;;;6366:18:1;;;6359:43;6419:19;;46205:74:0;;;;;;;;;-1:-1:-1;46299:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46299:24:0;;46117:214::o;45638:413::-;45711:13;45727:24;45743:7;45727:15;:24::i;:::-;45711:40;;45776:5;-1:-1:-1;;;;;45770:11:0;:2;-1:-1:-1;;;;;45770:11:0;;45762:58;;;;-1:-1:-1;;;45762:58:0;;6651:2:1;45762:58:0;;;6633:21:1;6690:2;6670:18;;;6663:30;6729:34;6709:18;;;6702:62;-1:-1:-1;;;6780:18:1;;;6773:32;6822:19;;45762:58:0;6449:398:1;45762:58:0;14506:10;-1:-1:-1;;;;;45855:21:0;;;;:62;;-1:-1:-1;45880:37:0;45897:5;14506:10;46762:164;:::i;45880:37::-;45833:169;;;;-1:-1:-1;;;45833:169:0;;7054:2:1;45833:169:0;;;7036:21:1;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;7203:27;7183:18;;;7176:55;7248:19;;45833:169:0;6852:421:1;45833:169:0;46015:28;46024:2;46028:7;46037:5;46015:8;:28::i;:::-;45700:351;45638:413;;:::o;46993:162::-;47119:28;47129:4;47135:2;47139:7;47119:9;:28::i;41590:1007::-;41679:7;41715:16;41725:5;41715:9;:16::i;:::-;41707:5;:24;41699:71;;;;-1:-1:-1;;;41699:71:0;;7480:2:1;41699:71:0;;;7462:21:1;7519:2;7499:18;;;7492:30;7558:34;7538:18;;;7531:62;-1:-1:-1;;;7609:18:1;;;7602:32;7651:19;;41699:71:0;7278:398:1;41699:71:0;41781:22;41006:12;;;41781:22;;42044:466;42064:14;42060:1;:18;42044:466;;;42104:31;42138:14;;;:11;:14;;;;;;;;;42104:48;;;;;;;;;-1:-1:-1;;;;;42104:48:0;;;;;-1:-1:-1;;;42104:48:0;;;;;;;;;;;;42175:28;42171:111;;42248:14;;;-1:-1:-1;42171:111:0;42325:5;-1:-1:-1;;;;;42304:26:0;:17;-1:-1:-1;;;;;42304:26:0;;42300:195;;42374:5;42359:11;:20;42355:85;;-1:-1:-1;42415:1:0;-1:-1:-1;42408:8:0;;-1:-1:-1;;;42408:8:0;42355:85;42462:13;;;;;42300:195;-1:-1:-1;42080:3:0;;42044:466;;;-1:-1:-1;42533:56:0;;-1:-1:-1;;;42533:56:0;;7883:2:1;42533:56:0;;;7865:21:1;7922:2;7902:18;;;7895:30;7961:34;7941:18;;;7934:62;-1:-1:-1;;;8012:18:1;;;8005:44;8066:19;;42533:56:0;7681:410:1;58613:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59933:160::-;15678:6;;-1:-1:-1;;;;;15678:6:0;14506:10;15825:23;15817:68;;;;-1:-1:-1;;;15817:68:0;;;;;;;:::i;:::-;60009:58:::1;::::0;59991:12:::1;::::0;60017:10:::1;::::0;60041:21:::1;::::0;59991:12;60009:58;59991:12;60009:58;60041:21;60017:10;60009:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59990:77;;;60080:7;60072:16;;;::::0;::::1;;59986:107;59933:160::o:0;47226:177::-;47356:39;47373:4;47379:2;47383:7;47356:39;;;;;;;;;;;;:16;:39::i;41103:187::-;41170:7;41006:12;;41198:5;:21;41190:69;;;;-1:-1:-1;;;41190:69:0;;8869:2:1;41190:69:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;-1:-1:-1;;;8998:18:1;;;8991:33;9041:19;;41190:69:0;8667:399:1;41190:69:0;-1:-1:-1;41277:5:0;41103:187::o;44364:124::-;44428:7;44455:20;44467:7;44455:11;:20::i;:::-;:25;;44364:124;-1:-1:-1;;44364:124:0:o;59818:107::-;15678:6;;-1:-1:-1;;;;;15678:6:0;14506:10;15825:23;15817:68;;;;-1:-1:-1;;;15817:68:0;;;;;;;:::i;:::-;59899:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59818:107:::0;:::o;43105:221::-;43169:7;-1:-1:-1;;;;;43197:19:0;;43189:75;;;;-1:-1:-1;;;43189:75:0;;9273:2:1;43189:75:0;;;9255:21:1;9312:2;9292:18;;;9285:30;9351:34;9331:18;;;9324:62;-1:-1:-1;;;9402:18:1;;;9395:41;9453:19;;43189:75:0;9071:407:1;43189:75:0;-1:-1:-1;;;;;;43290:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43290:27:0;;43105:221::o;16256:94::-;15678:6;;-1:-1:-1;;;;;15678:6:0;14506:10;15825:23;15817:68;;;;-1:-1:-1;;;15817:68:0;;;;;;;:::i;:::-;16321:21:::1;16339:1;16321:9;:21::i;:::-;16256:94::o:0;59710:100::-;15678:6;;-1:-1:-1;;;;;15678:6:0;14506:10;15825:23;15817:68;;;;-1:-1:-1;;;15817:68:0;;;;;;;:::i;:::-;59780:12:::1;:22:::0;59710:100::o;59613:89::-;15678:6;;-1:-1:-1;;;;;15678:6:0;14506:10;15825:23;15817:68;;;;-1:-1:-1;;;15817:68:0;;;;;;;:::i;:::-;59681:6:::1;:13:::0;;-1:-1:-1;;59681:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59613:89::o;44724:104::-;44780:13;44813:7;44806:14;;;;;:::i;46403:288::-;14506:10;-1:-1:-1;;;;;46498:24:0;;;46490:63;;;;-1:-1:-1;;;46490:63:0;;9685:2:1;46490:63:0;;;9667:21:1;9724:2;9704:18;;;9697:30;9763:28;9743:18;;;9736:56;9809:18;;46490:63:0;9483:350:1;46490:63:0;14506:10;46566:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46566:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46566:53:0;;;;;;;;;;46635:48;;540:41:1;;;46566:42:0;;14506:10;46635:48;;513:18:1;46635:48:0;;;;;;;46403:288;;:::o;47474:355::-;47633:28;47643:4;47649:2;47653:7;47633:9;:28::i;:::-;47694:48;47717:4;47723:2;47727:7;47736:5;47694:22;:48::i;:::-;47672:149;;;;-1:-1:-1;;;47672:149:0;;;;;;;:::i;:::-;47474:355;;;;:::o;44899:335::-;44972:13;45006:16;45014:7;48141:4;48175:12;-1:-1:-1;48165:22:0;48084:111;45006:16;44998:76;;;;-1:-1:-1;;;44998:76:0;;10460:2:1;44998:76:0;;;10442:21:1;10499:2;10479:18;;;10472:30;10538:34;10518:18;;;10511:62;-1:-1:-1;;;10589:18:1;;;10582:45;10644:19;;44998:76:0;10258:411:1;44998:76:0;45087:21;45111:10;:8;:10::i;:::-;45087:34;;45145:7;45139:21;45164:1;45139:26;:87;;;;;;;;;;;;;;;;;45192:7;45201:18;:7;:16;:18::i;:::-;45175:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45139:87;45132:94;44899:335;-1:-1:-1;;;44899:335:0:o;59382:223::-;15678:6;;-1:-1:-1;;;;;15678:6:0;14506:10;15825:23;15817:68;;;;-1:-1:-1;;;15817:68:0;;;;;;;:::i;:::-;59467:23:::1;41006:12:::0;59552:7:::1;::::0;59522:26:::1;59540:8:::0;41006:12;59522:26:::1;:::i;:::-;:37;;59514:46;;;::::0;::::1;;59571:26;59581:5;59588:8;59571:9;:26::i;58984:392::-:0;57538:1;58136:7;;:19;58128:63;;;;-1:-1:-1;;;58128:63:0;;11616:2:1;58128:63:0;;;11598:21:1;11655:2;11635:18;;;11628:30;11694:33;11674:18;;;11667:61;11745:18;;58128:63:0;11414:355:1;58128:63:0;57538:1;58269:7;:18;59040:23:::1;41006:12:::0;59098:6:::1;::::0;::::1;;59090:15;;;::::0;::::1;;59158:7;::::0;59142:12:::1;::::0;59124:30:::1;::::0;:15;:30:::1;:::i;:::-;:41;;59116:50;;;::::0;::::1;;59185:10;59199:9;59185:23;59177:32;;;::::0;::::1;;59255:12;::::0;59241:10:::1;59225:27;::::0;;;:15:::1;:27;::::0;;;;;:42:::1;59217:51;;;::::0;::::1;;59279:35;59289:10;59301:12;;59279:9;:35::i;:::-;59356:12;::::0;59341:10:::1;59325:27;::::0;;;:15:::1;:27;::::0;;;;:43;;:27;;;:43:::1;::::0;59356:12;;59325:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;57494:1:0;58448:7;:22;-1:-1:-1;58984:392:0:o;16505:192::-;15678:6;;-1:-1:-1;;;;;15678:6:0;14506:10;15825:23;15817:68;;;;-1:-1:-1;;;15817:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16594:22:0;::::1;16586:73;;;::::0;-1:-1:-1;;;16586:73:0;;11976:2:1;16586:73:0::1;::::0;::::1;11958:21:1::0;12015:2;11995:18;;;11988:30;12054:34;12034:18;;;12027:62;-1:-1:-1;;;12105:18:1;;;12098:36;12151:19;;16586:73:0::1;11774:402:1::0;16586:73:0::1;16670:19;16680:8;16670:9;:19::i;53004:196::-:0;53119:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53119:29:0;-1:-1:-1;;;;;53119:29:0;;;;;;;;;53164:28;;53119:24;;53164:28;;;;;;;53004:196;;;:::o;50884:2002::-;50999:35;51037:20;51049:7;51037:11;:20::i;:::-;51112:18;;50999:58;;-1:-1:-1;51070:22:0;;-1:-1:-1;;;;;51096:34:0;14506:10;-1:-1:-1;;;;;51096:34:0;;:87;;;-1:-1:-1;14506:10:0;51147:20;51159:7;51147:11;:20::i;:::-;-1:-1:-1;;;;;51147:36:0;;51096:87;:154;;;-1:-1:-1;51217:18:0;;51200:50;;14506:10;46762:164;:::i;51200:50::-;51070:181;;51272:17;51264:80;;;;-1:-1:-1;;;51264:80:0;;12383:2:1;51264:80:0;;;12365:21:1;12422:2;12402:18;;;12395:30;12461:34;12441:18;;;12434:62;-1:-1:-1;;;12512:18:1;;;12505:48;12570:19;;51264:80:0;12181:414:1;51264:80:0;51387:4;-1:-1:-1;;;;;51365:26:0;:13;:18;;;-1:-1:-1;;;;;51365:26:0;;51357:77;;;;-1:-1:-1;;;51357:77:0;;12802:2:1;51357:77:0;;;12784:21:1;12841:2;12821:18;;;12814:30;12880:34;12860:18;;;12853:62;-1:-1:-1;;;12931:18:1;;;12924:36;12977:19;;51357:77:0;12600:402:1;51357:77:0;-1:-1:-1;;;;;51453:16:0;;51445:66;;;;-1:-1:-1;;;51445:66:0;;13209:2:1;51445:66:0;;;13191:21:1;13248:2;13228:18;;;13221:30;13287:34;13267:18;;;13260:62;-1:-1:-1;;;13338:18:1;;;13331:35;13383:19;;51445:66:0;13007:401:1;51445:66:0;51632:49;51649:1;51653:7;51662:13;:18;;;51632:8;:49::i;:::-;-1:-1:-1;;;;;51977:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;51977:31:0;;;-1:-1:-1;;;;;51977:31:0;;;-1:-1:-1;;51977:31:0;;;;;;;52023:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;52023:29:0;;;;;;;;;;;;;52069:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;52114:61:0;;;;-1:-1:-1;;;52159:15:0;52114:61;;;;;;52449:11;;;52479:24;;;;;:29;52449:11;;52479:29;52475:295;;52547:20;52555:11;48141:4;48175:12;-1:-1:-1;48165:22:0;48084:111;52547:20;52543:212;;;52624:18;;;52592:24;;;:11;:24;;;;;;;;:50;;52707:28;;;;52665:70;;-1:-1:-1;;;52665:70:0;-1:-1:-1;;;;;;52665:70:0;;;-1:-1:-1;;;;;52592:50:0;;;52665:70;;;;;;;52543:212;51952:829;52817:7;52813:2;-1:-1:-1;;;;;52798:27:0;52807:4;-1:-1:-1;;;;;52798:27:0;;;;;;;;;;;52836:42;50988:1898;;50884:2002;;;:::o;43765:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;43868:16:0;43876:7;48141:4;48175:12;-1:-1:-1;48165:22:0;48084:111;43868:16;43860:71;;;;-1:-1:-1;;;43860:71:0;;13615:2:1;43860:71:0;;;13597:21:1;13654:2;13634:18;;;13627:30;13693:34;13673:18;;;13666:62;-1:-1:-1;;;13744:18:1;;;13737:40;13794:19;;43860:71:0;13413:406:1;43860:71:0;43989:7;43969:245;44036:31;44070:17;;;:11;:17;;;;;;;;;44036:51;;;;;;;;;-1:-1:-1;;;;;44036:51:0;;;;;-1:-1:-1;;;44036:51:0;;;;;;;;;;;;44110:28;44106:93;;44170:9;43765:537;-1:-1:-1;;;43765:537:0:o;44106:93::-;-1:-1:-1;;;44009:6:0;43969:245;;16705:173;16780:6;;;-1:-1:-1;;;;;16797:17:0;;;-1:-1:-1;;;;;;16797:17:0;;;;;;;16830:40;;16780:6;;;16797:17;16780:6;;16830:40;;16761:16;;16830:40;16750:128;16705:173;:::o;53765:804::-;53920:4;-1:-1:-1;;;;;53941:13:0;;17942:20;17990:8;53937:625;;53977:72;;-1:-1:-1;;;53977:72:0;;-1:-1:-1;;;;;53977:36:0;;;;;:72;;14506:10;;54028:4;;54034:7;;54043:5;;53977:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53977:72:0;;;;;;;;-1:-1:-1;;53977:72:0;;;;;;;;;;;;:::i;:::-;;;53973:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54223:6;:13;54240:1;54223:18;54219:273;;54266:61;;-1:-1:-1;;;54266:61:0;;;;;;;:::i;54219:273::-;54442:6;54436:13;54427:6;54423:2;54419:15;54412:38;53973:534;-1:-1:-1;;;;;;54100:55:0;-1:-1:-1;;;54100:55:0;;-1:-1:-1;54093:62:0;;53937:625;-1:-1:-1;54546:4:0;53937:625;53765:804;;;;;;:::o;58867:111::-;58927:13;58960:10;58953:17;;;;;:::i;2600:723::-;2656:13;2877:5;2886:1;2877:10;2873:53;;-1:-1:-1;;2904:10:0;;;;;;;;;;;;-1:-1:-1;;;2904:10:0;;;;;2600:723::o;2873:53::-;2951:5;2936:12;2992:78;2999:9;;2992:78;;3025:8;;;;:::i;:::-;;-1:-1:-1;3048:10:0;;-1:-1:-1;3056:2:0;3048:10;;:::i;:::-;;;2992:78;;;3080:19;3112:6;3102:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3102:17:0;;3080:39;;3130:154;3137:10;;3130:154;;3164:11;3174:1;3164:11;;:::i;:::-;;-1:-1:-1;3233:10:0;3241:2;3233:5;:10;:::i;:::-;3220:24;;:2;:24;:::i;:::-;3207:39;;3190:6;3197;3190:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3190:56:0;;;;;;;;-1:-1:-1;3261:11:0;3270:2;3261:11;;:::i;:::-;;;3130:154;;48203:104;48272:27;48282:2;48286:8;48272:27;;;;;;;;;;;;48793:32;48799:2;48803:8;48813:5;48820:4;49231:20;49254:12;-1:-1:-1;;;;;49285:16:0;;49277:62;;;;-1:-1:-1;;;49277:62:0;;15966:2:1;49277:62:0;;;15948:21:1;16005:2;15985:18;;;15978:30;16044:34;16024:18;;;16017:62;-1:-1:-1;;;16095:18:1;;;16088:31;16136:19;;49277:62:0;15764:397:1;49277:62:0;49358:8;49370:1;49358:13;49350:66;;;;-1:-1:-1;;;49350:66:0;;16368:2:1;49350:66:0;;;16350:21:1;16407:2;16387:18;;;16380:30;16446:34;16426:18;;;16419:62;-1:-1:-1;;;16497:18:1;;;16490:38;16545:19;;49350:66:0;16166:404:1;49350:66:0;-1:-1:-1;;;;;49768:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;49768:45:0;;-1:-1:-1;;;;;49768:45:0;;;;;;;;;;49828:50;;;;;;;;;;;;;;49895:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;49945:66:0;;;;-1:-1:-1;;;49995:15:0;49945:66;;;;;;;49895:25;;50080:415;50100:8;50096:1;:12;50080:415;;;50139:38;;50164:12;;-1:-1:-1;;;;;50139:38:0;;;50156:1;;50139:38;;50156:1;;50139:38;50200:4;50196:249;;;50263:59;50294:1;50298:2;50302:12;50316:5;50263:22;:59::i;:::-;50229:196;;;;-1:-1:-1;;;50229:196:0;;;;;;;:::i;:::-;50465:14;;;;;50110:3;50080:415;;;-1:-1:-1;50511:12:0;:27;50562:60;47474:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:180;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4417:26;4433:9;4417:26;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;8096:356::-;8298:2;8280:21;;;8317:18;;;8310:30;8376:34;8371:2;8356:18;;8349:62;8443:2;8428:18;;8096:356::o;9838:415::-;10040:2;10022:21;;;10079:2;10059:18;;;10052:30;10118:34;10113:2;10098:18;;10091:62;-1:-1:-1;;;10184:2:1;10169:18;;10162:49;10243:3;10228:19;;9838:415::o;10674:470::-;10853:3;10891:6;10885:13;10907:53;10953:6;10948:3;10941:4;10933:6;10929:17;10907:53;:::i;:::-;11023:13;;10982:16;;;;11045:57;11023:13;10982:16;11079:4;11067:17;;11045:57;:::i;:::-;11118:20;;10674:470;-1:-1:-1;;;;10674:470:1:o;11149:127::-;11210:10;11205:3;11201:20;11198:1;11191:31;11241:4;11238:1;11231:15;11265:4;11262:1;11255:15;11281:128;11321:3;11352:1;11348:6;11345:1;11342:13;11339:39;;;11358:18;;:::i;:::-;-1:-1:-1;11394:9:1;;11281:128::o;14240:489::-;-1:-1:-1;;;;;14509:15:1;;;14491:34;;14561:15;;14556:2;14541:18;;14534:43;14608:2;14593:18;;14586:34;;;14656:3;14651:2;14636:18;;14629:31;;;14434:4;;14677:46;;14703:19;;14695:6;14677:46;:::i;:::-;14669:54;14240:489;-1:-1:-1;;;;;;14240:489:1:o;14734:249::-;14803:6;14856:2;14844:9;14835:7;14831:23;14827:32;14824:52;;;14872:1;14869;14862:12;14824:52;14904:9;14898:16;14923:30;14947:5;14923:30;:::i;14988:135::-;15027:3;15048:17;;;15045:43;;15068:18;;:::i;:::-;-1:-1:-1;15115:1:1;15104:13;;14988:135::o;15128:127::-;15189:10;15184:3;15180:20;15177:1;15170:31;15220:4;15217:1;15210:15;15244:4;15241:1;15234:15;15260:120;15300:1;15326;15316:35;;15331:18;;:::i;:::-;-1:-1:-1;15365:9:1;;15260:120::o;15385:125::-;15425:4;15453:1;15450;15447:8;15444:34;;;15458:18;;:::i;:::-;-1:-1:-1;15495:9:1;;15385:125::o;15515:112::-;15547:1;15573;15563:35;;15578:18;;:::i;:::-;-1:-1:-1;15612:9:1;;15515:112::o;15632:127::-;15693:10;15688:3;15684:20;15681:1;15674:31;15724:4;15721:1;15714:15;15748:4;15745:1;15738:15

Swarm Source

ipfs://88534b870b74d079496500c10c65c4c8b09d28e149d4dfc41803e09188afc86f
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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