ERC-721
Overview
Max Total Supply
350 P//T
Holders
226
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ProjectTreacherous
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-29 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.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 `IERC721Receiver.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.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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 (last updated v4.8.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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.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); /** * @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.1 (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 (last updated v4.8.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: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.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 See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; 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: contracts/PT_ERC721.sol pragma solidity >=0.7.0 <0.9.0; contract ProjectTreacherous is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.0 ether; uint256 public maxSupply = 350; uint256 public maxMintAmount = 1; uint256 public nftPerAddressLimit = 1; uint256 public ownerNftPerAddressLimit = 50; uint256 public ownerMaxMintAmount = 50; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; bool public onlyComrade = false; address[] public whitelistedAddresses; address[] public comradeAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } //owner mint function ownerMint(uint256 _mintAmount) public payable { require(msg.sender == owner(), "Only the owner can call this function."); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; uint256 supply = totalSupply(); require(ownerMintedCount + _mintAmount <= ownerNftPerAddressLimit, "max NFT per address exceeded"); require(_mintAmount <= ownerMaxMintAmount, "max mint amount per session exceeded"); require(msg.value >= cost * _mintAmount, "insufficient funds"); for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } if (msg.sender != owner()) { if(onlyComrade == true) { require(isComrade(msg.sender), "user is not comrade"); require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function isComrade(address _user) public view returns (bool) { for (uint i = 0; i < comradeAddresses.length; i++) { if (comradeAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function editMintWindow( bool _onlyWhitelisted, bool _onlyComrade ) external onlyOwner { onlyWhitelisted = _onlyWhitelisted; onlyComrade = _onlyComrade; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function comradeUsers(address[] calldata _users) public onlyOwner { delete comradeAddresses; comradeAddresses = _users; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"comradeAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"comradeUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_onlyWhitelisted","type":"bool"},{"internalType":"bool","name":"_onlyComrade","type":"bool"}],"name":"editMintWindow","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":[{"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":"address","name":"_user","type":"address"}],"name":"isComrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyComrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ownerNftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001ef565b506000600e5561015e600f5560016010819055601155603260128190556013556014805463ffffffff1916620100001790553480156200006757600080fd5b506040516200329d3803806200329d8339810160408190526200008a916200034c565b835184908490620000a3906000906020850190620001ef565b508051620000b9906001906020840190620001ef565b505050620000d6620000d0620000f660201b60201c565b620000fa565b620000e1826200014c565b620000ec816200016f565b5050505062000458565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001566200018e565b80516200016b90600b906020840190620001ef565b5050565b620001796200018e565b80516200016b90600d906020840190620001ef565b600a546001600160a01b03163314620001ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001fd9062000405565b90600052602060002090601f0160209004810192826200022157600085556200026c565b82601f106200023c57805160ff19168380011785556200026c565b828001600101855582156200026c579182015b828111156200026c5782518255916020019190600101906200024f565b506200027a9291506200027e565b5090565b5b808211156200027a57600081556001016200027f565b600082601f830112620002a757600080fd5b81516001600160401b0380821115620002c457620002c462000442565b604051601f8301601f19908116603f01168101908282118183101715620002ef57620002ef62000442565b816040528381526020925086838588010111156200030c57600080fd5b600091505b8382101562000330578582018301518183018401529082019062000311565b83821115620003425760008385830101525b9695505050505050565b600080600080608085870312156200036357600080fd5b84516001600160401b03808211156200037b57600080fd5b620003898883890162000295565b95506020870151915080821115620003a057600080fd5b620003ae8883890162000295565b94506040870151915080821115620003c557600080fd5b620003d38883890162000295565b93506060870151915080821115620003ea57600080fd5b50620003f98782880162000295565b91505092959194509250565b600181811c908216806200041a57607f821691505b602082108114156200043c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e3580620004686000396000f3fe60806040526004361061031a5760003560e01c80636ffbd133116101ab578063a475b5dd116100f7578063d5abeb0111610095578063edec5f271161006f578063edec5f271461090b578063f19e75d41461092b578063f2c4ce1e1461093e578063f2fde38b1461095e57600080fd5b8063d5abeb011461088c578063da3ef23f146108a2578063e985e9c5146108c257600080fd5b8063ba7d2c76116100d1578063ba7d2c7614610821578063c668286214610837578063c87b56dd1461084c578063d0eb26b01461086c57600080fd5b8063a475b5dd146107cc578063b88d4fde146107e1578063ba4e5c491461080157600080fd5b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146107645780639c70b51214610779578063a0712d6814610799578063a22cb465146107ac57600080fd5b80638da5cb5b14610706578063907599b01461072457806390ce72541461074457600080fd5b80636ffbd1331461065b57806370a082311461067b578063715018a61461069b578063743c1d1a146106b05780637f00c7a6146106d0578063812072c2146106f057600080fd5b80633af32abf1161026a5780634f6ccce7116102235780635c975abb116101fd5780635c975abb146105eb57806360b1bff2146106055780636352211e146106265780636c0360eb1461064657600080fd5b80634f6ccce71461058c57806351830227146105ac57806355f804b3146105cb57600080fd5b80633af32abf146104d75780633c952764146104f75780633ccfd60b1461051757806342842e0e1461051f578063438b63001461053f57806344a0d68a1461056c57600080fd5b806313faede6116102d7578063239c70ae116102b1578063239c70ae1461046b57806323b872dd146104815780632f745c59146104a157806339028f66146104c157600080fd5b806313faede61461040557806318160ddd1461042957806318cae2691461043e57600080fd5b806301ffc9a71461031f57806302329a291461035457806306fdde0314610376578063081812fc14610398578063081c8c44146103d0578063095ea7b3146103e5575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612916565b61097e565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f3660046128df565b6109a9565b005b34801561038257600080fd5b5061038b6109c4565b60405161034b9190612b23565b3480156103a457600080fd5b506103b86103b3366004612999565b610a56565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b5061038b610a7d565b3480156103f157600080fd5b50610374610400366004612840565b610b0b565b34801561041157600080fd5b5061041b600e5481565b60405190815260200161034b565b34801561043557600080fd5b5060085461041b565b34801561044a57600080fd5b5061041b610459366004612710565b60176020526000908152604090205481565b34801561047757600080fd5b5061041b60105481565b34801561048d57600080fd5b5061037461049c36600461275e565b610c26565b3480156104ad57600080fd5b5061041b6104bc366004612840565b610c57565b3480156104cd57600080fd5b5061041b60125481565b3480156104e357600080fd5b5061033f6104f2366004612710565b610ced565b34801561050357600080fd5b506103746105123660046128df565b610d57565b610374610d7b565b34801561052b57600080fd5b5061037461053a36600461275e565b610df7565b34801561054b57600080fd5b5061055f61055a366004612710565b610e12565b60405161034b9190612adf565b34801561057857600080fd5b50610374610587366004612999565b610eb4565b34801561059857600080fd5b5061041b6105a7366004612999565b610ec1565b3480156105b857600080fd5b5060145461033f90610100900460ff1681565b3480156105d757600080fd5b506103746105e6366004612950565b610f54565b3480156105f757600080fd5b5060145461033f9060ff1681565b34801561061157600080fd5b5060145461033f906301000000900460ff1681565b34801561063257600080fd5b506103b8610641366004612999565b610f73565b34801561065257600080fd5b5061038b610fd3565b34801561066757600080fd5b5061033f610676366004612710565b610fe0565b34801561068757600080fd5b5061041b610696366004612710565b611041565b3480156106a757600080fd5b506103746110c7565b3480156106bc57600080fd5b506103746106cb36600461286a565b6110db565b3480156106dc57600080fd5b506103746106eb366004612999565b6110fb565b3480156106fc57600080fd5b5061041b60135481565b34801561071257600080fd5b50600a546001600160a01b03166103b8565b34801561073057600080fd5b506103b861073f366004612999565b611108565b34801561075057600080fd5b5061037461075f3660046128fa565b611132565b34801561077057600080fd5b5061038b61116c565b34801561078557600080fd5b5060145461033f9062010000900460ff1681565b6103746107a7366004612999565b61117b565b3480156107b857600080fd5b506103746107c7366004612816565b6114cc565b3480156107d857600080fd5b506103746114d7565b3480156107ed57600080fd5b506103746107fc36600461279a565b6114f0565b34801561080d57600080fd5b506103b861081c366004612999565b611522565b34801561082d57600080fd5b5061041b60115481565b34801561084357600080fd5b5061038b611532565b34801561085857600080fd5b5061038b610867366004612999565b61153f565b34801561087857600080fd5b50610374610887366004612999565b6116be565b34801561089857600080fd5b5061041b600f5481565b3480156108ae57600080fd5b506103746108bd366004612950565b6116cb565b3480156108ce57600080fd5b5061033f6108dd36600461272b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091757600080fd5b5061037461092636600461286a565b6116e6565b610374610939366004612999565b611706565b34801561094a57600080fd5b50610374610959366004612950565b611851565b34801561096a57600080fd5b50610374610979366004612710565b61186c565b60006001600160e01b0319821663780e9d6360e01b14806109a357506109a3826118e2565b92915050565b6109b1611932565b6014805460ff1916911515919091179055565b6060600080546109d390612d3b565b80601f01602080910402602001604051908101604052809291908181526020018280546109ff90612d3b565b8015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b820191906000526020600020905b815481529060010190602001808311610a2f57829003601f168201915b5050505050905090565b6000610a618261198c565b506000908152600460205260409020546001600160a01b031690565b600d8054610a8a90612d3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab690612d3b565b8015610b035780601f10610ad857610100808354040283529160200191610b03565b820191906000526020600020905b815481529060010190602001808311610ae657829003601f168201915b505050505081565b6000610b1682610f73565b9050806001600160a01b0316836001600160a01b03161415610b895760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610ba55750610ba581336108dd565b610c175760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610b80565b610c2183836119eb565b505050565b610c303382611a59565b610c4c5760405162461bcd60e51b8152600401610b8090612b36565b610c21838383611ad8565b6000610c6283611041565b8210610cc45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b80565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601554811015610d4e57826001600160a01b031660158281548110610d1857610d18612dbd565b6000918252602090912001546001600160a01b03161415610d3c5750600192915050565b80610d4681612d76565b915050610cf1565b50600092915050565b610d5f611932565b60148054911515620100000262ff000019909216919091179055565b610d83611932565b6000610d97600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610de1576040519150601f19603f3d011682016040523d82523d6000602084013e610de6565b606091505b5050905080610df457600080fd5b50565b610c21838383604051806020016040528060008152506114f0565b60606000610e1f83611041565b905060008167ffffffffffffffff811115610e3c57610e3c612dd3565b604051908082528060200260200182016040528015610e65578160200160208202803683370190505b50905060005b82811015610eac57610e7d8582610c57565b828281518110610e8f57610e8f612dbd565b602090810291909101015280610ea481612d76565b915050610e6b565b509392505050565b610ebc611932565b600e55565b6000610ecc60085490565b8210610f2f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b80565b60088281548110610f4257610f42612dbd565b90600052602060002001549050919050565b610f5c611932565b8051610f6f90600b906020840190612564565b5050565b6000818152600260205260408120546001600160a01b0316806109a35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b80565b600b8054610a8a90612d3b565b6000805b601654811015610d4e57826001600160a01b03166016828154811061100b5761100b612dbd565b6000918252602090912001546001600160a01b0316141561102f5750600192915050565b8061103981612d76565b915050610fe4565b60006001600160a01b0382166110ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b80565b506001600160a01b031660009081526003602052604090205490565b6110cf611932565b6110d96000611c49565b565b6110e3611932565b6110ef601660006125e8565b610c2160168383612606565b611103611932565b601055565b6016818154811061111857600080fd5b6000918252602090912001546001600160a01b0316905081565b61113a611932565b6014805463ffff00001916620100009315159390930263ff000000191692909217630100000091151591909102179055565b6060600180546109d390612d3b565b60145460ff16156111c75760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b80565b60006111d260085490565b9050600082116112245760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b80565b6010548211156112465760405162461bcd60e51b8152600401610b8090612c51565b600f546112538383612cc1565b111561129a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b80565b336000908152601760205260409020546011546112b78483612cc1565b11156112d55760405162461bcd60e51b8152600401610b8090612c1a565b600a546001600160a01b031633146113aa5760145462010000900460ff1615156001141561137d5761130633610ced565b6113525760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b80565b60115461135f8483612cc1565b111561137d5760405162461bcd60e51b8152600401610b8090612c1a565b82600e5461138b9190612cd9565b3410156113aa5760405162461bcd60e51b8152600401610b8090612c95565b600a546001600160a01b03163314611476576014546301000000900460ff16151560011415611449576113dc33610fe0565b61141e5760405162461bcd60e51b815260206004820152601360248201527275736572206973206e6f7420636f6d7261646560681b6044820152606401610b80565b60115461142b8483612cc1565b11156114495760405162461bcd60e51b8152600401610b8090612c1a565b82600e546114579190612cd9565b3410156114765760405162461bcd60e51b8152600401610b8090612c95565b60015b8381116114c65733600090815260176020526040812080549161149b83612d76565b909155506114b49050336114af8386612cc1565b611c9b565b806114be81612d76565b915050611479565b50505050565b610f6f338383611cb5565b6114df611932565b6014805461ff001916610100179055565b6114fa3383611a59565b6115165760405162461bcd60e51b8152600401610b8090612b36565b6114c684848484611d84565b6015818154811061111857600080fd5b600c8054610a8a90612d3b565b6000818152600260205260409020546060906001600160a01b03166115be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b80565b601454610100900460ff1661165f57600d80546115da90612d3b565b80601f016020809104026020016040519081016040528092919081815260200182805461160690612d3b565b80156116535780601f1061162857610100808354040283529160200191611653565b820191906000526020600020905b81548152906001019060200180831161163657829003601f168201915b50505050509050919050565b6000611669611db7565b9050600081511161168957604051806020016040528060008152506116b7565b8061169384611dc6565b600c6040516020016116a7939291906129de565b6040516020818303038152906040525b9392505050565b6116c6611932565b601155565b6116d3611932565b8051610f6f90600c906020840190612564565b6116ee611932565b6116fa601560006125e8565b610c2160158383612606565b600a546001600160a01b0316331461176f5760405162461bcd60e51b815260206004820152602660248201527f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60448201526531ba34b7b71760d11b6064820152608401610b80565b336000908152601760205260408120549061178960085490565b6012549091506117998484612cc1565b11156117b75760405162461bcd60e51b8152600401610b8090612c1a565b6013548311156117d95760405162461bcd60e51b8152600401610b8090612c51565b82600e546117e79190612cd9565b3410156118065760405162461bcd60e51b8152600401610b8090612c95565b60015b8381116114c65733600090815260176020526040812080549161182b83612d76565b9091555061183f9050336114af8385612cc1565b8061184981612d76565b915050611809565b611859611932565b8051610f6f90600d906020840190612564565b611874611932565b6001600160a01b0381166118d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b80565b610df481611c49565b60006001600160e01b031982166380ac58cd60e01b148061191357506001600160e01b03198216635b5e139f60e01b145b806109a357506301ffc9a760e01b6001600160e01b03198316146109a3565b600a546001600160a01b031633146110d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b80565b6000818152600260205260409020546001600160a01b0316610df45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b80565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2082610f73565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a6583610f73565b9050806001600160a01b0316846001600160a01b03161480611aac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611ad05750836001600160a01b0316611ac584610a56565b6001600160a01b0316145b949350505050565b826001600160a01b0316611aeb82610f73565b6001600160a01b031614611b115760405162461bcd60e51b8152600401610b8090612bd5565b6001600160a01b038216611b735760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b80565b611b808383836001611e5b565b826001600160a01b0316611b9382610f73565b6001600160a01b031614611bb95760405162461bcd60e51b8152600401610b8090612bd5565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f6f828260405180602001604052806000815250611f9b565b816001600160a01b0316836001600160a01b03161415611d175760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b80565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d8f848484611ad8565b611d9b84848484611fce565b6114c65760405162461bcd60e51b8152600401610b8090612b83565b6060600b80546109d390612d3b565b60606000611dd3836120db565b600101905060008167ffffffffffffffff811115611df357611df3612dd3565b6040519080825280601f01601f191660200182016040528015611e1d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611e5657610eac565b611e27565b611e67848484846121b3565b6001811115611ed65760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610b80565b816001600160a01b038516611f3257611f2d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f55565b836001600160a01b0316856001600160a01b031614611f5557611f55858261223b565b6001600160a01b038416611f7157611f6c816122d8565b611f94565b846001600160a01b0316846001600160a01b031614611f9457611f948482612387565b5050505050565b611fa583836123cb565b611fb26000848484611fce565b610c215760405162461bcd60e51b8152600401610b8090612b83565b60006001600160a01b0384163b156120d057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612012903390899088908890600401612aa2565b602060405180830381600087803b15801561202c57600080fd5b505af192505050801561205c575060408051601f3d908101601f1916820190925261205991810190612933565b60015b6120b6573d80801561208a576040519150601f19603f3d011682016040523d82523d6000602084013e61208f565b606091505b5080516120ae5760405162461bcd60e51b8152600401610b8090612b83565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad0565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061211a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612146576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061216457662386f26fc10000830492506010015b6305f5e100831061217c576305f5e100830492506008015b612710831061219057612710830492506004015b606483106121a2576064830492506002015b600a83106109a35760010192915050565b60018111156114c6576001600160a01b038416156121f9576001600160a01b038416600090815260036020526040812080548392906121f3908490612cf8565b90915550505b6001600160a01b038316156114c6576001600160a01b03831660009081526003602052604081208054839290612230908490612cc1565b909155505050505050565b6000600161224884611041565b6122529190612cf8565b6000838152600760205260409020549091508082146122a5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122ea90600190612cf8565b6000838152600960205260408120546008805493945090928490811061231257612312612dbd565b90600052602060002001549050806008838154811061233357612333612dbd565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061236b5761236b612da7565b6001900381819060005260206000200160009055905550505050565b600061239283611041565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b80565b6000818152600260205260409020546001600160a01b0316156124865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b80565b612494600083836001611e5b565b6000818152600260205260409020546001600160a01b0316156124f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b80565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461257090612d3b565b90600052602060002090601f01602090048101928261259257600085556125d8565b82601f106125ab57805160ff19168380011785556125d8565b828001600101855582156125d8579182015b828111156125d85782518255916020019190600101906125bd565b506125e4929150612659565b5090565b5080546000825590600052602060002090810190610df49190612659565b8280548282559060005260206000209081019282156125d8579160200282015b828111156125d85781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612626565b5b808211156125e4576000815560010161265a565b600067ffffffffffffffff8084111561268957612689612dd3565b604051601f8501601f19908116603f011681019082821181831017156126b1576126b1612dd3565b816040528093508581528686860111156126ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126fb57600080fd5b919050565b803580151581146126fb57600080fd5b60006020828403121561272257600080fd5b6116b7826126e4565b6000806040838503121561273e57600080fd5b612747836126e4565b9150612755602084016126e4565b90509250929050565b60008060006060848603121561277357600080fd5b61277c846126e4565b925061278a602085016126e4565b9150604084013590509250925092565b600080600080608085870312156127b057600080fd5b6127b9856126e4565b93506127c7602086016126e4565b925060408501359150606085013567ffffffffffffffff8111156127ea57600080fd5b8501601f810187136127fb57600080fd5b61280a8782356020840161266e565b91505092959194509250565b6000806040838503121561282957600080fd5b612832836126e4565b915061275560208401612700565b6000806040838503121561285357600080fd5b61285c836126e4565b946020939093013593505050565b6000806020838503121561287d57600080fd5b823567ffffffffffffffff8082111561289557600080fd5b818501915085601f8301126128a957600080fd5b8135818111156128b857600080fd5b8660208260051b85010111156128cd57600080fd5b60209290920196919550909350505050565b6000602082840312156128f157600080fd5b6116b782612700565b6000806040838503121561290d57600080fd5b61283283612700565b60006020828403121561292857600080fd5b81356116b781612de9565b60006020828403121561294557600080fd5b81516116b781612de9565b60006020828403121561296257600080fd5b813567ffffffffffffffff81111561297957600080fd5b8201601f8101841361298a57600080fd5b611ad08482356020840161266e565b6000602082840312156129ab57600080fd5b5035919050565b600081518084526129ca816020860160208601612d0f565b601f01601f19169290920160200192915050565b6000845160206129f18285838a01612d0f565b855191840191612a048184848a01612d0f565b8554920191600090600181811c9080831680612a2157607f831692505b858310811415612a3f57634e487b7160e01b85526022600452602485fd5b808015612a535760018114612a6457612a91565b60ff19851688528388019550612a91565b60008b81526020902060005b85811015612a895781548a820152908401908801612a70565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ad5908301846129b2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b1757835183529284019291840191600101612afb565b50909695505050505050565b6020815260006116b760208301846129b2565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60008219821115612cd457612cd4612d91565b500190565b6000816000190483118215151615612cf357612cf3612d91565b500290565b600082821015612d0a57612d0a612d91565b500390565b60005b83811015612d2a578181015183820152602001612d12565b838111156114c65750506000910152565b600181811c90821680612d4f57607f821691505b60208210811415612d7057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d8a57612d8a612d91565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610df457600080fdfea264697066735822122043bf1b0d6f31acc4c356eddb2f7f32b2cbeacb39c2b77e4df99b3964c4bc2bea64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001350726f6a6563742054726561636865726f7573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004502f2f5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d51344d54596b626a454b6f3468667063426f51325556686b6f786b444c765472476a74465234726b643735482f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d6174346e6a5155333258646e517951444431676b485345584a646f665966664a4c704547534757467848326b0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061031a5760003560e01c80636ffbd133116101ab578063a475b5dd116100f7578063d5abeb0111610095578063edec5f271161006f578063edec5f271461090b578063f19e75d41461092b578063f2c4ce1e1461093e578063f2fde38b1461095e57600080fd5b8063d5abeb011461088c578063da3ef23f146108a2578063e985e9c5146108c257600080fd5b8063ba7d2c76116100d1578063ba7d2c7614610821578063c668286214610837578063c87b56dd1461084c578063d0eb26b01461086c57600080fd5b8063a475b5dd146107cc578063b88d4fde146107e1578063ba4e5c491461080157600080fd5b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146107645780639c70b51214610779578063a0712d6814610799578063a22cb465146107ac57600080fd5b80638da5cb5b14610706578063907599b01461072457806390ce72541461074457600080fd5b80636ffbd1331461065b57806370a082311461067b578063715018a61461069b578063743c1d1a146106b05780637f00c7a6146106d0578063812072c2146106f057600080fd5b80633af32abf1161026a5780634f6ccce7116102235780635c975abb116101fd5780635c975abb146105eb57806360b1bff2146106055780636352211e146106265780636c0360eb1461064657600080fd5b80634f6ccce71461058c57806351830227146105ac57806355f804b3146105cb57600080fd5b80633af32abf146104d75780633c952764146104f75780633ccfd60b1461051757806342842e0e1461051f578063438b63001461053f57806344a0d68a1461056c57600080fd5b806313faede6116102d7578063239c70ae116102b1578063239c70ae1461046b57806323b872dd146104815780632f745c59146104a157806339028f66146104c157600080fd5b806313faede61461040557806318160ddd1461042957806318cae2691461043e57600080fd5b806301ffc9a71461031f57806302329a291461035457806306fdde0314610376578063081812fc14610398578063081c8c44146103d0578063095ea7b3146103e5575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612916565b61097e565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f3660046128df565b6109a9565b005b34801561038257600080fd5b5061038b6109c4565b60405161034b9190612b23565b3480156103a457600080fd5b506103b86103b3366004612999565b610a56565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b5061038b610a7d565b3480156103f157600080fd5b50610374610400366004612840565b610b0b565b34801561041157600080fd5b5061041b600e5481565b60405190815260200161034b565b34801561043557600080fd5b5060085461041b565b34801561044a57600080fd5b5061041b610459366004612710565b60176020526000908152604090205481565b34801561047757600080fd5b5061041b60105481565b34801561048d57600080fd5b5061037461049c36600461275e565b610c26565b3480156104ad57600080fd5b5061041b6104bc366004612840565b610c57565b3480156104cd57600080fd5b5061041b60125481565b3480156104e357600080fd5b5061033f6104f2366004612710565b610ced565b34801561050357600080fd5b506103746105123660046128df565b610d57565b610374610d7b565b34801561052b57600080fd5b5061037461053a36600461275e565b610df7565b34801561054b57600080fd5b5061055f61055a366004612710565b610e12565b60405161034b9190612adf565b34801561057857600080fd5b50610374610587366004612999565b610eb4565b34801561059857600080fd5b5061041b6105a7366004612999565b610ec1565b3480156105b857600080fd5b5060145461033f90610100900460ff1681565b3480156105d757600080fd5b506103746105e6366004612950565b610f54565b3480156105f757600080fd5b5060145461033f9060ff1681565b34801561061157600080fd5b5060145461033f906301000000900460ff1681565b34801561063257600080fd5b506103b8610641366004612999565b610f73565b34801561065257600080fd5b5061038b610fd3565b34801561066757600080fd5b5061033f610676366004612710565b610fe0565b34801561068757600080fd5b5061041b610696366004612710565b611041565b3480156106a757600080fd5b506103746110c7565b3480156106bc57600080fd5b506103746106cb36600461286a565b6110db565b3480156106dc57600080fd5b506103746106eb366004612999565b6110fb565b3480156106fc57600080fd5b5061041b60135481565b34801561071257600080fd5b50600a546001600160a01b03166103b8565b34801561073057600080fd5b506103b861073f366004612999565b611108565b34801561075057600080fd5b5061037461075f3660046128fa565b611132565b34801561077057600080fd5b5061038b61116c565b34801561078557600080fd5b5060145461033f9062010000900460ff1681565b6103746107a7366004612999565b61117b565b3480156107b857600080fd5b506103746107c7366004612816565b6114cc565b3480156107d857600080fd5b506103746114d7565b3480156107ed57600080fd5b506103746107fc36600461279a565b6114f0565b34801561080d57600080fd5b506103b861081c366004612999565b611522565b34801561082d57600080fd5b5061041b60115481565b34801561084357600080fd5b5061038b611532565b34801561085857600080fd5b5061038b610867366004612999565b61153f565b34801561087857600080fd5b50610374610887366004612999565b6116be565b34801561089857600080fd5b5061041b600f5481565b3480156108ae57600080fd5b506103746108bd366004612950565b6116cb565b3480156108ce57600080fd5b5061033f6108dd36600461272b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091757600080fd5b5061037461092636600461286a565b6116e6565b610374610939366004612999565b611706565b34801561094a57600080fd5b50610374610959366004612950565b611851565b34801561096a57600080fd5b50610374610979366004612710565b61186c565b60006001600160e01b0319821663780e9d6360e01b14806109a357506109a3826118e2565b92915050565b6109b1611932565b6014805460ff1916911515919091179055565b6060600080546109d390612d3b565b80601f01602080910402602001604051908101604052809291908181526020018280546109ff90612d3b565b8015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b820191906000526020600020905b815481529060010190602001808311610a2f57829003601f168201915b5050505050905090565b6000610a618261198c565b506000908152600460205260409020546001600160a01b031690565b600d8054610a8a90612d3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab690612d3b565b8015610b035780601f10610ad857610100808354040283529160200191610b03565b820191906000526020600020905b815481529060010190602001808311610ae657829003601f168201915b505050505081565b6000610b1682610f73565b9050806001600160a01b0316836001600160a01b03161415610b895760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610ba55750610ba581336108dd565b610c175760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610b80565b610c2183836119eb565b505050565b610c303382611a59565b610c4c5760405162461bcd60e51b8152600401610b8090612b36565b610c21838383611ad8565b6000610c6283611041565b8210610cc45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b80565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601554811015610d4e57826001600160a01b031660158281548110610d1857610d18612dbd565b6000918252602090912001546001600160a01b03161415610d3c5750600192915050565b80610d4681612d76565b915050610cf1565b50600092915050565b610d5f611932565b60148054911515620100000262ff000019909216919091179055565b610d83611932565b6000610d97600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610de1576040519150601f19603f3d011682016040523d82523d6000602084013e610de6565b606091505b5050905080610df457600080fd5b50565b610c21838383604051806020016040528060008152506114f0565b60606000610e1f83611041565b905060008167ffffffffffffffff811115610e3c57610e3c612dd3565b604051908082528060200260200182016040528015610e65578160200160208202803683370190505b50905060005b82811015610eac57610e7d8582610c57565b828281518110610e8f57610e8f612dbd565b602090810291909101015280610ea481612d76565b915050610e6b565b509392505050565b610ebc611932565b600e55565b6000610ecc60085490565b8210610f2f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b80565b60088281548110610f4257610f42612dbd565b90600052602060002001549050919050565b610f5c611932565b8051610f6f90600b906020840190612564565b5050565b6000818152600260205260408120546001600160a01b0316806109a35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b80565b600b8054610a8a90612d3b565b6000805b601654811015610d4e57826001600160a01b03166016828154811061100b5761100b612dbd565b6000918252602090912001546001600160a01b0316141561102f5750600192915050565b8061103981612d76565b915050610fe4565b60006001600160a01b0382166110ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b80565b506001600160a01b031660009081526003602052604090205490565b6110cf611932565b6110d96000611c49565b565b6110e3611932565b6110ef601660006125e8565b610c2160168383612606565b611103611932565b601055565b6016818154811061111857600080fd5b6000918252602090912001546001600160a01b0316905081565b61113a611932565b6014805463ffff00001916620100009315159390930263ff000000191692909217630100000091151591909102179055565b6060600180546109d390612d3b565b60145460ff16156111c75760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b80565b60006111d260085490565b9050600082116112245760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b80565b6010548211156112465760405162461bcd60e51b8152600401610b8090612c51565b600f546112538383612cc1565b111561129a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b80565b336000908152601760205260409020546011546112b78483612cc1565b11156112d55760405162461bcd60e51b8152600401610b8090612c1a565b600a546001600160a01b031633146113aa5760145462010000900460ff1615156001141561137d5761130633610ced565b6113525760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b80565b60115461135f8483612cc1565b111561137d5760405162461bcd60e51b8152600401610b8090612c1a565b82600e5461138b9190612cd9565b3410156113aa5760405162461bcd60e51b8152600401610b8090612c95565b600a546001600160a01b03163314611476576014546301000000900460ff16151560011415611449576113dc33610fe0565b61141e5760405162461bcd60e51b815260206004820152601360248201527275736572206973206e6f7420636f6d7261646560681b6044820152606401610b80565b60115461142b8483612cc1565b11156114495760405162461bcd60e51b8152600401610b8090612c1a565b82600e546114579190612cd9565b3410156114765760405162461bcd60e51b8152600401610b8090612c95565b60015b8381116114c65733600090815260176020526040812080549161149b83612d76565b909155506114b49050336114af8386612cc1565b611c9b565b806114be81612d76565b915050611479565b50505050565b610f6f338383611cb5565b6114df611932565b6014805461ff001916610100179055565b6114fa3383611a59565b6115165760405162461bcd60e51b8152600401610b8090612b36565b6114c684848484611d84565b6015818154811061111857600080fd5b600c8054610a8a90612d3b565b6000818152600260205260409020546060906001600160a01b03166115be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b80565b601454610100900460ff1661165f57600d80546115da90612d3b565b80601f016020809104026020016040519081016040528092919081815260200182805461160690612d3b565b80156116535780601f1061162857610100808354040283529160200191611653565b820191906000526020600020905b81548152906001019060200180831161163657829003601f168201915b50505050509050919050565b6000611669611db7565b9050600081511161168957604051806020016040528060008152506116b7565b8061169384611dc6565b600c6040516020016116a7939291906129de565b6040516020818303038152906040525b9392505050565b6116c6611932565b601155565b6116d3611932565b8051610f6f90600c906020840190612564565b6116ee611932565b6116fa601560006125e8565b610c2160158383612606565b600a546001600160a01b0316331461176f5760405162461bcd60e51b815260206004820152602660248201527f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60448201526531ba34b7b71760d11b6064820152608401610b80565b336000908152601760205260408120549061178960085490565b6012549091506117998484612cc1565b11156117b75760405162461bcd60e51b8152600401610b8090612c1a565b6013548311156117d95760405162461bcd60e51b8152600401610b8090612c51565b82600e546117e79190612cd9565b3410156118065760405162461bcd60e51b8152600401610b8090612c95565b60015b8381116114c65733600090815260176020526040812080549161182b83612d76565b9091555061183f9050336114af8385612cc1565b8061184981612d76565b915050611809565b611859611932565b8051610f6f90600d906020840190612564565b611874611932565b6001600160a01b0381166118d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b80565b610df481611c49565b60006001600160e01b031982166380ac58cd60e01b148061191357506001600160e01b03198216635b5e139f60e01b145b806109a357506301ffc9a760e01b6001600160e01b03198316146109a3565b600a546001600160a01b031633146110d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b80565b6000818152600260205260409020546001600160a01b0316610df45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b80565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2082610f73565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a6583610f73565b9050806001600160a01b0316846001600160a01b03161480611aac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611ad05750836001600160a01b0316611ac584610a56565b6001600160a01b0316145b949350505050565b826001600160a01b0316611aeb82610f73565b6001600160a01b031614611b115760405162461bcd60e51b8152600401610b8090612bd5565b6001600160a01b038216611b735760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b80565b611b808383836001611e5b565b826001600160a01b0316611b9382610f73565b6001600160a01b031614611bb95760405162461bcd60e51b8152600401610b8090612bd5565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f6f828260405180602001604052806000815250611f9b565b816001600160a01b0316836001600160a01b03161415611d175760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b80565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d8f848484611ad8565b611d9b84848484611fce565b6114c65760405162461bcd60e51b8152600401610b8090612b83565b6060600b80546109d390612d3b565b60606000611dd3836120db565b600101905060008167ffffffffffffffff811115611df357611df3612dd3565b6040519080825280601f01601f191660200182016040528015611e1d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611e5657610eac565b611e27565b611e67848484846121b3565b6001811115611ed65760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610b80565b816001600160a01b038516611f3257611f2d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f55565b836001600160a01b0316856001600160a01b031614611f5557611f55858261223b565b6001600160a01b038416611f7157611f6c816122d8565b611f94565b846001600160a01b0316846001600160a01b031614611f9457611f948482612387565b5050505050565b611fa583836123cb565b611fb26000848484611fce565b610c215760405162461bcd60e51b8152600401610b8090612b83565b60006001600160a01b0384163b156120d057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612012903390899088908890600401612aa2565b602060405180830381600087803b15801561202c57600080fd5b505af192505050801561205c575060408051601f3d908101601f1916820190925261205991810190612933565b60015b6120b6573d80801561208a576040519150601f19603f3d011682016040523d82523d6000602084013e61208f565b606091505b5080516120ae5760405162461bcd60e51b8152600401610b8090612b83565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad0565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061211a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612146576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061216457662386f26fc10000830492506010015b6305f5e100831061217c576305f5e100830492506008015b612710831061219057612710830492506004015b606483106121a2576064830492506002015b600a83106109a35760010192915050565b60018111156114c6576001600160a01b038416156121f9576001600160a01b038416600090815260036020526040812080548392906121f3908490612cf8565b90915550505b6001600160a01b038316156114c6576001600160a01b03831660009081526003602052604081208054839290612230908490612cc1565b909155505050505050565b6000600161224884611041565b6122529190612cf8565b6000838152600760205260409020549091508082146122a5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122ea90600190612cf8565b6000838152600960205260408120546008805493945090928490811061231257612312612dbd565b90600052602060002001549050806008838154811061233357612333612dbd565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061236b5761236b612da7565b6001900381819060005260206000200160009055905550505050565b600061239283611041565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b80565b6000818152600260205260409020546001600160a01b0316156124865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b80565b612494600083836001611e5b565b6000818152600260205260409020546001600160a01b0316156124f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b80565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461257090612d3b565b90600052602060002090601f01602090048101928261259257600085556125d8565b82601f106125ab57805160ff19168380011785556125d8565b828001600101855582156125d8579182015b828111156125d85782518255916020019190600101906125bd565b506125e4929150612659565b5090565b5080546000825590600052602060002090810190610df49190612659565b8280548282559060005260206000209081019282156125d8579160200282015b828111156125d85781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612626565b5b808211156125e4576000815560010161265a565b600067ffffffffffffffff8084111561268957612689612dd3565b604051601f8501601f19908116603f011681019082821181831017156126b1576126b1612dd3565b816040528093508581528686860111156126ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126fb57600080fd5b919050565b803580151581146126fb57600080fd5b60006020828403121561272257600080fd5b6116b7826126e4565b6000806040838503121561273e57600080fd5b612747836126e4565b9150612755602084016126e4565b90509250929050565b60008060006060848603121561277357600080fd5b61277c846126e4565b925061278a602085016126e4565b9150604084013590509250925092565b600080600080608085870312156127b057600080fd5b6127b9856126e4565b93506127c7602086016126e4565b925060408501359150606085013567ffffffffffffffff8111156127ea57600080fd5b8501601f810187136127fb57600080fd5b61280a8782356020840161266e565b91505092959194509250565b6000806040838503121561282957600080fd5b612832836126e4565b915061275560208401612700565b6000806040838503121561285357600080fd5b61285c836126e4565b946020939093013593505050565b6000806020838503121561287d57600080fd5b823567ffffffffffffffff8082111561289557600080fd5b818501915085601f8301126128a957600080fd5b8135818111156128b857600080fd5b8660208260051b85010111156128cd57600080fd5b60209290920196919550909350505050565b6000602082840312156128f157600080fd5b6116b782612700565b6000806040838503121561290d57600080fd5b61283283612700565b60006020828403121561292857600080fd5b81356116b781612de9565b60006020828403121561294557600080fd5b81516116b781612de9565b60006020828403121561296257600080fd5b813567ffffffffffffffff81111561297957600080fd5b8201601f8101841361298a57600080fd5b611ad08482356020840161266e565b6000602082840312156129ab57600080fd5b5035919050565b600081518084526129ca816020860160208601612d0f565b601f01601f19169290920160200192915050565b6000845160206129f18285838a01612d0f565b855191840191612a048184848a01612d0f565b8554920191600090600181811c9080831680612a2157607f831692505b858310811415612a3f57634e487b7160e01b85526022600452602485fd5b808015612a535760018114612a6457612a91565b60ff19851688528388019550612a91565b60008b81526020902060005b85811015612a895781548a820152908401908801612a70565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ad5908301846129b2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b1757835183529284019291840191600101612afb565b50909695505050505050565b6020815260006116b760208301846129b2565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60008219821115612cd457612cd4612d91565b500190565b6000816000190483118215151615612cf357612cf3612d91565b500290565b600082821015612d0a57612d0a612d91565b500390565b60005b83811015612d2a578181015183820152602001612d12565b838111156114c65750506000910152565b600181811c90821680612d4f57607f821691505b60208210811415612d7057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d8a57612d8a612d91565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610df457600080fdfea264697066735822122043bf1b0d6f31acc4c356eddb2f7f32b2cbeacb39c2b77e4df99b3964c4bc2bea64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001350726f6a6563742054726561636865726f7573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004502f2f5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d51344d54596b626a454b6f3468667063426f51325556686b6f786b444c765472476a74465234726b643735482f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d6174346e6a5155333258646e517951444431676b485345584a646f665966664a4c704547534757467848326b0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Project Treacherous
Arg [1] : _symbol (string): P//T
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmQ4MTYkbjEKo4hfpcBoQ2UVhkoxkDLvTrGjtFR4rkd75H/
Arg [3] : _initNotRevealedUri (string): https://ipfs.io/ipfs/Qmat4njQU32XdnQyQDD1gkHSEXJdofYffJLpEGSGWFxH2k
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 50726f6a6563742054726561636865726f757300000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 502f2f5400000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [9] : 68747470733a2f2f697066732e696f2f697066732f516d51344d54596b626a45
Arg [10] : 4b6f3468667063426f51325556686b6f786b444c765472476a74465234726b64
Arg [11] : 3735482f00000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [13] : 68747470733a2f2f697066732e696f2f697066732f516d6174346e6a51553332
Arg [14] : 58646e517951444431676b485345584a646f665966664a4c7045475347574678
Arg [15] : 48326b0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
62543:6105:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56529:224;;;;;;;;;;-1:-1:-1;56529:224:0;;;;;:::i;:::-;;:::i;:::-;;;8680:14:1;;8673:22;8655:41;;8643:2;8628:18;56529:224:0;;;;;;;;68025:73;;;;;;;;;;-1:-1:-1;68025:73:0;;;;;:::i;:::-;;:::i;:::-;;40591:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42103:171::-;;;;;;;;;;-1:-1:-1;42103:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7341:32:1;;;7323:51;;7311:2;7296:18;42103:171:0;7177:203:1;62705:28:0;;;;;;;;;;;;;:::i;41621:416::-;;;;;;;;;;-1:-1:-1;41621:416:0;;;;;:::i;:::-;;:::i;62738:31::-;;;;;;;;;;;;;;;;;;;19093:25:1;;;19081:2;19066:18;62738:31:0;18947:177:1;57169:113:0;;;;;;;;;;-1:-1:-1;57257:10:0;:17;57169:113;;63198:55;;;;;;;;;;-1:-1:-1;63198:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;62809:32;;;;;;;;;;;;;;;;42803:335;;;;;;;;;;-1:-1:-1;42803:335:0;;;;;:::i;:::-;;:::i;56837:256::-;;;;;;;;;;-1:-1:-1;56837:256:0;;;;;:::i;:::-;;:::i;62888:43::-;;;;;;;;;;;;;;;;65729:239;;;;;;;;;;-1:-1:-1;65729:239:0;;;;;:::i;:::-;;:::i;68106:95::-;;;;;;;;;;-1:-1:-1;68106:95:0;;;;;:::i;:::-;;:::i;68500:145::-;;;:::i;43209:185::-;;;;;;;;;;-1:-1:-1;43209:185:0;;;;;:::i;:::-;;:::i;66207:348::-;;;;;;;;;;-1:-1:-1;66207:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67457:80::-;;;;;;;;;;-1:-1:-1;67457:80:0;;;;;:::i;:::-;;:::i;57359:233::-;;;;;;;;;;-1:-1:-1;57359:233:0;;;;;:::i;:::-;;:::i;63010:28::-;;;;;;;;;;-1:-1:-1;63010:28:0;;;;;;;;;;;67665:98;;;;;;;;;;-1:-1:-1;67665:98:0;;;;;:::i;:::-;;:::i;62979:26::-;;;;;;;;;;-1:-1:-1;62979:26:0;;;;;;;;63082:31;;;;;;;;;;-1:-1:-1;63082:31:0;;;;;;;;;;;40301:223;;;;;;;;;;-1:-1:-1;40301:223:0;;;;;:::i;:::-;;:::i;62637:21::-;;;;;;;;;;;;;:::i;65974:227::-;;;;;;;;;;-1:-1:-1;65974:227:0;;;;;:::i;:::-;;:::i;40032:207::-;;;;;;;;;;-1:-1:-1;40032:207:0;;;;;:::i;:::-;;:::i;18014:103::-;;;;;;;;;;;;;:::i;68360:134::-;;;;;;;;;;-1:-1:-1;68360:134:0;;;;;:::i;:::-;;:::i;67543:116::-;;;;;;;;;;-1:-1:-1;67543:116:0;;;;;:::i;:::-;;:::i;62936:38::-;;;;;;;;;;;;;;;;17366:87;;;;;;;;;;-1:-1:-1;17439:6:0;;-1:-1:-1;;;;;17439:6:0;17366:87;;63160:33;;;;;;;;;;-1:-1:-1;63160:33:0;;;;;:::i;:::-;;:::i;67155:184::-;;;;;;;;;;-1:-1:-1;67155:184:0;;;;;:::i;:::-;;:::i;40760:104::-;;;;;;;;;;;;;:::i;63043:34::-;;;;;;;;;;-1:-1:-1;63043:34:0;;;;;;;;;;;64347:1374;;;;;;:::i;:::-;;:::i;42346:155::-;;;;;;;;;;-1:-1:-1;42346:155:0;;;;;:::i;:::-;;:::i;67082:65::-;;;;;;;;;;;;;:::i;43465:322::-;;;;;;;;;;-1:-1:-1;43465:322:0;;;;;:::i;:::-;;:::i;63118:37::-;;;;;;;;;;-1:-1:-1;63118:37:0;;;;;:::i;:::-;;:::i;62846:::-;;;;;;;;;;;;;;;;62663;;;;;;;;;;;;;:::i;66561:497::-;;;;;;;;;;-1:-1:-1;66561:497:0;;;;;:::i;:::-;;:::i;67345:104::-;;;;;;;;;;-1:-1:-1;67345:104:0;;;;;:::i;:::-;;:::i;62774:30::-;;;;;;;;;;;;;;;;67769:122;;;;;;;;;;-1:-1:-1;67769:122:0;;;;;:::i;:::-;;:::i;42572:164::-;;;;;;;;;;-1:-1:-1;42572:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42693:25:0;;;42669:4;42693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42572:164;68209:144;;;;;;;;;;-1:-1:-1;68209:144:0;;;;;:::i;:::-;;:::i;63656:666::-;;;;;;:::i;:::-;;:::i;67899:120::-;;;;;;;;;;-1:-1:-1;67899:120:0;;;;;:::i;:::-;;:::i;18272:201::-;;;;;;;;;;-1:-1:-1;18272:201:0;;;;;:::i;:::-;;:::i;56529:224::-;56631:4;-1:-1:-1;;;;;;56655:50:0;;-1:-1:-1;;;56655:50:0;;:90;;;56709:36;56733:11;56709:23;:36::i;:::-;56648:97;56529:224;-1:-1:-1;;56529:224:0:o;68025:73::-;17252:13;:11;:13::i;:::-;68077:6:::1;:15:::0;;-1:-1:-1;;68077:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68025:73::o;40591:100::-;40645:13;40678:5;40671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40591:100;:::o;42103:171::-;42179:7;42199:23;42214:7;42199:14;:23::i;:::-;-1:-1:-1;42242:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42242:24:0;;42103:171::o;62705:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41621:416::-;41702:13;41718:23;41733:7;41718:14;:23::i;:::-;41702:39;;41766:5;-1:-1:-1;;;;;41760:11:0;:2;-1:-1:-1;;;;;41760:11:0;;;41752:57;;;;-1:-1:-1;;;41752:57:0;;16427:2:1;41752:57:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:34;16485:18;;;16478:62;-1:-1:-1;;;16556:18:1;;;16549:31;16597:19;;41752:57:0;;;;;;;;;15997:10;-1:-1:-1;;;;;41844:21:0;;;;:62;;-1:-1:-1;41869:37:0;41886:5;15997:10;42572:164;:::i;41869:37::-;41822:173;;;;-1:-1:-1;;;41822:173:0;;17176:2:1;41822:173:0;;;17158:21:1;17215:2;17195:18;;;17188:30;17254:34;17234:18;;;17227:62;17325:31;17305:18;;;17298:59;17374:19;;41822:173:0;16974:425:1;41822:173:0;42008:21;42017:2;42021:7;42008:8;:21::i;:::-;41691:346;41621:416;;:::o;42803:335::-;42998:41;15997:10;43031:7;42998:18;:41::i;:::-;42990:99;;;;-1:-1:-1;;;42990:99:0;;;;;;;:::i;:::-;43102:28;43112:4;43118:2;43122:7;43102:9;:28::i;56837:256::-;56934:7;56970:23;56987:5;56970:16;:23::i;:::-;56962:5;:31;56954:87;;;;-1:-1:-1;;;56954:87:0;;9954:2:1;56954:87:0;;;9936:21:1;9993:2;9973:18;;;9966:30;10032:34;10012:18;;;10005:62;-1:-1:-1;;;10083:18:1;;;10076:41;10134:19;;56954:87:0;9752:407:1;56954:87:0;-1:-1:-1;;;;;;57059:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;56837:256::o;65729:239::-;65788:4;;65801:143;65822:20;:27;65818:31;;65801:143;;;65896:5;-1:-1:-1;;;;;65869:32:0;:20;65890:1;65869:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;65869:23:0;:32;65865:72;;;-1:-1:-1;65923:4:0;;65729:239;-1:-1:-1;;65729:239:0:o;65865:72::-;65851:3;;;;:::i;:::-;;;;65801:143;;;-1:-1:-1;65957:5:0;;65729:239;-1:-1:-1;;65729:239:0:o;68106:95::-;17252:13;:11;:13::i;:::-;68171:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;68171:24:0;;::::1;::::0;;;::::1;::::0;;68106:95::o;68500:145::-;17252:13;:11;:13::i;:::-;68553:7:::1;68574;17439:6:::0;;-1:-1:-1;;;;;17439:6:0;;17366:87;68574:7:::1;-1:-1:-1::0;;;;;68566:21:0::1;68595;68566:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68552:69;;;68636:2;68628:11;;;::::0;::::1;;68545:100;68500:145::o:0;43209:185::-;43347:39;43364:4;43370:2;43374:7;43347:39;;;;;;;;;;;;:16;:39::i;66207:348::-;66282:16;66310:23;66336:17;66346:6;66336:9;:17::i;:::-;66310:43;;66360:25;66402:15;66388:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66388:30:0;;66360:58;;66430:9;66425:103;66445:15;66441:1;:19;66425:103;;;66490:30;66510:6;66518:1;66490:19;:30::i;:::-;66476:8;66485:1;66476:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;66462:3;;;;:::i;:::-;;;;66425:103;;;-1:-1:-1;66541:8:0;66207:348;-1:-1:-1;;;66207:348:0:o;67457:80::-;17252:13;:11;:13::i;:::-;67516:4:::1;:15:::0;67457:80::o;57359:233::-;57434:7;57470:30;57257:10;:17;;57169:113;57470:30;57462:5;:38;57454:95;;;;-1:-1:-1;;;57454:95:0;;17606:2:1;57454:95:0;;;17588:21:1;17645:2;17625:18;;;17618:30;17684:34;17664:18;;;17657:62;-1:-1:-1;;;17735:18:1;;;17728:42;17787:19;;57454:95:0;17404:408:1;57454:95:0;57567:10;57578:5;57567:17;;;;;;;;:::i;:::-;;;;;;;;;57560:24;;57359:233;;;:::o;67665:98::-;17252:13;:11;:13::i;:::-;67736:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;67665:98:::0;:::o;40301:223::-;40373:7;45188:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45188:16:0;;40437:56;;;;-1:-1:-1;;;40437:56:0;;16074:2:1;40437:56:0;;;16056:21:1;16113:2;16093:18;;;16086:30;-1:-1:-1;;;16132:18:1;;;16125:54;16196:18;;40437:56:0;15872:348:1;62637:21:0;;;;;;;:::i;65974:227::-;66029:4;;66042:135;66063:16;:23;66059:27;;66042:135;;;66129:5;-1:-1:-1;;;;;66106:28:0;:16;66123:1;66106:19;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;66106:19:0;:28;66102:68;;;-1:-1:-1;66156:4:0;;65974:227;-1:-1:-1;;65974:227:0:o;66102:68::-;66088:3;;;;:::i;:::-;;;;66042:135;;40032:207;40104:7;-1:-1:-1;;;;;40132:19:0;;40124:73;;;;-1:-1:-1;;;40124:73:0;;13419:2:1;40124:73:0;;;13401:21:1;13458:2;13438:18;;;13431:30;13497:34;13477:18;;;13470:62;-1:-1:-1;;;13548:18:1;;;13541:39;13597:19;;40124:73:0;13217:405:1;40124:73:0;-1:-1:-1;;;;;;40215:16:0;;;;;:9;:16;;;;;;;40032:207::o;18014:103::-;17252:13;:11;:13::i;:::-;18079:30:::1;18106:1;18079:18;:30::i;:::-;18014:103::o:0;68360:134::-;17252:13;:11;:13::i;:::-;68433:23:::1;68440:16;;68433:23;:::i;:::-;68463:25;:16;68482:6:::0;;68463:25:::1;:::i;67543:116::-:0;17252:13;:11;:13::i;:::-;67620::::1;:33:::0;67543:116::o;63160:33::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63160:33:0;;-1:-1:-1;63160:33:0;:::o;67155:184::-;17252:13;:11;:13::i;:::-;67264:15:::1;:34:::0;;-1:-1:-1;;67307:26:0;67264:34;;::::1;;::::0;;;::::1;-1:-1:-1::0;;67307:26:0;;;;;;;::::1;;::::0;;;::::1;;::::0;;67155:184::o;40760:104::-;40816:13;40849:7;40842:14;;;;;:::i;64347:1374::-;64413:6;;;;64412:7;64404:42;;;;-1:-1:-1;;;64404:42:0;;15307:2:1;64404:42:0;;;15289:21:1;15346:2;15326:18;;;15319:30;-1:-1:-1;;;15365:18:1;;;15358:52;15427:18;;64404:42:0;15105:346:1;64404:42:0;64453:14;64470:13;57257:10;:17;;57169:113;64470:13;64453:30;;64512:1;64498:11;:15;64490:55;;;;-1:-1:-1;;;64490:55:0;;18793:2:1;64490:55:0;;;18775:21:1;18832:2;18812:18;;;18805:30;18871:29;18851:18;;;18844:57;18918:18;;64490:55:0;18591:351:1;64490:55:0;64575:13;;64560:11;:28;;64552:77;;;;-1:-1:-1;;;64552:77:0;;;;;;;:::i;:::-;64668:9;;64644:20;64653:11;64644:6;:20;:::i;:::-;:33;;64636:68;;;;-1:-1:-1;;;64636:68:0;;13829:2:1;64636:68:0;;;13811:21:1;13868:2;13848:18;;;13841:30;-1:-1:-1;;;13887:18:1;;;13880:52;13949:18;;64636:68:0;13627:346:1;64636:68:0;64759:10;64711:24;64738:32;;;:20;:32;;;;;;64819:18;;64785:30;64804:11;64738:32;64785:30;:::i;:::-;:52;;64777:93;;;;-1:-1:-1;;;64777:93:0;;;;;;;:::i;:::-;17439:6;;-1:-1:-1;;;;;17439:6:0;64890:10;:21;64886:342;;64927:15;;;;;;;:23;;64946:4;64927:23;64924:224;;;64975:25;64989:10;64975:13;:25::i;:::-;64967:61;;;;-1:-1:-1;;;64967:61:0;;18441:2:1;64967:61:0;;;18423:21:1;18480:2;18460:18;;;18453:30;18519:25;18499:18;;;18492:53;18562:18;;64967:61:0;18239:347:1;64967:61:0;65085:18;;65051:30;65070:11;65051:16;:30;:::i;:::-;:52;;65043:93;;;;-1:-1:-1;;;65043:93:0;;;;;;;:::i;:::-;65186:11;65179:4;;:18;;;;:::i;:::-;65166:9;:31;;65158:62;;;;-1:-1:-1;;;65158:62:0;;;;;;;:::i;:::-;17439:6;;-1:-1:-1;;;;;17439:6:0;65240:10;:21;65236:330;;65277:11;;;;;;;:19;;65292:4;65277:19;65274:212;;;65321:21;65331:10;65321:9;:21::i;:::-;65313:53;;;;-1:-1:-1;;;65313:53:0;;11192:2:1;65313:53:0;;;11174:21:1;11231:2;11211:18;;;11204:30;-1:-1:-1;;;11250:18:1;;;11243:49;11309:18;;65313:53:0;10990:343:1;65313:53:0;65423:18;;65389:30;65408:11;65389:16;:30;:::i;:::-;:52;;65381:93;;;;-1:-1:-1;;;65381:93:0;;;;;;;:::i;:::-;65524:11;65517:4;;:18;;;;:::i;:::-;65504:9;:31;;65496:62;;;;-1:-1:-1;;;65496:62:0;;;;;;;:::i;:::-;65595:1;65578:138;65603:11;65598:1;:16;65578:138;;65653:10;65632:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;65675:33:0;;-1:-1:-1;65685:10:0;65697;65706:1;65697:6;:10;:::i;:::-;65675:9;:33::i;:::-;65616:3;;;;:::i;:::-;;;;65578:138;;;;64397:1324;;64347:1374;:::o;42346:155::-;42441:52;15997:10;42474:8;42484;42441:18;:52::i;67082:65::-;17252:13;:11;:13::i;:::-;67126:8:::1;:15:::0;;-1:-1:-1;;67126:15:0::1;;;::::0;;67082:65::o;43465:322::-;43639:41;15997:10;43672:7;43639:18;:41::i;:::-;43631:99;;;;-1:-1:-1;;;43631:99:0;;;;;;;:::i;:::-;43741:38;43755:4;43761:2;43765:7;43774:4;43741:13;:38::i;63118:37::-;;;;;;;;;;;;62663;;;;;;;:::i;66561:497::-;45590:4;45188:16;;;:7;:16;;;;;;66659:13;;-1:-1:-1;;;;;45188:16:0;66684:97;;;;-1:-1:-1;;;66684:97:0;;15658:2:1;66684:97:0;;;15640:21:1;15697:2;15677:18;;;15670:30;15736:34;15716:18;;;15709:62;-1:-1:-1;;;15787:18:1;;;15780:45;15842:19;;66684:97:0;15456:411:1;66684:97:0;66797:8;;;;;;;66794:62;;66834:14;66827:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66561:497;;;:::o;66794:62::-;66864:28;66895:10;:8;:10::i;:::-;66864:41;;66950:1;66925:14;66919:28;:32;:133;;;;;;;;;;;;;;;;;66987:14;67003:18;:7;:16;:18::i;:::-;67023:13;66970:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66919:133;66912:140;66561:497;-1:-1:-1;;;66561:497:0:o;67345:104::-;17252:13;:11;:13::i;:::-;67416:18:::1;:27:::0;67345:104::o;67769:122::-;17252:13;:11;:13::i;:::-;67852:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;68209:144::-:0;17252:13;:11;:13::i;:::-;68284:27:::1;68291:20;;68284:27;:::i;:::-;68318:29;:20;68341:6:::0;;68318:29:::1;:::i;63656:666::-:0;17439:6;;-1:-1:-1;;;;;17439:6:0;63726:10;:21;63718:72;;;;-1:-1:-1;;;63718:72:0;;9547:2:1;63718:72:0;;;9529:21:1;9586:2;9566:18;;;9559:30;9625:34;9605:18;;;9598:62;-1:-1:-1;;;9676:18:1;;;9669:36;9722:19;;63718:72:0;9345:402:1;63718:72:0;63845:10;63797:24;63824:32;;;:20;:32;;;;;;;63882:13;57257:10;:17;;57169:113;63882:13;63946:23;;63865:30;;-1:-1:-1;63912:30:0;63931:11;63912:16;:30;:::i;:::-;:57;;63904:98;;;;-1:-1:-1;;;63904:98:0;;;;;;;:::i;:::-;64034:18;;64019:11;:33;;64011:82;;;;-1:-1:-1;;;64011:82:0;;;;;;;:::i;:::-;64130:11;64123:4;;:18;;;;:::i;:::-;64110:9;:31;;64102:62;;;;-1:-1:-1;;;64102:62:0;;;;;;;:::i;:::-;64192:1;64175:142;64200:11;64195:1;:16;64175:142;;64252:10;64231:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;64276:33:0;;-1:-1:-1;64286:10:0;64298;64307:1;64298:6;:10;:::i;64276:33::-;64213:3;;;;:::i;:::-;;;;64175:142;;67899:120;17252:13;:11;:13::i;:::-;67981:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;18272:201::-:0;17252:13;:11;:13::i;:::-;-1:-1:-1;;;;;18361:22:0;::::1;18353:73;;;::::0;-1:-1:-1;;;18353:73:0;;10785:2:1;18353:73:0::1;::::0;::::1;10767:21:1::0;10824:2;10804:18;;;10797:30;10863:34;10843:18;;;10836:62;-1:-1:-1;;;10914:18:1;;;10907:36;10960:19;;18353:73:0::1;10583:402:1::0;18353:73:0::1;18437:28;18456:8;18437:18;:28::i;39663:305::-:0;39765:4;-1:-1:-1;;;;;;39802:40:0;;-1:-1:-1;;;39802:40:0;;:105;;-1:-1:-1;;;;;;;39859:48:0;;-1:-1:-1;;;39859:48:0;39802:105;:158;;;-1:-1:-1;;;;;;;;;;31204:40:0;;;39924:36;31095:157;17531:132;17439:6;;-1:-1:-1;;;;;17439:6:0;15997:10;17595:23;17587:68;;;;-1:-1:-1;;;17587:68:0;;14946:2:1;17587:68:0;;;14928:21:1;;;14965:18;;;14958:30;15024:34;15004:18;;;14997:62;15076:18;;17587:68:0;14744:356:1;51922:135:0;45590:4;45188:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45188:16:0;51996:53;;;;-1:-1:-1;;;51996:53:0;;16074:2:1;51996:53:0;;;16056:21:1;16113:2;16093:18;;;16086:30;-1:-1:-1;;;16132:18:1;;;16125:54;16196:18;;51996:53:0;15872:348:1;51201:174:0;51276:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51276:29:0;-1:-1:-1;;;;;51276:29:0;;;;;;;;:24;;51330:23;51276:24;51330:14;:23::i;:::-;-1:-1:-1;;;;;51321:46:0;;;;;;;;;;;51201:174;;:::o;45820:264::-;45913:4;45930:13;45946:23;45961:7;45946:14;:23::i;:::-;45930:39;;45999:5;-1:-1:-1;;;;;45988:16:0;:7;-1:-1:-1;;;;;45988:16:0;;:52;;;-1:-1:-1;;;;;;42693:25:0;;;42669:4;42693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46008:32;45988:87;;;;46068:7;-1:-1:-1;;;;;46044:31:0;:20;46056:7;46044:11;:20::i;:::-;-1:-1:-1;;;;;46044:31:0;;45988:87;45980:96;45820:264;-1:-1:-1;;;;45820:264:0:o;49819:1263::-;49978:4;-1:-1:-1;;;;;49951:31:0;:23;49966:7;49951:14;:23::i;:::-;-1:-1:-1;;;;;49951:31:0;;49943:81;;;;-1:-1:-1;;;49943:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50043:16:0;;50035:65;;;;-1:-1:-1;;;50035:65:0;;12660:2:1;50035:65:0;;;12642:21:1;12699:2;12679:18;;;12672:30;12738:34;12718:18;;;12711:62;-1:-1:-1;;;12789:18:1;;;12782:34;12833:19;;50035:65:0;12458:400:1;50035:65:0;50113:42;50134:4;50140:2;50144:7;50153:1;50113:20;:42::i;:::-;50285:4;-1:-1:-1;;;;;50258:31:0;:23;50273:7;50258:14;:23::i;:::-;-1:-1:-1;;;;;50258:31:0;;50250:81;;;;-1:-1:-1;;;50250:81:0;;;;;;;:::i;:::-;50403:24;;;;:15;:24;;;;;;;;50396:31;;-1:-1:-1;;;;;;50396:31:0;;;;;;-1:-1:-1;;;;;50879:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;50879:20:0;;;50914:13;;;;;;;;;:18;;50396:31;50914:18;;;50954:16;;;:7;:16;;;;;;:21;;;;;;;;;;50993:27;;50419:7;;50993:27;;;41691:346;41621:416;;:::o;18633:191::-;18726:6;;;-1:-1:-1;;;;;18743:17:0;;;-1:-1:-1;;;;;;18743:17:0;;;;;;;18776:40;;18726:6;;;18743:17;18726:6;;18776:40;;18707:16;;18776:40;18696:128;18633:191;:::o;46426:110::-;46502:26;46512:2;46516:7;46502:26;;;;;;;;;;;;:9;:26::i;51518:315::-;51673:8;-1:-1:-1;;;;;51664:17:0;:5;-1:-1:-1;;;;;51664:17:0;;;51656:55;;;;-1:-1:-1;;;51656:55:0;;13065:2:1;51656:55:0;;;13047:21:1;13104:2;13084:18;;;13077:30;13143:27;13123:18;;;13116:55;13188:18;;51656:55:0;12863:349:1;51656:55:0;-1:-1:-1;;;;;51722:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51722:46:0;;;;;;;;;;51784:41;;8655::1;;;51784::0;;8628:18:1;51784:41:0;;;;;;;51518:315;;;:::o;44668:313::-;44824:28;44834:4;44840:2;44844:7;44824:9;:28::i;:::-;44871:47;44894:4;44900:2;44904:7;44913:4;44871:22;:47::i;:::-;44863:110;;;;-1:-1:-1;;;44863:110:0;;;;;;;:::i;63532:102::-;63592:13;63621:7;63614:14;;;;;:::i;13344:716::-;13400:13;13451:14;13468:17;13479:5;13468:10;:17::i;:::-;13488:1;13468:21;13451:38;;13504:20;13538:6;13527:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13527:18:0;-1:-1:-1;13504:41:0;-1:-1:-1;13669:28:0;;;13685:2;13669:28;13726:288;-1:-1:-1;;13758:5:0;-1:-1:-1;;;13895:2:0;13884:14;;13879:30;13758:5;13866:44;13956:2;13947:11;;;-1:-1:-1;13981:10:0;13977:21;;13993:5;;13977:21;13726:288;;57666:915;57843:61;57870:4;57876:2;57880:12;57894:9;57843:26;:61::i;:::-;57933:1;57921:9;:13;57917:222;;;58064:63;;-1:-1:-1;;;58064:63:0;;18019:2:1;58064:63:0;;;18001:21:1;18058:2;18038:18;;;18031:30;18097:34;18077:18;;;18070:62;-1:-1:-1;;;18148:18:1;;;18141:51;18209:19;;58064:63:0;17817:417:1;57917:222:0;58169:12;-1:-1:-1;;;;;58198:18:0;;58194:187;;58233:40;58265:7;59408:10;:17;;59381:24;;;;:15;:24;;;;;:44;;;59436:24;;;;;;;;;;;;59304:164;58233:40;58194:187;;;58303:2;-1:-1:-1;;;;;58295:10:0;:4;-1:-1:-1;;;;;58295:10:0;;58291:90;;58322:47;58355:4;58361:7;58322:32;:47::i;:::-;-1:-1:-1;;;;;58395:16:0;;58391:183;;58428:45;58465:7;58428:36;:45::i;:::-;58391:183;;;58501:4;-1:-1:-1;;;;;58495:10:0;:2;-1:-1:-1;;;;;58495:10:0;;58491:83;;58522:40;58550:2;58554:7;58522:27;:40::i;:::-;57832:749;57666:915;;;;:::o;46763:319::-;46892:18;46898:2;46902:7;46892:5;:18::i;:::-;46943:53;46974:1;46978:2;46982:7;46991:4;46943:22;:53::i;:::-;46921:153;;;;-1:-1:-1;;;46921:153:0;;;;;;;:::i;52621:853::-;52775:4;-1:-1:-1;;;;;52796:13:0;;20359:19;:23;52792:675;;52832:71;;-1:-1:-1;;;52832:71:0;;-1:-1:-1;;;;;52832:36:0;;;;;:71;;15997:10;;52883:4;;52889:7;;52898:4;;52832:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52832:71:0;;;;;;;;-1:-1:-1;;52832:71:0;;;;;;;;;;;;:::i;:::-;;;52828:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53073:13:0;;53069:328;;53116:60;;-1:-1:-1;;;53116:60:0;;;;;;;:::i;53069:328::-;53347:6;53341:13;53332:6;53328:2;53324:15;53317:38;52828:584;-1:-1:-1;;;;;;52954:51:0;-1:-1:-1;;;52954:51:0;;-1:-1:-1;52947:58:0;;52792:675;-1:-1:-1;53451:4:0;52621:853;;;;;;:::o;10210:922::-;10263:7;;-1:-1:-1;;;10341:15:0;;10337:102;;-1:-1:-1;;;10377:15:0;;;-1:-1:-1;10421:2:0;10411:12;10337:102;10466:6;10457:5;:15;10453:102;;10502:6;10493:15;;;-1:-1:-1;10537:2:0;10527:12;10453:102;10582:6;10573:5;:15;10569:102;;10618:6;10609:15;;;-1:-1:-1;10653:2:0;10643:12;10569:102;10698:5;10689;:14;10685:99;;10733:5;10724:14;;;-1:-1:-1;10767:1:0;10757:11;10685:99;10811:5;10802;:14;10798:99;;10846:5;10837:14;;;-1:-1:-1;10880:1:0;10870:11;10798:99;10924:5;10915;:14;10911:99;;10959:5;10950:14;;;-1:-1:-1;10993:1:0;10983:11;10911:99;11037:5;11028;:14;11024:66;;11073:1;11063:11;11118:6;10210:922;-1:-1:-1;;10210:922:0:o;54206:410::-;54396:1;54384:9;:13;54380:229;;;-1:-1:-1;;;;;54418:18:0;;;54414:87;;-1:-1:-1;;;;;54457:15:0;;;;;;:9;:15;;;;;:28;;54476:9;;54457:15;:28;;54476:9;;54457:28;:::i;:::-;;;;-1:-1:-1;;54414:87:0;-1:-1:-1;;;;;54519:16:0;;;54515:83;;-1:-1:-1;;;;;54556:13:0;;;;;;:9;:13;;;;;:26;;54573:9;;54556:13;:26;;54573:9;;54556:26;:::i;:::-;;;;-1:-1:-1;;54206:410:0;;;;:::o;60095:988::-;60361:22;60411:1;60386:22;60403:4;60386:16;:22::i;:::-;:26;;;;:::i;:::-;60423:18;60444:26;;;:17;:26;;;;;;60361:51;;-1:-1:-1;60577:28:0;;;60573:328;;-1:-1:-1;;;;;60644:18:0;;60622:19;60644:18;;;:12;:18;;;;;;;;:34;;;;;;;;;60695:30;;;;;;:44;;;60812:30;;:17;:30;;;;;:43;;;60573:328;-1:-1:-1;60997:26:0;;;;:17;:26;;;;;;;;60990:33;;;-1:-1:-1;;;;;61041:18:0;;;;;:12;:18;;;;;:34;;;;;;;61034:41;60095:988::o;61378:1079::-;61656:10;:17;61631:22;;61656:21;;61676:1;;61656:21;:::i;:::-;61688:18;61709:24;;;:15;:24;;;;;;62082:10;:26;;61631:46;;-1:-1:-1;61709:24:0;;61631:46;;62082:26;;;;;;:::i;:::-;;;;;;;;;62060:48;;62146:11;62121:10;62132;62121:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;62226:28;;;:15;:28;;;;;;;:41;;;62398:24;;;;;62391:31;62433:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;61449:1008;;;61378:1079;:::o;58882:221::-;58967:14;58984:20;59001:2;58984:16;:20::i;:::-;-1:-1:-1;;;;;59015:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59060:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58882:221:0:o;47418:942::-;-1:-1:-1;;;;;47498:16:0;;47490:61;;;;-1:-1:-1;;;47490:61:0;;14585:2:1;47490:61:0;;;14567:21:1;;;14604:18;;;14597:30;14663:34;14643:18;;;14636:62;14715:18;;47490:61:0;14383:356:1;47490:61:0;45590:4;45188:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45188:16:0;45614:31;47562:58;;;;-1:-1:-1;;;47562:58:0;;11946:2:1;47562:58:0;;;11928:21:1;11985:2;11965:18;;;11958:30;12024;12004:18;;;11997:58;12072:18;;47562:58:0;11744:352:1;47562:58:0;47633:48;47662:1;47666:2;47670:7;47679:1;47633:20;:48::i;:::-;45590:4;45188:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45188:16:0;45614:31;47771:58;;;;-1:-1:-1;;;47771:58:0;;11946:2:1;47771:58:0;;;11928:21:1;11985:2;11965:18;;;11958:30;12024;12004:18;;;11997:58;12072:18;;47771:58:0;11744:352:1;47771:58:0;-1:-1:-1;;;;;48178:13:0;;;;;;:9;:13;;;;;;;;:18;;48195:1;48178:18;;;48220:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48220:21:0;;;;;48259:33;48228:7;;48178:13;;48259:33;;48178:13;;48259:33;67736:21:::1;67665:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:248::-;3838:6;3846;3899:2;3887:9;3878:7;3874:23;3870:32;3867:52;;;3915:1;3912;3905:12;3867:52;3938:26;3954:9;3938:26;:::i;4029:245::-;4087:6;4140:2;4128:9;4119:7;4115:23;4111:32;4108:52;;;4156:1;4153;4146:12;4108:52;4195:9;4182:23;4214:30;4238:5;4214:30;:::i;4279:249::-;4348:6;4401:2;4389:9;4380:7;4376:23;4372:32;4369:52;;;4417:1;4414;4407:12;4369:52;4449:9;4443:16;4468:30;4492:5;4468:30;:::i;4533:450::-;4602:6;4655:2;4643:9;4634:7;4630:23;4626:32;4623:52;;;4671:1;4668;4661:12;4623:52;4711:9;4698:23;4744:18;4736:6;4733:30;4730:50;;;4776:1;4773;4766:12;4730:50;4799:22;;4852:4;4844:13;;4840:27;-1:-1:-1;4830:55:1;;4881:1;4878;4871:12;4830:55;4904:73;4969:7;4964:2;4951:16;4946:2;4942;4938:11;4904:73;:::i;4988:180::-;5047:6;5100:2;5088:9;5079:7;5075:23;5071:32;5068:52;;;5116:1;5113;5106:12;5068:52;-1:-1:-1;5139:23:1;;4988:180;-1:-1:-1;4988:180:1:o;5173:257::-;5214:3;5252:5;5246:12;5279:6;5274:3;5267:19;5295:63;5351:6;5344:4;5339:3;5335:14;5328:4;5321:5;5317:16;5295:63;:::i;:::-;5412:2;5391:15;-1:-1:-1;;5387:29:1;5378:39;;;;5419:4;5374:50;;5173:257;-1:-1:-1;;5173:257:1:o;5435:1527::-;5659:3;5697:6;5691:13;5723:4;5736:51;5780:6;5775:3;5770:2;5762:6;5758:15;5736:51;:::i;:::-;5850:13;;5809:16;;;;5872:55;5850:13;5809:16;5894:15;;;5872:55;:::i;:::-;6016:13;;5949:20;;;5989:1;;6076;6098:18;;;;6151;;;;6178:93;;6256:4;6246:8;6242:19;6230:31;;6178:93;6319:2;6309:8;6306:16;6286:18;6283:40;6280:167;;;-1:-1:-1;;;6346:33:1;;6402:4;6399:1;6392:15;6432:4;6353:3;6420:17;6280:167;6463:18;6490:110;;;;6614:1;6609:328;;;;6456:481;;6490:110;-1:-1:-1;;6525:24:1;;6511:39;;6570:20;;;;-1:-1:-1;6490:110:1;;6609:328;19202:1;19195:14;;;19239:4;19226:18;;6704:1;6718:169;6732:8;6729:1;6726:15;6718:169;;;6814:14;;6799:13;;;6792:37;6857:16;;;;6749:10;;6718:169;;;6722:3;;6918:8;6911:5;6907:20;6900:27;;6456:481;-1:-1:-1;6953:3:1;;5435:1527;-1:-1:-1;;;;;;;;;;;5435:1527:1:o;7385:488::-;-1:-1:-1;;;;;7654:15:1;;;7636:34;;7706:15;;7701:2;7686:18;;7679:43;7753:2;7738:18;;7731:34;;;7801:3;7796:2;7781:18;;7774:31;;;7579:4;;7822:45;;7847:19;;7839:6;7822:45;:::i;:::-;7814:53;7385:488;-1:-1:-1;;;;;;7385:488:1:o;7878:632::-;8049:2;8101:21;;;8171:13;;8074:18;;;8193:22;;;8020:4;;8049:2;8272:15;;;;8246:2;8231:18;;;8020:4;8315:169;8329:6;8326:1;8323:13;8315:169;;;8390:13;;8378:26;;8459:15;;;;8424:12;;;;8351:1;8344:9;8315:169;;;-1:-1:-1;8501:3:1;;7878:632;-1:-1:-1;;;;;;7878:632:1:o;8707:219::-;8856:2;8845:9;8838:21;8819:4;8876:44;8916:2;8905:9;8901:18;8893:6;8876:44;:::i;8931:409::-;9133:2;9115:21;;;9172:2;9152:18;;;9145:30;9211:34;9206:2;9191:18;;9184:62;-1:-1:-1;;;9277:2:1;9262:18;;9255:43;9330:3;9315:19;;8931:409::o;10164:414::-;10366:2;10348:21;;;10405:2;10385:18;;;10378:30;10444:34;10439:2;10424:18;;10417:62;-1:-1:-1;;;10510:2:1;10495:18;;10488:48;10568:3;10553:19;;10164:414::o;11338:401::-;11540:2;11522:21;;;11579:2;11559:18;;;11552:30;11618:34;11613:2;11598:18;;11591:62;-1:-1:-1;;;11684:2:1;11669:18;;11662:35;11729:3;11714:19;;11338:401::o;12101:352::-;12303:2;12285:21;;;12342:2;12322:18;;;12315:30;12381;12376:2;12361:18;;12354:58;12444:2;12429:18;;12101:352::o;13978:400::-;14180:2;14162:21;;;14219:2;14199:18;;;14192:30;14258:34;14253:2;14238:18;;14231:62;-1:-1:-1;;;14324:2:1;14309:18;;14302:34;14368:3;14353:19;;13978:400::o;16627:342::-;16829:2;16811:21;;;16868:2;16848:18;;;16841:30;-1:-1:-1;;;16902:2:1;16887:18;;16880:48;16960:2;16945:18;;16627:342::o;19255:128::-;19295:3;19326:1;19322:6;19319:1;19316:13;19313:39;;;19332:18;;:::i;:::-;-1:-1:-1;19368:9:1;;19255:128::o;19388:168::-;19428:7;19494:1;19490;19486:6;19482:14;19479:1;19476:21;19471:1;19464:9;19457:17;19453:45;19450:71;;;19501:18;;:::i;:::-;-1:-1:-1;19541:9:1;;19388:168::o;19561:125::-;19601:4;19629:1;19626;19623:8;19620:34;;;19634:18;;:::i;:::-;-1:-1:-1;19671:9:1;;19561:125::o;19691:258::-;19763:1;19773:113;19787:6;19784:1;19781:13;19773:113;;;19863:11;;;19857:18;19844:11;;;19837:39;19809:2;19802:10;19773:113;;;19904:6;19901:1;19898:13;19895:48;;;-1:-1:-1;;19939:1:1;19921:16;;19914:27;19691:258::o;19954:380::-;20033:1;20029:12;;;;20076;;;20097:61;;20151:4;20143:6;20139:17;20129:27;;20097:61;20204:2;20196:6;20193:14;20173:18;20170:38;20167:161;;;20250:10;20245:3;20241:20;20238:1;20231:31;20285:4;20282:1;20275:15;20313:4;20310:1;20303:15;20167:161;;19954:380;;;:::o;20339:135::-;20378:3;-1:-1:-1;;20399:17:1;;20396:43;;;20419:18;;:::i;:::-;-1:-1:-1;20466:1:1;20455:13;;20339:135::o;20479:127::-;20540:10;20535:3;20531:20;20528:1;20521:31;20571:4;20568:1;20561:15;20595:4;20592:1;20585:15;20743:127;20804:10;20799:3;20795:20;20792:1;20785:31;20835:4;20832:1;20825:15;20859:4;20856:1;20849:15;20875:127;20936:10;20931:3;20927:20;20924:1;20917:31;20967:4;20964:1;20957:15;20991:4;20988:1;20981:15;21007:127;21068:10;21063:3;21059:20;21056:1;21049:31;21099:4;21096:1;21089:15;21123:4;21120:1;21113:15;21139:131;-1:-1:-1;;;;;;21213:32:1;;21203:43;;21193:71;;21260:1;21257;21250:12
Swarm Source
ipfs://43bf1b0d6f31acc4c356eddb2f7f32b2cbeacb39c2b77e4df99b3964c4bc2bea
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.