ETH Price: $2,436.89 (+1.45%)

Token

VosNFT (VOS)
 

Overview

Max Total Supply

129 VOS

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
theapplevision.eth
Balance
1 VOS
0x2e9d53530f954d3f5b4910c0a00b0867ad04baf4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

VOS NFT is a 3D collection of 10,000 pets digital collectibles living on the Ethereum blockchain. Every single VOS NFT guard your life-time Mental Health support for the Real-world and Metaverse. VOS NFT doubles as membership card, and grants access to members-only benefits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VosNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-19
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (access/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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/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);
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.0 (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 PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, 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;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @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 total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contract-e7ddc8b6a6.sol


pragma solidity ^0.8.0;









contract VosNFT is ERC721, ERC721URIStorage, ERC721Enumerable, Ownable, Pausable, PaymentSplitter, ReentrancyGuard {
    using SafeMath for uint256;

    // Max limit of existing tokens
    uint256 public constant TOKEN_LIMIT = 9999;

    // Linear price of 1 token
    uint256 private _tokenPrice;

    // Maximum amount of tokens to be bought in one transaction / mint
    uint256 private _maxTokensAtOnce = 20;

    // flag for public sale - sale where anybody can buy multiple tokens
    bool public publicSale = false;

    // flag for team sale - sale where team can buy before currect amount of existing tokens is < 1000
    bool public teamSale = false;

    // random nonce/seed
    uint internal nonce = 0;

    // Token URIs base
    string public baseURI = "https://ipfs.io/ipfs/QmUeh2KSEnehxDApG28ep6ezEpUj64sqzGJ9MeqGTVpPZ3/";

    // list of existing ids of tokens
    uint[TOKEN_LIMIT] internal indices;

    // mapping of addreses available to buy in teamSale phase
    mapping(address => bool) private _teamSaleAddresses;

    // split of shares when withdrawing eth from contract
    uint256[] private _teamShares = [100];
    address[] private _team = [0x33C4a8BB3dd9D3dC1EAa4369a933a3eE61860F16];

    constructor()
        PaymentSplitter(_team, _teamShares)
        ERC721("VosNFT", "VOS")
    {
        // sets the token price in wei
        setTokenPrice(35000000000000000);

        // sets the team addresses flags in array
        _teamSaleAddresses[0x33C4a8BB3dd9D3dC1EAa4369a933a3eE61860F16] = true;
    }


    // Required overrides from parent contracts
    function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    // return of metadata json uri
    function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
        return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
    }

    // Required overrides from parent contracts
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // Required overrides from parent contracts
    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    // _tokenPrice getter
    function getTokenPrice() public view returns(uint256) {
        return _tokenPrice;
    }

    // _tokenPrice setter
    function setTokenPrice(uint256 _price) public onlyOwner {
        _tokenPrice = _price;
    }

    // _paused - pause toggles availability of certain methods that are extending "whenNotPaused" or "whenPaused"
    function togglePaused() public onlyOwner {
        if (paused()) {
        _unpause();
        } else {
        _pause();
        }
    }

    // _maxTokensAtOnce getter
    function getMaxTokensAtOnce() public view returns (uint256) {
        return _maxTokensAtOnce;
    }

    // _maxTokensAtOnce setter
    function setMaxTokensAtOnce(uint256 _count) public onlyOwner {
        _maxTokensAtOnce = _count;
    }

    // enables public sale and sets max token in tx for 20
    function enablePublicSale() public onlyOwner {
        publicSale = true;
        setMaxTokensAtOnce(20);
    }

    // disables public sale
    function disablePublicSale() public onlyOwner {
        publicSale = false;
        setMaxTokensAtOnce(1);
    }

    // toggles teamSale
    function toggleTeamSale() public onlyOwner {
        teamSale = !teamSale;
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

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

    // Pick a random index
    function randomIndex() internal returns (uint256) {
        uint256 totalSize = TOKEN_LIMIT - totalSupply();
        uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
        uint256 value = 0;

        if (indices[index] != 0) {
        value = indices[index];
        } else {
        value = index;
        }

        if (indices[totalSize - 1] == 0) {
        indices[index] = totalSize - 1;
        } else {
        indices[index] = indices[totalSize - 1];
        }

        nonce++;

        return value.add(1);
    }

    // Minting single or multiple tokens
    function _mintWithRandomTokenId(address _to) private {
        uint _tokenID = randomIndex();
        _safeMint(_to, _tokenID);
    }

    // public method for minting multiple tokens if public sale is enable
    function mintPublicMultipleTokens(uint256 _amount) public payable nonReentrant whenNotPaused {
        require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Purchase would exceed max supply of VosNFT");
        require(publicSale, "Public sale must be active to mint multiple tokens at once");
        require(_amount <= _maxTokensAtOnce, "Too many tokens at once");
        require(getTokenPrice().mul(_amount) == msg.value, "Insufficient funds to purchase");

        for(uint256 i = 0; i < _amount; i++) {
        _mintWithRandomTokenId(msg.sender);
        }
    }

    // public method for teammembers for minting multiple tokens if teamsale is enabled and existing tokens amount are less than 1000
    function mintTeamMultipleTokens(uint256 _amount) public payable nonReentrant {
        require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Purchase would exceed max supply of VosNFT");
        require(teamSale, "Team sale must be active to mint as a team member");
        require(totalSupply() < 1000, "Exceeded tokens allocation for team members");
        require(_teamSaleAddresses[address(msg.sender)], "Not a team member");

        for(uint256 i = 0; i < _amount; i++) {
        _mintWithRandomTokenId(msg.sender);
        }
    }
}

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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disablePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxTokensAtOnce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","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":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublicMultipleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintTeamMultipleTokens","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxTokensAtOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"teamSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTeamSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60146015556016805461ffff1916905560006017556101006040526044608081815290620038f160a03980516200003f9160189160209091019062000501565b50604080516020810190915260648152620000609061272990600162000590565b5060408051602081019091527333c4a8bb3dd9d3dc1eaa4369a933a3ee61860f168152620000949061272a906001620005d3565b50348015620000a257600080fd5b5061272a805480602002602001604051908101604052809291908181526020018280548015620000fc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000dd575b50505050506127298054806020026020016040519081016040528092919081815260200182805480156200015057602002820191906000526020600020905b8154815260200190600101908083116200013b575b50506040805180820182526006815265159bdcd3919560d21b602080830191825283518085019094526003845262564f5360e81b908401528151919550919350620001a092506000919062000501565b508051620001b690600190602084019062000501565b505050620001d3620001cd6200031f60201b60201c565b62000323565b600b805460ff60a01b1916905580518251146200020d5760405162461bcd60e51b81526004016200020490620006dc565b60405180910390fd5b6000825111620002315760405162461bcd60e51b8152600401620002049062000779565b60005b8251811015620002b557620002a08382815181106200026357634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200028c57634e487b7160e01b600052603260045260246000fd5b60200260200101516200037560201b60201c565b80620002ac816200083f565b91505062000234565b5050600160135550620002cf667c585087238000620004a7565b7333c4a8bb3dd9d3dc1eaa4369a933a3ee61860f166000526127286020527f4b8b2746c4578418c549deb9f68c688e5488f07fc42b1f15a16cc9cf3b20f553805460ff1916600117905562000873565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200039e5760405162461bcd60e51b815260040162000204906200065b565b60008111620003c15760405162461bcd60e51b81526004016200020490620007b0565b6001600160a01b0382166000908152600e602052604090205415620003fa5760405162461bcd60e51b815260040162000204906200072e565b60108054600181019091557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b0319166001600160a01b0384169081179091556000908152600e60205260409020819055600c5462000464908290620007e7565b600c556040517f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac906200049b908490849062000642565b60405180910390a15050565b620004b16200031f565b6001600160a01b0316620004c4620004f2565b6001600160a01b031614620004ed5760405162461bcd60e51b81526004016200020490620006a7565b601455565b600b546001600160a01b031690565b8280546200050f9062000802565b90600052602060002090601f0160209004810192826200053357600085556200057e565b82601f106200054e57805160ff19168380011785556200057e565b828001600101855582156200057e579182015b828111156200057e57825182559160200191906001019062000561565b506200058c9291506200062b565b5090565b8280548282559060005260206000209081019282156200057e579160200282015b828111156200057e578251829060ff16905591602001919060010190620005b1565b8280548282559060005260206000209081019282156200057e579160200282015b828111156200057e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005f4565b5b808211156200058c57600081556001016200062c565b6001600160a01b03929092168252602082015260400190565b6020808252602c908201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726040820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960408201526a206861732073686172657360a81b606082015260800190565b6020808252601a908201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604082015260600190565b6020808252601d908201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604082015260600190565b60008219821115620007fd57620007fd6200085d565b500190565b6002810460018216806200081757607f821691505b602082108114156200083957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200085657620008566200085d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b61306e80620008836000396000f3fe6080604052600436106102555760003560e01c80636a61e5fc11610139578063a0bcfc7f116100b6578063ce7c2ac21161007a578063ce7c2ac214610696578063d79779b2146106b6578063e33b7de3146106d6578063e985e9c5146106eb578063ec8db8171461070b578063f2fde38b146107205761029c565b8063a0bcfc7f14610601578063a22cb46514610621578063b88d4fde14610641578063bf98081b14610661578063c87b56dd146106765761029c565b80638da5cb5b116100fd5780638da5cb5b1461058f57806395d89b41146105a45780639852595c146105b95780639cb5fece146105d95780639f214ba7146105ec5761029c565b80636a61e5fc146105055780636c0360eb1461052557806370a082311461053a578063715018a61461055a5780638b83209b1461056f5761029c565b80632f745c59116101d257806340bad3771161019657806340bad3771461046857806342842e0e1461047b5780634b94f50e1461049b5780634f6ccce7146104b05780635c975abb146104d05780636352211e146104e55761029c565b80632f745c59146103e957806330571c581461040957806333bc1c5c1461042957806336566f061461043e5780633a98ef39146104535761029c565b806318160ddd1161021957806318160ddd1461036a578063191655871461037f5780632316b4da1461039f57806323b872dd146103b4578063289eff46146103d45761029c565b806301ffc9a7146102a1578063031bd4c4146102d757806306fdde03146102f9578063081812fc1461031b578063095ea7b3146103485761029c565b3661029c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610283610740565b34604051610292929190612578565b60405180910390a1005b600080fd5b3480156102ad57600080fd5b506102c16102bc36600461241a565b610744565b6040516102ce91906125ce565b60405180910390f35b3480156102e357600080fd5b506102ec610757565b6040516102ce9190612eca565b34801561030557600080fd5b5061030e61075d565b6040516102ce91906125d9565b34801561032757600080fd5b5061033b610336366004612498565b6107ef565b6040516102ce9190612564565b34801561035457600080fd5b506103686103633660046123ef565b61083b565b005b34801561037657600080fd5b506102ec6108d3565b34801561038b57600080fd5b5061036861039a3660046122ad565b6108d9565b3480156103ab57600080fd5b506103686109e7565b3480156103c057600080fd5b506103686103cf366004612301565b610a3f565b3480156103e057600080fd5b50610368610a77565b3480156103f557600080fd5b506102ec6104043660046123ef565b610ad3565b34801561041557600080fd5b50610368610424366004612498565b610b25565b34801561043557600080fd5b506102c1610b69565b34801561044a57600080fd5b50610368610b72565b34801561045f57600080fd5b506102ec610bd3565b610368610476366004612498565b610bd9565b34801561048757600080fd5b50610368610496366004612301565b610ce2565b3480156104a757600080fd5b506102ec610cfd565b3480156104bc57600080fd5b506102ec6104cb366004612498565b610d03565b3480156104dc57600080fd5b506102c1610d5e565b3480156104f157600080fd5b5061033b610500366004612498565b610d6e565b34801561051157600080fd5b50610368610520366004612498565b610da3565b34801561053157600080fd5b5061030e610de7565b34801561054657600080fd5b506102ec6105553660046122ad565b610e75565b34801561056657600080fd5b50610368610eb9565b34801561057b57600080fd5b5061033b61058a366004612498565b610f02565b34801561059b57600080fd5b5061033b610f40565b3480156105b057600080fd5b5061030e610f4f565b3480156105c557600080fd5b506102ec6105d43660046122ad565b610f5e565b6103686105e7366004612498565b610f79565b3480156105f857600080fd5b506102c161108d565b34801561060d57600080fd5b5061036861061c366004612452565b61109b565b34801561062d57600080fd5b5061036861063c3660046123be565b6110f1565b34801561064d57600080fd5b5061036861065c366004612341565b611103565b34801561066d57600080fd5b506102ec611142565b34801561068257600080fd5b5061030e610691366004612498565b611148565b3480156106a257600080fd5b506102ec6106b13660046122ad565b611179565b3480156106c257600080fd5b506102ec6106d13660046122ad565b611194565b3480156106e257600080fd5b506102ec6111af565b3480156106f757600080fd5b506102c16107063660046122c9565b6111b5565b34801561071757600080fd5b506103686111e3565b34801561072c57600080fd5b5061036861073b3660046122ad565b611236565b3390565b600061074f826112a7565b90505b919050565b61270f81565b60606000805461076c90612f61565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612f61565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa826112cc565b61081f5760405162461bcd60e51b815260040161081690612c3a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084682610d6e565b9050806001600160a01b0316836001600160a01b0316141561087a5760405162461bcd60e51b815260040161081690612d7e565b806001600160a01b031661088c610740565b6001600160a01b031614806108a857506108a881610706610740565b6108c45760405162461bcd60e51b815260040161081690612a16565b6108ce83836112e9565b505050565b60095490565b6001600160a01b0381166000908152600e602052604090205461090e5760405162461bcd60e51b815260040161081690612800565b60006109186111af565b6109229047612ed3565b90506000610939838361093486610f5e565b611357565b9050806109585760405162461bcd60e51b8152600401610816906129a1565b6001600160a01b0383166000908152600f602052604081208054839290610980908490612ed3565b9250508190555080600d60008282546109999190612ed3565b909155506109a99050838261139d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516109da929190612578565b60405180910390a1505050565b6109ef610740565b6001600160a01b0316610a00610f40565b6001600160a01b031614610a265760405162461bcd60e51b815260040161081690612cb1565b6016805460ff19166001179055610a3d6014610b25565b565b610a50610a4a610740565b82611439565b610a6c5760405162461bcd60e51b815260040161081690612dbf565b6108ce8383836114b6565b610a7f610740565b6001600160a01b0316610a90610f40565b6001600160a01b031614610ab65760405162461bcd60e51b815260040161081690612cb1565b6016805461ff001981166101009182900460ff1615909102179055565b6000610ade83610e75565b8210610afc5760405162461bcd60e51b81526004016108169061269b565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610b2d610740565b6001600160a01b0316610b3e610f40565b6001600160a01b031614610b645760405162461bcd60e51b815260040161081690612cb1565b601555565b60165460ff1681565b610b7a610740565b6001600160a01b0316610b8b610f40565b6001600160a01b031614610bb15760405162461bcd60e51b815260040161081690612cb1565b610bb9610d5e565b15610bcb57610bc66115e3565b610a3d565b610a3d611654565b600c5490565b60026013541415610bfc5760405162461bcd60e51b815260040161081690612e93565b600260135561270f610c1682610c106108d3565b906116b5565b1115610c345760405162461bcd60e51b8152600401610816906125ec565b601654610100900460ff16610c5b5760405162461bcd60e51b815260040161081690612b63565b6103e8610c666108d3565b10610c835760405162461bcd60e51b8152600401610816906127b5565b336000908152612728602052604090205460ff16610cb35760405162461bcd60e51b815260040161081690612c86565b60005b81811015610cd957610cc7336116c8565b80610cd181612f9c565b915050610cb6565b50506001601355565b6108ce83838360405180602001604052806000815250611103565b60145490565b6000610d0d6108d3565b8210610d2b5760405162461bcd60e51b815260040161081690612e10565b60098281548110610d4c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b03168061074f5760405162461bcd60e51b815260040161081690612b1a565b610dab610740565b6001600160a01b0316610dbc610f40565b6001600160a01b031614610de25760405162461bcd60e51b815260040161081690612cb1565b601455565b60188054610df490612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2090612f61565b8015610e6d5780601f10610e4257610100808354040283529160200191610e6d565b820191906000526020600020905b815481529060010190602001808311610e5057829003601f168201915b505050505081565b60006001600160a01b038216610e9d5760405162461bcd60e51b815260040161081690612ad0565b506001600160a01b031660009081526003602052604090205490565b610ec1610740565b6001600160a01b0316610ed2610f40565b6001600160a01b031614610ef85760405162461bcd60e51b815260040161081690612cb1565b610a3d60006116de565b600060108281548110610f2557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b600b546001600160a01b031690565b60606001805461076c90612f61565b6001600160a01b03166000908152600f602052604090205490565b60026013541415610f9c5760405162461bcd60e51b815260040161081690612e93565b6002601355610fa9610d5e565b15610fc65760405162461bcd60e51b8152600401610816906129ec565b61270f610fd582610c106108d3565b1115610ff35760405162461bcd60e51b8152600401610816906125ec565b60165460ff166110155760405162461bcd60e51b815260040161081690612a73565b6015548111156110375760405162461bcd60e51b815260040161081690612636565b3461104a82611044610cfd565b90611730565b146110675760405162461bcd60e51b815260040161081690612e5c565b60005b81811015610cd95761107b336116c8565b8061108581612f9c565b91505061106a565b601654610100900460ff1681565b6110a3610740565b6001600160a01b03166110b4610f40565b6001600160a01b0316146110da5760405162461bcd60e51b815260040161081690612cb1565b80516110ed9060189060208401906121a4565b5050565b6110ed6110fc610740565b838361173c565b61111461110e610740565b83611439565b6111305760405162461bcd60e51b815260040161081690612dbf565b61113c848484846117df565b50505050565b60155490565b606061115382611812565b604051602001611163919061250b565b6040516020818303038152906040529050919050565b6001600160a01b03166000908152600e602052604090205490565b6001600160a01b031660009081526011602052604090205490565b600d5490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111eb610740565b6001600160a01b03166111fc610f40565b6001600160a01b0316146112225760405162461bcd60e51b815260040161081690612cb1565b6016805460ff19169055610a3d6001610b25565b61123e610740565b6001600160a01b031661124f610f40565b6001600160a01b0316146112755760405162461bcd60e51b815260040161081690612cb1565b6001600160a01b03811661129b5760405162461bcd60e51b815260040161081690612738565b6112a4816116de565b50565b60006001600160e01b0319821663780e9d6360e01b148061074f575061074f8261192b565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061131e82610d6e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600c546001600160a01b0384166000908152600e6020526040812054909183916113819086612eff565b61138b9190612eeb565b6113959190612f1e565b949350505050565b804710156113bd5760405162461bcd60e51b81526004016108169061291e565b6000826001600160a01b0316826040516113d690612534565b60006040518083038185875af1925050503d8060008114611413576040519150601f19603f3d011682016040523d82523d6000602084013e611418565b606091505b50509050806108ce5760405162461bcd60e51b8152600401610816906128c1565b6000611444826112cc565b6114605760405162461bcd60e51b815260040161081690612955565b600061146b83610d6e565b9050806001600160a01b0316846001600160a01b031614806114a65750836001600160a01b031661149b846107ef565b6001600160a01b0316145b80611395575061139581856111b5565b826001600160a01b03166114c982610d6e565b6001600160a01b0316146114ef5760405162461bcd60e51b815260040161081690612ce6565b6001600160a01b0382166115155760405162461bcd60e51b815260040161081690612846565b61152083838361196b565b61152b6000826112e9565b6001600160a01b0383166000908152600360205260408120805460019290611554908490612f1e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611582908490612ed3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115eb610d5e565b6116075760405162461bcd60e51b81526004016108169061266d565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61163d610740565b60405161164a9190612564565b60405180910390a1565b61165c610d5e565b156116795760405162461bcd60e51b8152600401610816906129ec565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861163d610740565b60006116c18284612ed3565b9392505050565b60006116d2611976565b90506110ed8282611b0b565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116c18284612eff565b816001600160a01b0316836001600160a01b0316141561176e5760405162461bcd60e51b81526004016108169061288a565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906117d29085906125ce565b60405180910390a3505050565b6117ea8484846114b6565b6117f684848484611b25565b61113c5760405162461bcd60e51b8152600401610816906126e6565b606061181d826112cc565b6118395760405162461bcd60e51b815260040161081690612be9565b6000828152600660205260408120805461185290612f61565b80601f016020809104026020016040519081016040528092919081815260200182805461187e90612f61565b80156118cb5780601f106118a0576101008083540402835291602001916118cb565b820191906000526020600020905b8154815290600101906020018083116118ae57829003601f168201915b5050505050905060006118dc611c40565b90508051600014156118f057509050610752565b81511561192257808260405160200161190a9291906124dc565b60405160208183030381529060405292505050610752565b61139584611c4f565b60006001600160e01b031982166380ac58cd60e01b148061195c57506001600160e01b03198216635b5e139f60e01b145b8061074f575061074f82611cd1565b6108ce838383611cea565b6000806119816108d3565b61198d9061270f612f1e565b90506000816017543344426040516020016119ab9493929190612537565b6040516020818303038152906040528051906020012060001c6119ce9190612fb7565b9050600060198261270f81106119f457634e487b7160e01b600052603260045260246000fd5b015415611a265760198261270f8110611a1d57634e487b7160e01b600052603260045260246000fd5b01549050611a29565b50805b6019611a36600185612f1e565b61270f8110611a5557634e487b7160e01b600052603260045260246000fd5b0154611a8f57611a66600184612f1e565b60198361270f8110611a8857634e487b7160e01b600052603260045260246000fd5b0155611ae2565b6019611a9c600185612f1e565b61270f8110611abb57634e487b7160e01b600052603260045260246000fd5b015460198361270f8110611adf57634e487b7160e01b600052603260045260246000fd5b01555b60178054906000611af283612f9c565b90915550611b0390508160016116b5565b935050505090565b6110ed828260405180602001604052806000815250611d73565b6000611b39846001600160a01b0316611da6565b15611c3557836001600160a01b031663150b7a02611b55610740565b8786866040518563ffffffff1660e01b8152600401611b779493929190612591565b602060405180830381600087803b158015611b9157600080fd5b505af1925050508015611bc1575060408051601f3d908101601f19168201909252611bbe91810190612436565b60015b611c1b573d808015611bef576040519150601f19603f3d011682016040523d82523d6000602084013e611bf4565b606091505b508051611c135760405162461bcd60e51b8152600401610816906126e6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611395565b506001949350505050565b60606018805461076c90612f61565b6060611c5a826112cc565b611c765760405162461bcd60e51b815260040161081690612d2f565b6000611c80611c40565b90506000815111611ca057604051806020016040528060008152506116c1565b80611caa84611dac565b604051602001611cbb9291906124dc565b6040516020818303038152906040529392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611cf58383836108ce565b6001600160a01b038316611d1157611d0c81611ec7565b611d34565b816001600160a01b0316836001600160a01b031614611d3457611d348382611f0b565b6001600160a01b038216611d5057611d4b81611fa8565b6108ce565b826001600160a01b0316826001600160a01b0316146108ce576108ce8282612081565b611d7d83836120c5565b611d8a6000848484611b25565b6108ce5760405162461bcd60e51b8152600401610816906126e6565b3b151590565b606081611dd157506040805180820190915260018152600360fc1b6020820152610752565b8160005b8115611dfb5780611de581612f9c565b9150611df49050600a83612eeb565b9150611dd5565b60008167ffffffffffffffff811115611e2457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e4e576020820181803683370190505b5090505b841561139557611e63600183612f1e565b9150611e70600a86612fb7565b611e7b906030612ed3565b60f81b818381518110611e9e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ec0600a86612eeb565b9450611e52565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611f1884610e75565b611f229190612f1e565b600083815260086020526040902054909150808214611f75576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611fba90600190612f1e565b6000838152600a602052604081205460098054939450909284908110611ff057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061201f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061206557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061208c83610e75565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166120eb5760405162461bcd60e51b815260040161081690612bb4565b6120f4816112cc565b156121115760405162461bcd60e51b81526004016108169061277e565b61211d6000838361196b565b6001600160a01b0382166000908152600360205260408120805460019290612146908490612ed3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121b090612f61565b90600052602060002090601f0160209004810192826121d25760008555612218565b82601f106121eb57805160ff1916838001178555612218565b82800160010185558215612218579182015b828111156122185782518255916020019190600101906121fd565b50612224929150612228565b5090565b5b808211156122245760008155600101612229565b600067ffffffffffffffff8084111561225857612258612ff7565b604051601f8501601f19168101602001828111828210171561227c5761227c612ff7565b60405284815291508183850186101561229457600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156122be578081fd5b81356116c18161300d565b600080604083850312156122db578081fd5b82356122e68161300d565b915060208301356122f68161300d565b809150509250929050565b600080600060608486031215612315578081fd5b83356123208161300d565b925060208401356123308161300d565b929592945050506040919091013590565b60008060008060808587031215612356578081fd5b84356123618161300d565b935060208501356123718161300d565b925060408501359150606085013567ffffffffffffffff811115612393578182fd5b8501601f810187136123a3578182fd5b6123b28782356020840161223d565b91505092959194509250565b600080604083850312156123d0578182fd5b82356123db8161300d565b9150602083013580151581146122f6578182fd5b60008060408385031215612401578182fd5b823561240c8161300d565b946020939093013593505050565b60006020828403121561242b578081fd5b81356116c181613022565b600060208284031215612447578081fd5b81516116c181613022565b600060208284031215612463578081fd5b813567ffffffffffffffff811115612479578182fd5b8201601f81018413612489578182fd5b6113958482356020840161223d565b6000602082840312156124a9578081fd5b5035919050565b600081518084526124c8816020860160208601612f35565b601f01601f19169290920160200192915050565b600083516124ee818460208801612f35565b835190830190612502818360208801612f35565b01949350505050565b6000825161251d818460208701612f35565b64173539b7b760d91b920191825250600501919050565b90565b93845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125c4908301846124b0565b9695505050505050565b901515815260200190565b6000602082526116c160208301846124b0565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269081bd988159bdcd3919560b21b606082015260800190565b60208082526017908201527f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602b908201527f457863656564656420746f6b656e7320616c6c6f636174696f6e20666f72207460408201526a65616d206d656d6265727360a81b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252603a908201527f5075626c69632073616c65206d7573742062652061637469766520746f206d6960408201527f6e74206d756c7469706c6520746f6b656e73206174206f6e6365000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526031908201527f5465616d2073616c65206d7573742062652061637469766520746f206d696e746040820152701030b99030903a32b0b69036b2b6b132b960791b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601190820152702737ba1030903a32b0b69036b2b6b132b960791b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601e908201527f496e73756666696369656e742066756e647320746f2070757263686173650000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60008219821115612ee657612ee6612fcb565b500190565b600082612efa57612efa612fe1565b500490565b6000816000190483118215151615612f1957612f19612fcb565b500290565b600082821015612f3057612f30612fcb565b500390565b60005b83811015612f50578181015183820152602001612f38565b8381111561113c5750506000910152565b600281046001821680612f7557607f821691505b60208210811415612f9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fb057612fb0612fcb565b5060010190565b600082612fc657612fc6612fe1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112a457600080fd5b6001600160e01b0319811681146112a457600080fdfea2646970667358221220b2f39366c0af3aace67eb62dcac84f5802178fbb69eec1b95ac6becbec80dada64736f6c6343000800003368747470733a2f2f697066732e696f2f697066732f516d556568324b53456e656878444170473238657036657a4570556a363473717a474a394d657147545670505a332f

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636a61e5fc11610139578063a0bcfc7f116100b6578063ce7c2ac21161007a578063ce7c2ac214610696578063d79779b2146106b6578063e33b7de3146106d6578063e985e9c5146106eb578063ec8db8171461070b578063f2fde38b146107205761029c565b8063a0bcfc7f14610601578063a22cb46514610621578063b88d4fde14610641578063bf98081b14610661578063c87b56dd146106765761029c565b80638da5cb5b116100fd5780638da5cb5b1461058f57806395d89b41146105a45780639852595c146105b95780639cb5fece146105d95780639f214ba7146105ec5761029c565b80636a61e5fc146105055780636c0360eb1461052557806370a082311461053a578063715018a61461055a5780638b83209b1461056f5761029c565b80632f745c59116101d257806340bad3771161019657806340bad3771461046857806342842e0e1461047b5780634b94f50e1461049b5780634f6ccce7146104b05780635c975abb146104d05780636352211e146104e55761029c565b80632f745c59146103e957806330571c581461040957806333bc1c5c1461042957806336566f061461043e5780633a98ef39146104535761029c565b806318160ddd1161021957806318160ddd1461036a578063191655871461037f5780632316b4da1461039f57806323b872dd146103b4578063289eff46146103d45761029c565b806301ffc9a7146102a1578063031bd4c4146102d757806306fdde03146102f9578063081812fc1461031b578063095ea7b3146103485761029c565b3661029c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610283610740565b34604051610292929190612578565b60405180910390a1005b600080fd5b3480156102ad57600080fd5b506102c16102bc36600461241a565b610744565b6040516102ce91906125ce565b60405180910390f35b3480156102e357600080fd5b506102ec610757565b6040516102ce9190612eca565b34801561030557600080fd5b5061030e61075d565b6040516102ce91906125d9565b34801561032757600080fd5b5061033b610336366004612498565b6107ef565b6040516102ce9190612564565b34801561035457600080fd5b506103686103633660046123ef565b61083b565b005b34801561037657600080fd5b506102ec6108d3565b34801561038b57600080fd5b5061036861039a3660046122ad565b6108d9565b3480156103ab57600080fd5b506103686109e7565b3480156103c057600080fd5b506103686103cf366004612301565b610a3f565b3480156103e057600080fd5b50610368610a77565b3480156103f557600080fd5b506102ec6104043660046123ef565b610ad3565b34801561041557600080fd5b50610368610424366004612498565b610b25565b34801561043557600080fd5b506102c1610b69565b34801561044a57600080fd5b50610368610b72565b34801561045f57600080fd5b506102ec610bd3565b610368610476366004612498565b610bd9565b34801561048757600080fd5b50610368610496366004612301565b610ce2565b3480156104a757600080fd5b506102ec610cfd565b3480156104bc57600080fd5b506102ec6104cb366004612498565b610d03565b3480156104dc57600080fd5b506102c1610d5e565b3480156104f157600080fd5b5061033b610500366004612498565b610d6e565b34801561051157600080fd5b50610368610520366004612498565b610da3565b34801561053157600080fd5b5061030e610de7565b34801561054657600080fd5b506102ec6105553660046122ad565b610e75565b34801561056657600080fd5b50610368610eb9565b34801561057b57600080fd5b5061033b61058a366004612498565b610f02565b34801561059b57600080fd5b5061033b610f40565b3480156105b057600080fd5b5061030e610f4f565b3480156105c557600080fd5b506102ec6105d43660046122ad565b610f5e565b6103686105e7366004612498565b610f79565b3480156105f857600080fd5b506102c161108d565b34801561060d57600080fd5b5061036861061c366004612452565b61109b565b34801561062d57600080fd5b5061036861063c3660046123be565b6110f1565b34801561064d57600080fd5b5061036861065c366004612341565b611103565b34801561066d57600080fd5b506102ec611142565b34801561068257600080fd5b5061030e610691366004612498565b611148565b3480156106a257600080fd5b506102ec6106b13660046122ad565b611179565b3480156106c257600080fd5b506102ec6106d13660046122ad565b611194565b3480156106e257600080fd5b506102ec6111af565b3480156106f757600080fd5b506102c16107063660046122c9565b6111b5565b34801561071757600080fd5b506103686111e3565b34801561072c57600080fd5b5061036861073b3660046122ad565b611236565b3390565b600061074f826112a7565b90505b919050565b61270f81565b60606000805461076c90612f61565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612f61565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa826112cc565b61081f5760405162461bcd60e51b815260040161081690612c3a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084682610d6e565b9050806001600160a01b0316836001600160a01b0316141561087a5760405162461bcd60e51b815260040161081690612d7e565b806001600160a01b031661088c610740565b6001600160a01b031614806108a857506108a881610706610740565b6108c45760405162461bcd60e51b815260040161081690612a16565b6108ce83836112e9565b505050565b60095490565b6001600160a01b0381166000908152600e602052604090205461090e5760405162461bcd60e51b815260040161081690612800565b60006109186111af565b6109229047612ed3565b90506000610939838361093486610f5e565b611357565b9050806109585760405162461bcd60e51b8152600401610816906129a1565b6001600160a01b0383166000908152600f602052604081208054839290610980908490612ed3565b9250508190555080600d60008282546109999190612ed3565b909155506109a99050838261139d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516109da929190612578565b60405180910390a1505050565b6109ef610740565b6001600160a01b0316610a00610f40565b6001600160a01b031614610a265760405162461bcd60e51b815260040161081690612cb1565b6016805460ff19166001179055610a3d6014610b25565b565b610a50610a4a610740565b82611439565b610a6c5760405162461bcd60e51b815260040161081690612dbf565b6108ce8383836114b6565b610a7f610740565b6001600160a01b0316610a90610f40565b6001600160a01b031614610ab65760405162461bcd60e51b815260040161081690612cb1565b6016805461ff001981166101009182900460ff1615909102179055565b6000610ade83610e75565b8210610afc5760405162461bcd60e51b81526004016108169061269b565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610b2d610740565b6001600160a01b0316610b3e610f40565b6001600160a01b031614610b645760405162461bcd60e51b815260040161081690612cb1565b601555565b60165460ff1681565b610b7a610740565b6001600160a01b0316610b8b610f40565b6001600160a01b031614610bb15760405162461bcd60e51b815260040161081690612cb1565b610bb9610d5e565b15610bcb57610bc66115e3565b610a3d565b610a3d611654565b600c5490565b60026013541415610bfc5760405162461bcd60e51b815260040161081690612e93565b600260135561270f610c1682610c106108d3565b906116b5565b1115610c345760405162461bcd60e51b8152600401610816906125ec565b601654610100900460ff16610c5b5760405162461bcd60e51b815260040161081690612b63565b6103e8610c666108d3565b10610c835760405162461bcd60e51b8152600401610816906127b5565b336000908152612728602052604090205460ff16610cb35760405162461bcd60e51b815260040161081690612c86565b60005b81811015610cd957610cc7336116c8565b80610cd181612f9c565b915050610cb6565b50506001601355565b6108ce83838360405180602001604052806000815250611103565b60145490565b6000610d0d6108d3565b8210610d2b5760405162461bcd60e51b815260040161081690612e10565b60098281548110610d4c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b03168061074f5760405162461bcd60e51b815260040161081690612b1a565b610dab610740565b6001600160a01b0316610dbc610f40565b6001600160a01b031614610de25760405162461bcd60e51b815260040161081690612cb1565b601455565b60188054610df490612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2090612f61565b8015610e6d5780601f10610e4257610100808354040283529160200191610e6d565b820191906000526020600020905b815481529060010190602001808311610e5057829003601f168201915b505050505081565b60006001600160a01b038216610e9d5760405162461bcd60e51b815260040161081690612ad0565b506001600160a01b031660009081526003602052604090205490565b610ec1610740565b6001600160a01b0316610ed2610f40565b6001600160a01b031614610ef85760405162461bcd60e51b815260040161081690612cb1565b610a3d60006116de565b600060108281548110610f2557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b600b546001600160a01b031690565b60606001805461076c90612f61565b6001600160a01b03166000908152600f602052604090205490565b60026013541415610f9c5760405162461bcd60e51b815260040161081690612e93565b6002601355610fa9610d5e565b15610fc65760405162461bcd60e51b8152600401610816906129ec565b61270f610fd582610c106108d3565b1115610ff35760405162461bcd60e51b8152600401610816906125ec565b60165460ff166110155760405162461bcd60e51b815260040161081690612a73565b6015548111156110375760405162461bcd60e51b815260040161081690612636565b3461104a82611044610cfd565b90611730565b146110675760405162461bcd60e51b815260040161081690612e5c565b60005b81811015610cd95761107b336116c8565b8061108581612f9c565b91505061106a565b601654610100900460ff1681565b6110a3610740565b6001600160a01b03166110b4610f40565b6001600160a01b0316146110da5760405162461bcd60e51b815260040161081690612cb1565b80516110ed9060189060208401906121a4565b5050565b6110ed6110fc610740565b838361173c565b61111461110e610740565b83611439565b6111305760405162461bcd60e51b815260040161081690612dbf565b61113c848484846117df565b50505050565b60155490565b606061115382611812565b604051602001611163919061250b565b6040516020818303038152906040529050919050565b6001600160a01b03166000908152600e602052604090205490565b6001600160a01b031660009081526011602052604090205490565b600d5490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111eb610740565b6001600160a01b03166111fc610f40565b6001600160a01b0316146112225760405162461bcd60e51b815260040161081690612cb1565b6016805460ff19169055610a3d6001610b25565b61123e610740565b6001600160a01b031661124f610f40565b6001600160a01b0316146112755760405162461bcd60e51b815260040161081690612cb1565b6001600160a01b03811661129b5760405162461bcd60e51b815260040161081690612738565b6112a4816116de565b50565b60006001600160e01b0319821663780e9d6360e01b148061074f575061074f8261192b565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061131e82610d6e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600c546001600160a01b0384166000908152600e6020526040812054909183916113819086612eff565b61138b9190612eeb565b6113959190612f1e565b949350505050565b804710156113bd5760405162461bcd60e51b81526004016108169061291e565b6000826001600160a01b0316826040516113d690612534565b60006040518083038185875af1925050503d8060008114611413576040519150601f19603f3d011682016040523d82523d6000602084013e611418565b606091505b50509050806108ce5760405162461bcd60e51b8152600401610816906128c1565b6000611444826112cc565b6114605760405162461bcd60e51b815260040161081690612955565b600061146b83610d6e565b9050806001600160a01b0316846001600160a01b031614806114a65750836001600160a01b031661149b846107ef565b6001600160a01b0316145b80611395575061139581856111b5565b826001600160a01b03166114c982610d6e565b6001600160a01b0316146114ef5760405162461bcd60e51b815260040161081690612ce6565b6001600160a01b0382166115155760405162461bcd60e51b815260040161081690612846565b61152083838361196b565b61152b6000826112e9565b6001600160a01b0383166000908152600360205260408120805460019290611554908490612f1e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611582908490612ed3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115eb610d5e565b6116075760405162461bcd60e51b81526004016108169061266d565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61163d610740565b60405161164a9190612564565b60405180910390a1565b61165c610d5e565b156116795760405162461bcd60e51b8152600401610816906129ec565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861163d610740565b60006116c18284612ed3565b9392505050565b60006116d2611976565b90506110ed8282611b0b565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116c18284612eff565b816001600160a01b0316836001600160a01b0316141561176e5760405162461bcd60e51b81526004016108169061288a565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906117d29085906125ce565b60405180910390a3505050565b6117ea8484846114b6565b6117f684848484611b25565b61113c5760405162461bcd60e51b8152600401610816906126e6565b606061181d826112cc565b6118395760405162461bcd60e51b815260040161081690612be9565b6000828152600660205260408120805461185290612f61565b80601f016020809104026020016040519081016040528092919081815260200182805461187e90612f61565b80156118cb5780601f106118a0576101008083540402835291602001916118cb565b820191906000526020600020905b8154815290600101906020018083116118ae57829003601f168201915b5050505050905060006118dc611c40565b90508051600014156118f057509050610752565b81511561192257808260405160200161190a9291906124dc565b60405160208183030381529060405292505050610752565b61139584611c4f565b60006001600160e01b031982166380ac58cd60e01b148061195c57506001600160e01b03198216635b5e139f60e01b145b8061074f575061074f82611cd1565b6108ce838383611cea565b6000806119816108d3565b61198d9061270f612f1e565b90506000816017543344426040516020016119ab9493929190612537565b6040516020818303038152906040528051906020012060001c6119ce9190612fb7565b9050600060198261270f81106119f457634e487b7160e01b600052603260045260246000fd5b015415611a265760198261270f8110611a1d57634e487b7160e01b600052603260045260246000fd5b01549050611a29565b50805b6019611a36600185612f1e565b61270f8110611a5557634e487b7160e01b600052603260045260246000fd5b0154611a8f57611a66600184612f1e565b60198361270f8110611a8857634e487b7160e01b600052603260045260246000fd5b0155611ae2565b6019611a9c600185612f1e565b61270f8110611abb57634e487b7160e01b600052603260045260246000fd5b015460198361270f8110611adf57634e487b7160e01b600052603260045260246000fd5b01555b60178054906000611af283612f9c565b90915550611b0390508160016116b5565b935050505090565b6110ed828260405180602001604052806000815250611d73565b6000611b39846001600160a01b0316611da6565b15611c3557836001600160a01b031663150b7a02611b55610740565b8786866040518563ffffffff1660e01b8152600401611b779493929190612591565b602060405180830381600087803b158015611b9157600080fd5b505af1925050508015611bc1575060408051601f3d908101601f19168201909252611bbe91810190612436565b60015b611c1b573d808015611bef576040519150601f19603f3d011682016040523d82523d6000602084013e611bf4565b606091505b508051611c135760405162461bcd60e51b8152600401610816906126e6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611395565b506001949350505050565b60606018805461076c90612f61565b6060611c5a826112cc565b611c765760405162461bcd60e51b815260040161081690612d2f565b6000611c80611c40565b90506000815111611ca057604051806020016040528060008152506116c1565b80611caa84611dac565b604051602001611cbb9291906124dc565b6040516020818303038152906040529392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611cf58383836108ce565b6001600160a01b038316611d1157611d0c81611ec7565b611d34565b816001600160a01b0316836001600160a01b031614611d3457611d348382611f0b565b6001600160a01b038216611d5057611d4b81611fa8565b6108ce565b826001600160a01b0316826001600160a01b0316146108ce576108ce8282612081565b611d7d83836120c5565b611d8a6000848484611b25565b6108ce5760405162461bcd60e51b8152600401610816906126e6565b3b151590565b606081611dd157506040805180820190915260018152600360fc1b6020820152610752565b8160005b8115611dfb5780611de581612f9c565b9150611df49050600a83612eeb565b9150611dd5565b60008167ffffffffffffffff811115611e2457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e4e576020820181803683370190505b5090505b841561139557611e63600183612f1e565b9150611e70600a86612fb7565b611e7b906030612ed3565b60f81b818381518110611e9e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ec0600a86612eeb565b9450611e52565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611f1884610e75565b611f229190612f1e565b600083815260086020526040902054909150808214611f75576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611fba90600190612f1e565b6000838152600a602052604081205460098054939450909284908110611ff057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061201f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061206557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061208c83610e75565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166120eb5760405162461bcd60e51b815260040161081690612bb4565b6120f4816112cc565b156121115760405162461bcd60e51b81526004016108169061277e565b61211d6000838361196b565b6001600160a01b0382166000908152600360205260408120805460019290612146908490612ed3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121b090612f61565b90600052602060002090601f0160209004810192826121d25760008555612218565b82601f106121eb57805160ff1916838001178555612218565b82800160010185558215612218579182015b828111156122185782518255916020019190600101906121fd565b50612224929150612228565b5090565b5b808211156122245760008155600101612229565b600067ffffffffffffffff8084111561225857612258612ff7565b604051601f8501601f19168101602001828111828210171561227c5761227c612ff7565b60405284815291508183850186101561229457600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156122be578081fd5b81356116c18161300d565b600080604083850312156122db578081fd5b82356122e68161300d565b915060208301356122f68161300d565b809150509250929050565b600080600060608486031215612315578081fd5b83356123208161300d565b925060208401356123308161300d565b929592945050506040919091013590565b60008060008060808587031215612356578081fd5b84356123618161300d565b935060208501356123718161300d565b925060408501359150606085013567ffffffffffffffff811115612393578182fd5b8501601f810187136123a3578182fd5b6123b28782356020840161223d565b91505092959194509250565b600080604083850312156123d0578182fd5b82356123db8161300d565b9150602083013580151581146122f6578182fd5b60008060408385031215612401578182fd5b823561240c8161300d565b946020939093013593505050565b60006020828403121561242b578081fd5b81356116c181613022565b600060208284031215612447578081fd5b81516116c181613022565b600060208284031215612463578081fd5b813567ffffffffffffffff811115612479578182fd5b8201601f81018413612489578182fd5b6113958482356020840161223d565b6000602082840312156124a9578081fd5b5035919050565b600081518084526124c8816020860160208601612f35565b601f01601f19169290920160200192915050565b600083516124ee818460208801612f35565b835190830190612502818360208801612f35565b01949350505050565b6000825161251d818460208701612f35565b64173539b7b760d91b920191825250600501919050565b90565b93845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125c4908301846124b0565b9695505050505050565b901515815260200190565b6000602082526116c160208301846124b0565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269081bd988159bdcd3919560b21b606082015260800190565b60208082526017908201527f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602b908201527f457863656564656420746f6b656e7320616c6c6f636174696f6e20666f72207460408201526a65616d206d656d6265727360a81b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252603a908201527f5075626c69632073616c65206d7573742062652061637469766520746f206d6960408201527f6e74206d756c7469706c6520746f6b656e73206174206f6e6365000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526031908201527f5465616d2073616c65206d7573742062652061637469766520746f206d696e746040820152701030b99030903a32b0b69036b2b6b132b960791b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601190820152702737ba1030903a32b0b69036b2b6b132b960791b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601e908201527f496e73756666696369656e742066756e647320746f2070757263686173650000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60008219821115612ee657612ee6612fcb565b500190565b600082612efa57612efa612fe1565b500490565b6000816000190483118215151615612f1957612f19612fcb565b500290565b600082821015612f3057612f30612fcb565b500390565b60005b83811015612f50578181015183820152602001612f38565b8381111561113c5750506000910152565b600281046001821680612f7557607f821691505b60208210811415612f9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fb057612fb0612fcb565b5060010190565b600082612fc657612fc6612fe1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112a457600080fd5b6001600160e01b0319811681146112a457600080fdfea2646970667358221220b2f39366c0af3aace67eb62dcac84f5802178fbb69eec1b95ac6becbec80dada64736f6c63430008000033

Deployed Bytecode Sourcemap

71887:6126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35935:40;35951:12;:10;:12::i;:::-;35965:9;35935:40;;;;;;;:::i;:::-;;;;;;;;71887:6126;;;;;74184:171;;;;;;;;;;-1:-1:-1;74184:171:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72081:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51147:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;52706:221::-;;;;;;;;;;-1:-1:-1;52706:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52229:411::-;;;;;;;;;;-1:-1:-1;52229:411:0;;;;;:::i;:::-;;:::i;:::-;;66298:113;;;;;;;;;;;;;:::i;37421:566::-;;;;;;;;;;-1:-1:-1;37421:566:0;;;;;:::i;:::-;;:::i;75232:114::-;;;;;;;;;;;;;:::i;53456:339::-;;;;;;;;;;-1:-1:-1;53456:339:0;;;;;:::i;:::-;;:::i;75531:82::-;;;;;;;;;;;;;:::i;65966:256::-;;;;;;;;;;-1:-1:-1;65966:256:0;;;;;:::i;:::-;;:::i;75059:105::-;;;;;;;;;;-1:-1:-1;75059:105:0;;;;;:::i;:::-;;:::i;72392:30::-;;;;;;;;;;;;;:::i;74734:143::-;;;;;;;;;;;;;:::i;36066:91::-;;;;;;;;;;;;;:::i;77464:546::-;;;;;;:::i;:::-;;:::i;53866:185::-;;;;;;;;;;-1:-1:-1;53866:185:0;;;;;:::i;:::-;;:::i;74390:91::-;;;;;;;;;;;;;:::i;66488:233::-;;;;;;;;;;-1:-1:-1;66488:233:0;;;;;:::i;:::-;;:::i;16831:86::-;;;;;;;;;;;;;:::i;50841:239::-;;;;;;;;;;-1:-1:-1;50841:239:0;;;;;:::i;:::-;;:::i;74516:95::-;;;;;;;;;;-1:-1:-1;74516:95:0;;;;;:::i;:::-;;:::i;72654:94::-;;;;;;;;;;;;;:::i;50571:208::-;;;;;;;;;;-1:-1:-1;50571:208:0;;;;;:::i;:::-;;:::i;19730:103::-;;;;;;;;;;;;;:::i;37121:100::-;;;;;;;;;;-1:-1:-1;37121:100:0;;;;;:::i;:::-;;:::i;19079:87::-;;;;;;;;;;;;;:::i;51316:104::-;;;;;;;;;;;;;:::i;36917:109::-;;;;;;;;;;-1:-1:-1;36917:109:0;;;;;:::i;:::-;;:::i;76746:575::-;;;;;;:::i;:::-;;:::i;72535:28::-;;;;;;;;;;;;;:::i;75621:92::-;;;;;;;;;;-1:-1:-1;75621:92:0;;;;;:::i;:::-;;:::i;52999:155::-;;;;;;;;;;-1:-1:-1;52999:155:0;;;;;:::i;:::-;;:::i;54122:328::-;;;;;;;;;;-1:-1:-1;54122:328:0;;;;;:::i;:::-;;:::i;74917:102::-;;;;;;;;;;;;;:::i;73691:198::-;;;;;;;;;;-1:-1:-1;73691:198:0;;;;;:::i;:::-;;:::i;36713:105::-;;;;;;;;;;-1:-1:-1;36713:105:0;;;;;:::i;:::-;;:::i;36503:119::-;;;;;;;;;;-1:-1:-1;36503:119:0;;;;;:::i;:::-;;:::i;36251:95::-;;;;;;;;;;;;;:::i;53225:164::-;;;;;;;;;;-1:-1:-1;53225:164:0;;;;;:::i;:::-;;:::i;75383:115::-;;;;;;;;;;;;;:::i;19988:201::-;;;;;;;;;;-1:-1:-1;19988:201:0;;;;;:::i;:::-;;:::i;15485:98::-;15565:10;15485:98;:::o;74184:171::-;74287:4;74311:36;74335:11;74311:23;:36::i;:::-;74304:43;;74184:171;;;;:::o;72081:42::-;72119:4;72081:42;:::o;51147:100::-;51201:13;51234:5;51227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51147:100;:::o;52706:221::-;52782:7;52810:16;52818:7;52810;:16::i;:::-;52802:73;;;;-1:-1:-1;;;52802:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;52895:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;52895:24:0;;52706:221::o;52229:411::-;52310:13;52326:23;52341:7;52326:14;:23::i;:::-;52310:39;;52374:5;-1:-1:-1;;;;;52368:11:0;:2;-1:-1:-1;;;;;52368:11:0;;;52360:57;;;;-1:-1:-1;;;52360:57:0;;;;;;;:::i;:::-;52468:5;-1:-1:-1;;;;;52452:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;52452:21:0;;:62;;;;52477:37;52494:5;52501:12;:10;:12::i;52477:37::-;52430:168;;;;-1:-1:-1;;;52430:168:0;;;;;;;:::i;:::-;52611:21;52620:2;52624:7;52611:8;:21::i;:::-;52229:411;;;:::o;66298:113::-;66386:10;:17;66298:113;:::o;37421:566::-;-1:-1:-1;;;;;37497:16:0;;37516:1;37497:16;;;:7;:16;;;;;;37489:71;;;;-1:-1:-1;;;37489:71:0;;;;;;;:::i;:::-;37573:21;37621:15;:13;:15::i;:::-;37597:39;;:21;:39;:::i;:::-;37573:63;;37647:15;37665:58;37681:7;37690:13;37705:17;37714:7;37705:8;:17::i;:::-;37665:15;:58::i;:::-;37647:76;-1:-1:-1;37744:12:0;37736:68;;;;-1:-1:-1;;;37736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37817:18:0;;;;;;:9;:18;;;;;:29;;37839:7;;37817:18;:29;;37839:7;;37817:29;:::i;:::-;;;;;;;;37875:7;37857:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;37895:35:0;;-1:-1:-1;37913:7:0;37922;37895:17;:35::i;:::-;37946:33;37962:7;37971;37946:33;;;;;;;:::i;:::-;;;;;;;;37421:566;;;:::o;75232:114::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;75288:10:::1;:17:::0;;-1:-1:-1;;75288:17:0::1;75301:4;75288:17;::::0;;75316:22:::1;75335:2;75316:18;:22::i;:::-;75232:114::o:0;53456:339::-;53651:41;53670:12;:10;:12::i;:::-;53684:7;53651:18;:41::i;:::-;53643:103;;;;-1:-1:-1;;;53643:103:0;;;;;;;:::i;:::-;53759:28;53769:4;53775:2;53779:7;53759:9;:28::i;75531:82::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;75597:8:::1;::::0;;-1:-1:-1;;75585:20:0;::::1;75597:8;::::0;;;::::1;;;75596:9;75585:20:::0;;::::1;;::::0;;75531:82::o;65966:256::-;66063:7;66099:23;66116:5;66099:16;:23::i;:::-;66091:5;:31;66083:87;;;;-1:-1:-1;;;66083:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;66188:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;65966:256::o;75059:105::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;75131:16:::1;:25:::0;75059:105::o;72392:30::-;;;;;;:::o;74734:143::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;74790:8:::1;:6;:8::i;:::-;74786:84;;;74811:10;:8;:10::i;:::-;74786:84;;;74850:8;:6;:8::i;36066:91::-:0;36137:12;;36066:91;:::o;77464:546::-;8839:1;9437:7;;:19;;9429:63;;;;-1:-1:-1;;;9429:63:0;;;;;;;:::i;:::-;8839:1;9570:7;:18;72119:4:::1;77560:26;77578:7:::0;77560:13:::1;:11;:13::i;:::-;:17:::0;::::1;:26::i;:::-;:41;;77552:96;;;;-1:-1:-1::0;;;77552:96:0::1;;;;;;;:::i;:::-;77667:8;::::0;::::1;::::0;::::1;;;77659:70;;;;-1:-1:-1::0;;;77659:70:0::1;;;;;;;:::i;:::-;77764:4;77748:13;:11;:13::i;:::-;:20;77740:76;;;;-1:-1:-1::0;;;77740:76:0::1;;;;;;;:::i;:::-;77862:10;77835:39;::::0;;;:18:::1;:39;::::0;;;;;::::1;;77827:69;;;;-1:-1:-1::0;;;77827:69:0::1;;;;;;;:::i;:::-;77913:9;77909:94;77932:7;77928:1;:11;77909:94;;;77957:34;77980:10;77957:22;:34::i;:::-;77941:3:::0;::::1;::::0;::::1;:::i;:::-;;;;77909:94;;;-1:-1:-1::0;;8795:1:0;9749:7;:22;77464:546::o;53866:185::-;54004:39;54021:4;54027:2;54031:7;54004:39;;;;;;;;;;;;:16;:39::i;74390:91::-;74462:11;;74390:91;:::o;66488:233::-;66563:7;66599:30;:28;:30::i;:::-;66591:5;:38;66583:95;;;;-1:-1:-1;;;66583:95:0;;;;;;;:::i;:::-;66696:10;66707:5;66696:17;;;;;;-1:-1:-1;;;66696:17:0;;;;;;;;;;;;;;;;;66689:24;;66488:233;;;:::o;16831:86::-;16902:7;;-1:-1:-1;;;16902:7:0;;;;;16831:86::o;50841:239::-;50913:7;50949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50949:16:0;50984:19;50976:73;;;;-1:-1:-1;;;50976:73:0;;;;;;;:::i;74516:95::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;74583:11:::1;:20:::0;74516:95::o;72654:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50571:208::-;50643:7;-1:-1:-1;;;;;50671:19:0;;50663:74;;;;-1:-1:-1;;;50663:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;50755:16:0;;;;;:9;:16;;;;;;;50571:208::o;19730:103::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;19795:30:::1;19822:1;19795:18;:30::i;37121:100::-:0;37172:7;37199;37207:5;37199:14;;;;;;-1:-1:-1;;;37199:14:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37199:14:0;;37121:100;-1:-1:-1;;37121:100:0:o;19079:87::-;19152:6;;-1:-1:-1;;;;;19152:6:0;19079:87;:::o;51316:104::-;51372:13;51405:7;51398:14;;;;;:::i;36917:109::-;-1:-1:-1;;;;;37000:18:0;36973:7;37000:18;;;:9;:18;;;;;;;36917:109::o;76746:575::-;8839:1;9437:7;;:19;;9429:63;;;;-1:-1:-1;;;9429:63:0;;;;;;;:::i;:::-;8839:1;9570:7;:18;17157:8:::1;:6;:8::i;:::-;17156:9;17148:38;;;;-1:-1:-1::0;;;17148:38:0::1;;;;;;;:::i;:::-;72119:4:::2;76858:26;76876:7;76858:13;:11;:13::i;:26::-;:41;;76850:96;;;;-1:-1:-1::0;;;76850:96:0::2;;;;;;;:::i;:::-;76965:10;::::0;::::2;;76957:81;;;;-1:-1:-1::0;;;76957:81:0::2;;;;;;;:::i;:::-;77068:16;;77057:7;:27;;77049:63;;;;-1:-1:-1::0;;;77049:63:0::2;;;;;;;:::i;:::-;77163:9;77131:28;77151:7;77131:15;:13;:15::i;:::-;:19:::0;::::2;:28::i;:::-;:41;77123:84;;;;-1:-1:-1::0;;;77123:84:0::2;;;;;;;:::i;:::-;77224:9;77220:94;77243:7;77239:1;:11;77220:94;;;77268:34;77291:10;77268:22;:34::i;:::-;77252:3:::0;::::2;::::0;::::2;:::i;:::-;;;;77220:94;;72535:28:::0;;;;;;;;;:::o;75621:92::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;75691:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;75621:92:::0;:::o;52999:155::-;53094:52;53113:12;:10;:12::i;:::-;53127:8;53137;53094:18;:52::i;54122:328::-;54297:41;54316:12;:10;:12::i;:::-;54330:7;54297:18;:41::i;:::-;54289:103;;;;-1:-1:-1;;;54289:103:0;;;;;;;:::i;:::-;54403:39;54417:4;54423:2;54427:7;54436:5;54403:13;:39::i;:::-;54122:328;;;;:::o;74917:102::-;74995:16;;74917:102;:::o;73691:198::-;73790:13;73847:23;73862:7;73847:14;:23::i;:::-;73830:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;73816:65;;73691:198;;;:::o;36713:105::-;-1:-1:-1;;;;;36794:16:0;36767:7;36794:16;;;:7;:16;;;;;;;36713:105::o;36503:119::-;-1:-1:-1;;;;;36588:26:0;36561:7;36588:26;;;:19;:26;;;;;;;36503:119::o;36251:95::-;36324:14;;36251:95;:::o;53225:164::-;-1:-1:-1;;;;;53346:25:0;;;53322:4;53346:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;53225:164::o;75383:115::-;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;75440:10:::1;:18:::0;;-1:-1:-1;;75440:18:0::1;::::0;;75469:21:::1;75440:18:::0;75469::::1;:21::i;19988:201::-:0;19310:12;:10;:12::i;:::-;-1:-1:-1;;;;;19299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19299:23:0;;19291:68;;;;-1:-1:-1;;;19291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20077:22:0;::::1;20069:73;;;;-1:-1:-1::0;;;20069:73:0::1;;;;;;;:::i;:::-;20153:28;20172:8;20153:18;:28::i;:::-;19988:201:::0;:::o;65658:224::-;65760:4;-1:-1:-1;;;;;;65784:50:0;;-1:-1:-1;;;65784:50:0;;:90;;;65838:36;65862:11;65838:23;:36::i;55960:127::-;56025:4;56049:16;;;:7;:16;;;;;;-1:-1:-1;;;;;56049:16:0;:30;;;55960:127::o;59942:174::-;60017:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;60017:29:0;-1:-1:-1;;;;;60017:29:0;;;;;;;;:24;;60071:23;60017:24;60071:14;:23::i;:::-;-1:-1:-1;;;;;60062:46:0;;;;;;;;;;;59942:174;;:::o;38165:248::-;38375:12;;-1:-1:-1;;;;;38355:16:0;;38311:7;38355:16;;;:7;:16;;;;;;38311:7;;38390:15;;38339:32;;:13;:32;:::i;:::-;38338:49;;;;:::i;:::-;:67;;;;:::i;:::-;38331:74;38165:248;-1:-1:-1;;;;38165:248:0:o;22689:317::-;22804:6;22779:21;:31;;22771:73;;;;-1:-1:-1;;;22771:73:0;;;;;;;:::i;:::-;22858:12;22876:9;-1:-1:-1;;;;;22876:14:0;22898:6;22876:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22857:52;;;22928:7;22920:78;;;;-1:-1:-1;;;22920:78:0;;;;;;;:::i;56254:348::-;56347:4;56372:16;56380:7;56372;:16::i;:::-;56364:73;;;;-1:-1:-1;;;56364:73:0;;;;;;;:::i;:::-;56448:13;56464:23;56479:7;56464:14;:23::i;:::-;56448:39;;56517:5;-1:-1:-1;;;;;56506:16:0;:7;-1:-1:-1;;;;;56506:16:0;;:51;;;;56550:7;-1:-1:-1;;;;;56526:31:0;:20;56538:7;56526:11;:20::i;:::-;-1:-1:-1;;;;;56526:31:0;;56506:51;:87;;;;56561:32;56578:5;56585:7;56561:16;:32::i;59246:578::-;59405:4;-1:-1:-1;;;;;59378:31:0;:23;59393:7;59378:14;:23::i;:::-;-1:-1:-1;;;;;59378:31:0;;59370:85;;;;-1:-1:-1;;;59370:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59474:16:0;;59466:65;;;;-1:-1:-1;;;59466:65:0;;;;;;;:::i;:::-;59544:39;59565:4;59571:2;59575:7;59544:20;:39::i;:::-;59648:29;59665:1;59669:7;59648:8;:29::i;:::-;-1:-1:-1;;;;;59690:15:0;;;;;;:9;:15;;;;;:20;;59709:1;;59690:15;:20;;59709:1;;59690:20;:::i;:::-;;;;-1:-1:-1;;;;;;;59721:13:0;;;;;;:9;:13;;;;;:18;;59738:1;;59721:13;:18;;59738:1;;59721:18;:::i;:::-;;;;-1:-1:-1;;59750:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;59750:21:0;-1:-1:-1;;;;;59750:21:0;;;;;;;;;59789:27;;59750:16;;59789:27;;;;;;;59246:578;;;:::o;17890:120::-;17434:8;:6;:8::i;:::-;17426:41;;;;-1:-1:-1;;;17426:41:0;;;;;;;:::i;:::-;17949:7:::1;:15:::0;;-1:-1:-1;;;;17949:15:0::1;::::0;;17980:22:::1;17989:12;:10;:12::i;:::-;17980:22;;;;;;:::i;:::-;;;;;;;;17890:120::o:0;17631:118::-;17157:8;:6;:8::i;:::-;17156:9;17148:38;;;;-1:-1:-1;;;17148:38:0;;;;;;;:::i;:::-;17691:7:::1;:14:::0;;-1:-1:-1;;;;17691:14:0::1;-1:-1:-1::0;;;17691:14:0::1;::::0;;17721:20:::1;17728:12;:10;:12::i;2862:98::-:0;2920:7;2947:5;2951:1;2947;:5;:::i;:::-;2940:12;2862:98;-1:-1:-1;;;2862:98:0:o;76527:136::-;76591:13;76607;:11;:13::i;:::-;76591:29;;76631:24;76641:3;76646:8;76631:9;:24::i;20349:191::-;20442:6;;;-1:-1:-1;;;;;20459:17:0;;;-1:-1:-1;;;;;;20459:17:0;;;;;;;20492:40;;20442:6;;;20459:17;20442:6;;20492:40;;20423:16;;20492:40;20349:191;;:::o;3600:98::-;3658:7;3685:5;3689:1;3685;:5;:::i;60258:315::-;60413:8;-1:-1:-1;;;;;60404:17:0;:5;-1:-1:-1;;;;;60404:17:0;;;60396:55;;;;-1:-1:-1;;;60396:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60462:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;60462:46:0;;;;;;;60524:41;;;;;60462:46;;60524:41;:::i;:::-;;;;;;;;60258:315;;;:::o;55332:::-;55489:28;55499:4;55505:2;55509:7;55489:9;:28::i;:::-;55536:48;55559:4;55565:2;55569:7;55578:5;55536:22;:48::i;:::-;55528:111;;;;-1:-1:-1;;;55528:111:0;;;;;;;:::i;63153:679::-;63226:13;63260:16;63268:7;63260;:16::i;:::-;63252:78;;;;-1:-1:-1;;;63252:78:0;;;;;;;:::i;:::-;63343:23;63369:19;;;:10;:19;;;;;63343:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63399:18;63420:10;:8;:10::i;:::-;63399:31;;63512:4;63506:18;63528:1;63506:23;63502:72;;;-1:-1:-1;63553:9:0;-1:-1:-1;63546:16:0;;63502:72;63678:23;;:27;63674:108;;63753:4;63759:9;63736:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63722:48;;;;;;63674:108;63801:23;63816:7;63801:14;:23::i;50202:305::-;50304:4;-1:-1:-1;;;;;;50341:40:0;;-1:-1:-1;;;50341:40:0;;:105;;-1:-1:-1;;;;;;;50398:48:0;;-1:-1:-1;;;50398:48:0;50341:105;:158;;;;50463:36;50487:11;50463:23;:36::i;73946:181::-;74074:45;74101:4;74107:2;74111:7;74074:26;:45::i;75865:612::-;75906:7;75926:17;75960:13;:11;:13::i;:::-;75946:27;;72119:4;75946:27;:::i;:::-;75926:47;;75984:13;76090:9;76032:5;;76039:10;76051:16;76069:15;76015:70;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76005:81;;;;;;76000:87;;:99;;;;:::i;:::-;75984:115;;76110:13;76144:7;76152:5;76144:14;;;;;-1:-1:-1;;;76144:14:0;;;;;;;;;;;:19;76140:112;;76184:7;76192:5;76184:14;;;;;-1:-1:-1;;;76184:14:0;;;;;;;;;;;76176:22;;76140:112;;;-1:-1:-1;76235:5:0;76140:112;76268:7;76276:13;76288:1;76276:9;:13;:::i;:::-;76268:22;;;;;-1:-1:-1;;;76268:22:0;;;;;;;;;;;76264:154;;76325:13;76337:1;76325:9;:13;:::i;:::-;76308:7;76316:5;76308:14;;;;;-1:-1:-1;;;76308:14:0;;;;;;;;;;:30;76264:154;;;76384:7;76392:13;76404:1;76392:9;:13;:::i;:::-;76384:22;;;;;-1:-1:-1;;;76384:22:0;;;;;;;;;;;76367:7;76375:5;76367:14;;;;;-1:-1:-1;;;76367:14:0;;;;;;;;;;:39;76264:154;76430:5;:7;;;:5;:7;;;:::i;:::-;;;;-1:-1:-1;76457:12:0;;-1:-1:-1;76457:5:0;76467:1;76457:9;:12::i;:::-;76450:19;;;;;75865:612;:::o;56944:110::-;57020:26;57030:2;57034:7;57020:26;;;;;;;;;;;;:9;:26::i;61138:799::-;61293:4;61314:15;:2;-1:-1:-1;;;;;61314:13:0;;:15::i;:::-;61310:620;;;61366:2;-1:-1:-1;;;;;61350:36:0;;61387:12;:10;:12::i;:::-;61401:4;61407:7;61416:5;61350:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61350:72:0;;;;;;;;-1:-1:-1;;61350:72:0;;;;;;;;;;;;:::i;:::-;;;61346:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61592:13:0;;61588:272;;61635:60;;-1:-1:-1;;;61635:60:0;;;;;;;:::i;61588:272::-;61810:6;61804:13;61795:6;61791:2;61787:15;61780:38;61346:529;-1:-1:-1;;;;;;61473:51:0;-1:-1:-1;;;61473:51:0;;-1:-1:-1;61466:58:0;;61310:620;-1:-1:-1;61914:4:0;61138:799;;;;;;:::o;75721:108::-;75781:13;75814:7;75807:14;;;;;:::i;51491:334::-;51564:13;51598:16;51606:7;51598;:16::i;:::-;51590:76;;;;-1:-1:-1;;;51590:76:0;;;;;;;:::i;:::-;51679:21;51703:10;:8;:10::i;:::-;51679:34;;51755:1;51737:7;51731:21;:25;:86;;;;;;;;;;;;;;;;;51783:7;51792:18;:7;:16;:18::i;:::-;51766:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51724:93;51491:334;-1:-1:-1;;;51491:334:0:o;41898:157::-;-1:-1:-1;;;;;;42007:40:0;;-1:-1:-1;;;42007:40:0;41898:157;;;:::o;67334:589::-;67478:45;67505:4;67511:2;67515:7;67478:26;:45::i;:::-;-1:-1:-1;;;;;67540:18:0;;67536:187;;67575:40;67607:7;67575:31;:40::i;:::-;67536:187;;;67645:2;-1:-1:-1;;;;;67637:10:0;:4;-1:-1:-1;;;;;67637:10:0;;67633:90;;67664:47;67697:4;67703:7;67664:32;:47::i;:::-;-1:-1:-1;;;;;67737:16:0;;67733:183;;67770:45;67807:7;67770:36;:45::i;:::-;67733:183;;;67843:4;-1:-1:-1;;;;;67837:10:0;:2;-1:-1:-1;;;;;67837:10:0;;67833:83;;67864:40;67892:2;67896:7;67864:27;:40::i;57281:321::-;57411:18;57417:2;57421:7;57411:5;:18::i;:::-;57462:54;57493:1;57497:2;57501:7;57510:5;57462:22;:54::i;:::-;57440:154;;;;-1:-1:-1;;;57440:154:0;;;;;;;:::i;21367:387::-;21690:20;21738:8;;;21367:387::o;13047:723::-;13103:13;13324:10;13320:53;;-1:-1:-1;13351:10:0;;;;;;;;;;;;-1:-1:-1;;;13351:10:0;;;;;;13320:53;13398:5;13383:12;13439:78;13446:9;;13439:78;;13472:8;;;;:::i;:::-;;-1:-1:-1;13495:10:0;;-1:-1:-1;13503:2:0;13495:10;;:::i;:::-;;;13439:78;;;13527:19;13559:6;13549:17;;;;;;-1:-1:-1;;;13549:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13549:17:0;;13527:39;;13577:154;13584:10;;13577:154;;13611:11;13621:1;13611:11;;:::i;:::-;;-1:-1:-1;13680:10:0;13688:2;13680:5;:10;:::i;:::-;13667:24;;:2;:24;:::i;:::-;13654:39;;13637:6;13644;13637:14;;;;;;-1:-1:-1;;;13637:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13637:56:0;;;;;;;;-1:-1:-1;13708:11:0;13717:2;13708:11;;:::i;:::-;;;13577:154;;68646:164;68750:10;:17;;68723:24;;;;:15;:24;;;;;:44;;;68778:24;;;;;;;;;;;;68646:164::o;69437:988::-;69703:22;69753:1;69728:22;69745:4;69728:16;:22::i;:::-;:26;;;;:::i;:::-;69765:18;69786:26;;;:17;:26;;;;;;69703:51;;-1:-1:-1;69919:28:0;;;69915:328;;-1:-1:-1;;;;;69986:18:0;;69964:19;69986:18;;;:12;:18;;;;;;;;:34;;;;;;;;;70037:30;;;;;;:44;;;70154:30;;:17;:30;;;;;:43;;;69915:328;-1:-1:-1;70339:26:0;;;;:17;:26;;;;;;;;70332:33;;;-1:-1:-1;;;;;70383:18:0;;;;;:12;:18;;;;;:34;;;;;;;70376:41;69437:988::o;70720:1079::-;70998:10;:17;70973:22;;70998:21;;71018:1;;70998:21;:::i;:::-;71030:18;71051:24;;;:15;:24;;;;;;71424:10;:26;;70973:46;;-1:-1:-1;71051:24:0;;70973:46;;71424:26;;;;-1:-1:-1;;;71424:26:0;;;;;;;;;;;;;;;;;71402:48;;71488:11;71463:10;71474;71463:22;;;;;;-1:-1:-1;;;71463:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;71568:28;;;:15;:28;;;;;;;:41;;;71740:24;;;;;71733:31;71775:10;:16;;;;;-1:-1:-1;;;71775:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;70720:1079;;;;:::o;68224:221::-;68309:14;68326:20;68343:2;68326:16;:20::i;:::-;-1:-1:-1;;;;;68357:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;68402:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;68224:221:0:o;57938:382::-;-1:-1:-1;;;;;58018:16:0;;58010:61;;;;-1:-1:-1;;;58010:61:0;;;;;;;:::i;:::-;58091:16;58099:7;58091;:16::i;:::-;58090:17;58082:58;;;;-1:-1:-1;;;58082:58:0;;;;;;;:::i;:::-;58153:45;58182:1;58186:2;58190:7;58153:20;:45::i;:::-;-1:-1:-1;;;;;58211:13:0;;;;;;:9;:13;;;;;:18;;58228:1;;58211:13;:18;;58228:1;;58211:18;:::i;:::-;;;;-1:-1:-1;;58240:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;58240:21:0;-1:-1:-1;;;;;58240:21:0;;;;;;;;58279:33;;58240:16;;;58279:33;;58240:16;;58279:33;57938:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;1162:402::-;;;1291:2;1279:9;1270:7;1266:23;1262:32;1259:2;;;1312:6;1304;1297:22;1259:2;1356:9;1343:23;1375:33;1402:5;1375:33;:::i;:::-;1427:5;-1:-1:-1;1484:2:1;1469:18;;1456:32;1497:35;1456:32;1497:35;:::i;:::-;1551:7;1541:17;;;1249:315;;;;;:::o;1569:470::-;;;;1715:2;1703:9;1694:7;1690:23;1686:32;1683:2;;;1736:6;1728;1721:22;1683:2;1780:9;1767:23;1799:33;1826:5;1799:33;:::i;:::-;1851:5;-1:-1:-1;1908:2:1;1893:18;;1880:32;1921:35;1880:32;1921:35;:::i;:::-;1673:366;;1975:7;;-1:-1:-1;;;2029:2:1;2014:18;;;;2001:32;;1673:366::o;2044:830::-;;;;;2216:3;2204:9;2195:7;2191:23;2187:33;2184:2;;;2238:6;2230;2223:22;2184:2;2282:9;2269:23;2301:33;2328:5;2301:33;:::i;:::-;2353:5;-1:-1:-1;2410:2:1;2395:18;;2382:32;2423:35;2382:32;2423:35;:::i;:::-;2477:7;-1:-1:-1;2531:2:1;2516:18;;2503:32;;-1:-1:-1;2586:2:1;2571:18;;2558:32;2613:18;2602:30;;2599:2;;;2650:6;2642;2635:22;2599:2;2678:22;;2731:4;2723:13;;2719:27;-1:-1:-1;2709:2:1;;2765:6;2757;2750:22;2709:2;2793:75;2860:7;2855:2;2842:16;2837:2;2833;2829:11;2793:75;:::i;:::-;2783:85;;;2174:700;;;;;;;:::o;2879:438::-;;;3005:2;2993:9;2984:7;2980:23;2976:32;2973:2;;;3026:6;3018;3011:22;2973:2;3070:9;3057:23;3089:33;3116:5;3089:33;:::i;:::-;3141:5;-1:-1:-1;3198:2:1;3183:18;;3170:32;3240:15;;3233:23;3221:36;;3211:2;;3276:6;3268;3261:22;3322:327;;;3451:2;3439:9;3430:7;3426:23;3422:32;3419:2;;;3472:6;3464;3457:22;3419:2;3516:9;3503:23;3535:33;3562:5;3535:33;:::i;:::-;3587:5;3639:2;3624:18;;;;3611:32;;-1:-1:-1;;;3409:240:1:o;3654:257::-;;3765:2;3753:9;3744:7;3740:23;3736:32;3733:2;;;3786:6;3778;3771:22;3733:2;3830:9;3817:23;3849:32;3875:5;3849:32;:::i;3916:261::-;;4038:2;4026:9;4017:7;4013:23;4009:32;4006:2;;;4059:6;4051;4044:22;4006:2;4096:9;4090:16;4115:32;4141:5;4115:32;:::i;4460:482::-;;4582:2;4570:9;4561:7;4557:23;4553:32;4550:2;;;4603:6;4595;4588:22;4550:2;4648:9;4635:23;4681:18;4673:6;4670:30;4667:2;;;4718:6;4710;4703:22;4667:2;4746:22;;4799:4;4791:13;;4787:27;-1:-1:-1;4777:2:1;;4833:6;4825;4818:22;4777:2;4861:75;4928:7;4923:2;4910:16;4905:2;4901;4897:11;4861:75;:::i;4947:190::-;;5059:2;5047:9;5038:7;5034:23;5030:32;5027:2;;;5080:6;5072;5065:22;5027:2;-1:-1:-1;5108:23:1;;5017:120;-1:-1:-1;5017:120:1:o;5142:259::-;;5223:5;5217:12;5250:6;5245:3;5238:19;5266:63;5322:6;5315:4;5310:3;5306:14;5299:4;5292:5;5288:16;5266:63;:::i;:::-;5383:2;5362:15;-1:-1:-1;;5358:29:1;5349:39;;;;5390:4;5345:50;;5193:208;-1:-1:-1;;5193:208:1:o;5406:470::-;;5623:6;5617:13;5639:53;5685:6;5680:3;5673:4;5665:6;5661:17;5639:53;:::i;:::-;5755:13;;5714:16;;;;5777:57;5755:13;5714:16;5811:4;5799:17;;5777:57;:::i;:::-;5850:20;;5593:283;-1:-1:-1;;;;5593:283:1:o;5881:443::-;;6151:6;6145:13;6167:53;6213:6;6208:3;6201:4;6193:6;6189:17;6167:53;:::i;:::-;-1:-1:-1;;;6242:16:1;;6267:22;;;-1:-1:-1;6316:1:1;6305:13;;6121:203;-1:-1:-1;6121:203:1:o;6329:205::-;6529:3;6520:14::o;6539:425::-;6752:19;;;6809:2;6805:15;;;;-1:-1:-1;;6801:53:1;6796:2;6787:12;;6780:75;6880:2;6871:12;;6864:28;6917:2;6908:12;;6901:28;6954:3;6945:13;;6742:222::o;6969:203::-;-1:-1:-1;;;;;7133:32:1;;;;7115:51;;7103:2;7088:18;;7070:102::o;7177:282::-;-1:-1:-1;;;;;7377:32:1;;;;7359:51;;7441:2;7426:18;;7419:34;7347:2;7332:18;;7314:145::o;7464:490::-;-1:-1:-1;;;;;7733:15:1;;;7715:34;;7785:15;;7780:2;7765:18;;7758:43;7832:2;7817:18;;7810:34;;;7880:3;7875:2;7860:18;;7853:31;;;7464:490;;7901:47;;7928:19;;7920:6;7901:47;:::i;:::-;7893:55;7667:287;-1:-1:-1;;;;;;7667:287:1:o;8238:187::-;8403:14;;8396:22;8378:41;;8366:2;8351:18;;8333:92::o;8430:221::-;;8579:2;8568:9;8561:21;8599:46;8641:2;8630:9;8626:18;8618:6;8599:46;:::i;8656:406::-;8858:2;8840:21;;;8897:2;8877:18;;;8870:30;8936:34;8931:2;8916:18;;8909:62;-1:-1:-1;;;9002:2:1;8987:18;;8980:40;9052:3;9037:19;;8830:232::o;9067:347::-;9269:2;9251:21;;;9308:2;9288:18;;;9281:30;9347:25;9342:2;9327:18;;9320:53;9405:2;9390:18;;9241:173::o;9419:344::-;9621:2;9603:21;;;9660:2;9640:18;;;9633:30;-1:-1:-1;;;9694:2:1;9679:18;;9672:50;9754:2;9739:18;;9593:170::o;9768:407::-;9970:2;9952:21;;;10009:2;9989:18;;;9982:30;10048:34;10043:2;10028:18;;10021:62;-1:-1:-1;;;10114:2:1;10099:18;;10092:41;10165:3;10150:19;;9942:233::o;10180:414::-;10382:2;10364:21;;;10421:2;10401:18;;;10394:30;10460:34;10455:2;10440:18;;10433:62;-1:-1:-1;;;10526:2:1;10511:18;;10504:48;10584:3;10569:19;;10354:240::o;10599:402::-;10801:2;10783:21;;;10840:2;10820:18;;;10813:30;10879:34;10874:2;10859:18;;10852:62;-1:-1:-1;;;10945:2:1;10930:18;;10923:36;10991:3;10976:19;;10773:228::o;11006:352::-;11208:2;11190:21;;;11247:2;11227:18;;;11220:30;11286;11281:2;11266:18;;11259:58;11349:2;11334:18;;11180:178::o;11363:407::-;11565:2;11547:21;;;11604:2;11584:18;;;11577:30;11643:34;11638:2;11623:18;;11616:62;-1:-1:-1;;;11709:2:1;11694:18;;11687:41;11760:3;11745:19;;11537:233::o;11775:402::-;11977:2;11959:21;;;12016:2;11996:18;;;11989:30;12055:34;12050:2;12035:18;;12028:62;-1:-1:-1;;;12121:2:1;12106:18;;12099:36;12167:3;12152:19;;11949:228::o;12182:400::-;12384:2;12366:21;;;12423:2;12403:18;;;12396:30;12462:34;12457:2;12442:18;;12435:62;-1:-1:-1;;;12528:2:1;12513:18;;12506:34;12572:3;12557:19;;12356:226::o;12587:349::-;12789:2;12771:21;;;12828:2;12808:18;;;12801:30;12867:27;12862:2;12847:18;;12840:55;12927:2;12912:18;;12761:175::o;12941:422::-;13143:2;13125:21;;;13182:2;13162:18;;;13155:30;13221:34;13216:2;13201:18;;13194:62;13292:28;13287:2;13272:18;;13265:56;13353:3;13338:19;;13115:248::o;13368:353::-;13570:2;13552:21;;;13609:2;13589:18;;;13582:30;13648:31;13643:2;13628:18;;13621:59;13712:2;13697:18;;13542:179::o;13726:408::-;13928:2;13910:21;;;13967:2;13947:18;;;13940:30;14006:34;14001:2;13986:18;;13979:62;-1:-1:-1;;;14072:2:1;14057:18;;14050:42;14124:3;14109:19;;13900:234::o;14139:407::-;14341:2;14323:21;;;14380:2;14360:18;;;14353:30;14419:34;14414:2;14399:18;;14392:62;-1:-1:-1;;;14485:2:1;14470:18;;14463:41;14536:3;14521:19;;14313:233::o;14551:340::-;14753:2;14735:21;;;14792:2;14772:18;;;14765:30;-1:-1:-1;;;14826:2:1;14811:18;;14804:46;14882:2;14867:18;;14725:166::o;14896:420::-;15098:2;15080:21;;;15137:2;15117:18;;;15110:30;15176:34;15171:2;15156:18;;15149:62;15247:26;15242:2;15227:18;;15220:54;15306:3;15291:19;;15070:246::o;15321:422::-;15523:2;15505:21;;;15562:2;15542:18;;;15535:30;15601:34;15596:2;15581:18;;15574:62;15672:28;15667:2;15652:18;;15645:56;15733:3;15718:19;;15495:248::o;15748:406::-;15950:2;15932:21;;;15989:2;15969:18;;;15962:30;16028:34;16023:2;16008:18;;16001:62;-1:-1:-1;;;16094:2:1;16079:18;;16072:40;16144:3;16129:19;;15922:232::o;16159:405::-;16361:2;16343:21;;;16400:2;16380:18;;;16373:30;16439:34;16434:2;16419:18;;16412:62;-1:-1:-1;;;16505:2:1;16490:18;;16483:39;16554:3;16539:19;;16333:231::o;16569:413::-;16771:2;16753:21;;;16810:2;16790:18;;;16783:30;16849:34;16844:2;16829:18;;16822:62;-1:-1:-1;;;16915:2:1;16900:18;;16893:47;16972:3;16957:19;;16743:239::o;16987:356::-;17189:2;17171:21;;;17208:18;;;17201:30;17267:34;17262:2;17247:18;;17240:62;17334:2;17319:18;;17161:182::o;17348:413::-;17550:2;17532:21;;;17589:2;17569:18;;;17562:30;17628:34;17623:2;17608:18;;17601:62;-1:-1:-1;;;17694:2:1;17679:18;;17672:47;17751:3;17736:19;;17522:239::o;17766:408::-;17968:2;17950:21;;;18007:2;17987:18;;;17980:30;18046:34;18041:2;18026:18;;18019:62;-1:-1:-1;;;18112:2:1;18097:18;;18090:42;18164:3;18149:19;;17940:234::o;18179:341::-;18381:2;18363:21;;;18420:2;18400:18;;;18393:30;-1:-1:-1;;;18454:2:1;18439:18;;18432:47;18511:2;18496:18;;18353:167::o;18525:356::-;18727:2;18709:21;;;18746:18;;;18739:30;18805:34;18800:2;18785:18;;18778:62;18872:2;18857:18;;18699:182::o;18886:405::-;19088:2;19070:21;;;19127:2;19107:18;;;19100:30;19166:34;19161:2;19146:18;;19139:62;-1:-1:-1;;;19232:2:1;19217:18;;19210:39;19281:3;19266:19;;19060:231::o;19296:411::-;19498:2;19480:21;;;19537:2;19517:18;;;19510:30;19576:34;19571:2;19556:18;;19549:62;-1:-1:-1;;;19642:2:1;19627:18;;19620:45;19697:3;19682:19;;19470:237::o;19712:397::-;19914:2;19896:21;;;19953:2;19933:18;;;19926:30;19992:34;19987:2;19972:18;;19965:62;-1:-1:-1;;;20058:2:1;20043:18;;20036:31;20099:3;20084:19;;19886:223::o;20114:413::-;20316:2;20298:21;;;20355:2;20335:18;;;20328:30;20394:34;20389:2;20374:18;;20367:62;-1:-1:-1;;;20460:2:1;20445:18;;20438:47;20517:3;20502:19;;20288:239::o;20532:408::-;20734:2;20716:21;;;20773:2;20753:18;;;20746:30;20812:34;20807:2;20792:18;;20785:62;-1:-1:-1;;;20878:2:1;20863:18;;20856:42;20930:3;20915:19;;20706:234::o;20945:354::-;21147:2;21129:21;;;21186:2;21166:18;;;21159:30;21225:32;21220:2;21205:18;;21198:60;21290:2;21275:18;;21119:180::o;21304:355::-;21506:2;21488:21;;;21545:2;21525:18;;;21518:30;21584:33;21579:2;21564:18;;21557:61;21650:2;21635:18;;21478:181::o;21664:177::-;21810:25;;;21798:2;21783:18;;21765:76::o;21846:128::-;;21917:1;21913:6;21910:1;21907:13;21904:2;;;21923:18;;:::i;:::-;-1:-1:-1;21959:9:1;;21894:80::o;21979:120::-;;22045:1;22035:2;;22050:18;;:::i;:::-;-1:-1:-1;22084:9:1;;22025:74::o;22104:168::-;;22210:1;22206;22202:6;22198:14;22195:1;22192:21;22187:1;22180:9;22173:17;22169:45;22166:2;;;22217:18;;:::i;:::-;-1:-1:-1;22257:9:1;;22156:116::o;22277:125::-;;22345:1;22342;22339:8;22336:2;;;22350:18;;:::i;:::-;-1:-1:-1;22387:9:1;;22326:76::o;22407:258::-;22479:1;22489:113;22503:6;22500:1;22497:13;22489:113;;;22579:11;;;22573:18;22560:11;;;22553:39;22525:2;22518:10;22489:113;;;22620:6;22617:1;22614:13;22611:2;;;-1:-1:-1;;22655:1:1;22637:16;;22630:27;22460:205::o;22670:380::-;22755:1;22745:12;;22802:1;22792:12;;;22813:2;;22867:4;22859:6;22855:17;22845:27;;22813:2;22920;22912:6;22909:14;22889:18;22886:38;22883:2;;;22966:10;22961:3;22957:20;22954:1;22947:31;23001:4;22998:1;22991:15;23029:4;23026:1;23019:15;22883:2;;22725:325;;;:::o;23055:135::-;;-1:-1:-1;;23115:17:1;;23112:2;;;23135:18;;:::i;:::-;-1:-1:-1;23182:1:1;23171:13;;23102:88::o;23195:112::-;;23253:1;23243:2;;23258:18;;:::i;:::-;-1:-1:-1;23292:9:1;;23233:74::o;23312:127::-;23373:10;23368:3;23364:20;23361:1;23354:31;23404:4;23401:1;23394:15;23428:4;23425:1;23418:15;23444:127;23505:10;23500:3;23496:20;23493:1;23486:31;23536:4;23533:1;23526:15;23560:4;23557:1;23550:15;23576:127;23637:10;23632:3;23628:20;23625:1;23618:31;23668:4;23665:1;23658:15;23692:4;23689:1;23682:15;23708:133;-1:-1:-1;;;;;23785:31:1;;23775:42;;23765:2;;23831:1;23828;23821:12;23846:133;-1:-1:-1;;;;;;23922:32:1;;23912:43;;23902:2;;23969:1;23966;23959:12

Swarm Source

ipfs://b2f39366c0af3aace67eb62dcac84f5802178fbb69eec1b95ac6becbec80dada
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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