// SPDX-License-Identifier: LGPL-3.0-or-later pragma solidity ^0.7.6; import "../GPv2AllowListAuthentication.sol"; contract GPv2AllowListAuthenticationV2 is GPv2AllowListAuthentication { function newMethod() external pure returns (uint256) { return 1337; } }