Overview
POL Balance
0 POL
POL Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 3,624 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 61136243 | 11 days ago | IN | 0 POL | 0.00138195 | ||||
Set Approval For... | 60869594 | 18 days ago | IN | 0 POL | 0.00076595 | ||||
Set Approval For... | 60854060 | 18 days ago | IN | 0 POL | 0.00152014 | ||||
Set Approval For... | 60712236 | 22 days ago | IN | 0 POL | 0.00138447 | ||||
Set Approval For... | 60147740 | 36 days ago | IN | 0 POL | 0.00218068 | ||||
Set Approval For... | 59955589 | 41 days ago | IN | 0 POL | 0.00147454 | ||||
Set Approval For... | 59742698 | 46 days ago | IN | 0 POL | 0.00074874 | ||||
Set Approval For... | 59645138 | 49 days ago | IN | 0 POL | 0.00138195 | ||||
Set Approval For... | 59625748 | 49 days ago | IN | 0 POL | 0.00075134 | ||||
Set Approval For... | 59625707 | 49 days ago | IN | 0 POL | 0.00074874 | ||||
Safe Transfer Fr... | 59521204 | 52 days ago | IN | 0 POL | 0.00200086 | ||||
Set Approval For... | 59435825 | 54 days ago | IN | 0 POL | 0.00089676 | ||||
Set Approval For... | 58880548 | 68 days ago | IN | 0 POL | 0.00230745 | ||||
Set Approval For... | 58837582 | 69 days ago | IN | 0 POL | 0.00138516 | ||||
Set Approval For... | 58651242 | 73 days ago | IN | 0 POL | 0.00072459 | ||||
Set Approval For... | 58588841 | 75 days ago | IN | 0 POL | 0.00079704 | ||||
Set Approval For... | 58539001 | 76 days ago | IN | 0 POL | 0.00200469 | ||||
Set Approval For... | 58333535 | 81 days ago | IN | 0 POL | 0.0019761 | ||||
Set Approval For... | 58299310 | 82 days ago | IN | 0 POL | 0.00138253 | ||||
Set Approval For... | 58269415 | 83 days ago | IN | 0 POL | 0.0008695 | ||||
Set Approval For... | 58252042 | 83 days ago | IN | 0 POL | 0.00139416 | ||||
Safe Transfer Fr... | 58016256 | 89 days ago | IN | 0 POL | 0.00198408 | ||||
Set Approval For... | 57953184 | 91 days ago | IN | 0 POL | 0.00138449 | ||||
Set Approval For... | 57724584 | 97 days ago | IN | 0 POL | 0.00230325 | ||||
Set Approval For... | 57356775 | 106 days ago | IN | 0 POL | 0.00077289 |
Loading...
Loading
Contract Name:
Pioneers
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-11-16 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 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/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/ERC721URIStorage.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: contracts/pioneers.sol pragma solidity ^0.8.9; contract Pioneers is ERC721, ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public totalSupply; string private baseURI; constructor() ERC721("Harbor Pioneers", "PIONEER") { totalSupply = 0; _tokenIdCounter.increment(); } function safeMint(address to) public onlyOwner { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); totalSupply+=1; _safeMint(to, tokenId); } function mintDrop(address[] memory addresses) public onlyOwner { for (uint256 i=0; i<addresses.length; i++) { safeMint(addresses[i]); } } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(owner()).transfer(balance); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"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":"addresses","type":"address[]"}],"name":"mintDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020016e486172626f722050696f6e6565727360881b815250604051806040016040528060078152602001662824a7a722a2a960c91b81525081600090816200006b9190620001c0565b5060016200007a8282620001c0565b5050506200009762000091620000bc60201b60201c565b620000c0565b6000600981905550620000b660086200011260201b62000b951760201c565b6200028c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014657607f821691505b6020821081036200016757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001bb57600081815260208120601f850160051c81016020861015620001965750805b601f850160051c820191505b81811015620001b757828155600101620001a2565b5050505b505050565b81516001600160401b03811115620001dc57620001dc6200011b565b620001f481620001ed845462000131565b846200016d565b602080601f8311600181146200022c5760008415620002135750858301515b600019600386901b1c1916600185901b178555620001b7565b600085815260208120601f198616915b828110156200025d578886015182559484019460019091019084016200023c565b50858210156200027c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6123af806200029c6000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c80636352211e116100d8578063a22cb4651161008c578063c87b56dd11610066578063c87b56dd146102fe578063e985e9c514610311578063f2fde38b1461035a57600080fd5b8063a22cb465146102c5578063b076da6b146102d8578063b88d4fde146102eb57600080fd5b8063715018a6116100bd578063715018a6146102975780638da5cb5b1461029f57806395d89b41146102bd57600080fd5b80636352211e1461027157806370a082311461028457600080fd5b806323b872dd1161012f57806340d097c31161011457806340d097c31461023857806342842e0e1461024b57806355f804b31461025e57600080fd5b806323b872dd1461021d5780633ccfd60b1461023057600080fd5b8063081812fc11610160578063081812fc146101b9578063095ea7b3146101f157806318160ddd1461020657600080fd5b806301ffc9a71461017c57806306fdde03146101a4575b600080fd5b61018f61018a366004611c37565b61036d565b60405190151581526020015b60405180910390f35b6101ac610452565b60405161019b9190611cc2565b6101cc6101c7366004611cd5565b6104e4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019b565b6102046101ff366004611d17565b610518565b005b61020f60095481565b60405190815260200161019b565b61020461022b366004611d41565b6106d4565b610204610775565b610204610246366004611d7d565b6107e6565b610204610259366004611d41565b61082c565b61020461026c366004611e8c565b610847565b6101cc61027f366004611cd5565b61085b565b61020f610292366004611d7d565b6108e7565b6102046109b5565b60075473ffffffffffffffffffffffffffffffffffffffff166101cc565b6101ac6109c9565b6102046102d3366004611ed5565b6109d8565b6102046102e6366004611f11565b6109e3565b6102046102f9366004611fbe565b610a2b565b6101ac61030c366004611cd5565b610ad3565b61018f61031f36600461203a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b610204610368366004611d7d565b610ade565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061040057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061044c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546104619061206d565b80601f016020809104026020016040519081016040528092919081815260200182805461048d9061206d565b80156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b60006104ef82610b9e565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105238261085b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff82161480610639575073ffffffffffffffffffffffffffffffffffffffff8116600090815260056020908152604080832033845290915290205460ff165b6106c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105dc565b6106cf8383610c29565b505050565b6106de3382610cc9565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105dc565b6106cf838383610d89565b61077d611091565b4761079d60075473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107e2573d6000803e3d6000fd5b5050565b6107ee611091565b60006107f960085490565b9050610809600880546001019055565b60016009600082825461081c91906120ef565b909155506107e290508282611112565b6106cf83838360405180602001604052806000815250610a2b565b61084f611091565b600a6107e28282612150565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061044c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105dc565b600073ffffffffffffffffffffffffffffffffffffffff821661098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016105dc565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6109bd611091565b6109c7600061112c565b565b6060600180546104619061206d565b6107e23383836111a3565b6109eb611091565b60005b81518110156107e257610a19828281518110610a0c57610a0c61226a565b60200260200101516107e6565b80610a2381612299565b9150506109ee565b610a353383610cc9565b610ac1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105dc565b610acd848484846112d0565b50505050565b606061044c82611373565b610ae6611091565b73ffffffffffffffffffffffffffffffffffffffff8116610b89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105dc565b610b928161112c565b50565b80546001019055565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16610b92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105dc565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190610c838261085b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610cd58361085b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d43575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80610d8157508373ffffffffffffffffffffffffffffffffffffffff16610d69846104e4565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16610da98261085b565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105dc565b73ffffffffffffffffffffffffffffffffffffffff8216610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105dc565b610efb838383600161146e565b8273ffffffffffffffffffffffffffffffffffffffff16610f1b8261085b565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105dc565b600081815260046020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000090811690915573ffffffffffffffffffffffffffffffffffffffff8781168086526003855283862080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146109c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105dc565b6107e282826040518060200160405280600081525061152a565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105dc565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112db848484610d89565b6112e7848484846115cd565b610acd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105dc565b606061137e82610b9e565b600082815260066020526040812080546113979061206d565b80601f01602080910402602001604051908101604052809291908181526020018280546113c39061206d565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905060006114216117c0565b90508051600003611433575092915050565b81511561146557808260405160200161144d9291906122d1565b60405160208183030381529060405292505050919050565b610d81846117cf565b6001811115610acd5773ffffffffffffffffffffffffffffffffffffffff8416156114ce5773ffffffffffffffffffffffffffffffffffffffff8416600090815260036020526040812080548392906114c8908490612300565b90915550505b73ffffffffffffffffffffffffffffffffffffffff831615610acd5773ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805483929061151f9084906120ef565b909155505050505050565b6115348383611836565b61154160008484846115cd565b6106cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105dc565b600073ffffffffffffffffffffffffffffffffffffffff84163b156117b5576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611644903390899088908890600401612313565b6020604051808303816000875af192505050801561169d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261169a9181019061235c565b60015b61176a573d8080156116cb576040519150601f19603f3d011682016040523d82523d6000602084013e6116d0565b606091505b508051600003611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105dc565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610d81565b506001949350505050565b6060600a80546104619061206d565b60606117da82610b9e565b60006117e46117c0565b90506000815111611804576040518060200160405280600081525061182f565b8061180e84611a69565b60405160200161181f9291906122d1565b6040516020818303038152906040525b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82166118b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105dc565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105dc565b61194d60008383600161146e565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156119d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105dc565b73ffffffffffffffffffffffffffffffffffffffff8216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606000611a7683611b27565b600101905060008167ffffffffffffffff811115611a9657611a96611d98565b6040519080825280601f01601f191660200182016040528015611ac0576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084611aca57509392505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611b70577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611b9c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bba57662386f26fc10000830492506010015b6305f5e1008310611bd2576305f5e100830492506008015b6127108310611be657612710830492506004015b60648310611bf8576064830492506002015b600a831061044c5760010192915050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b9257600080fd5b600060208284031215611c4957600080fd5b813561182f81611c09565b60005b83811015611c6f578181015183820152602001611c57565b50506000910152565b60008151808452611c90816020860160208601611c54565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061182f6020830184611c78565b600060208284031215611ce757600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611d1257600080fd5b919050565b60008060408385031215611d2a57600080fd5b611d3383611cee565b946020939093013593505050565b600080600060608486031215611d5657600080fd5b611d5f84611cee565b9250611d6d60208501611cee565b9150604084013590509250925092565b600060208284031215611d8f57600080fd5b61182f82611cee565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611e0e57611e0e611d98565b604052919050565b600067ffffffffffffffff831115611e3057611e30611d98565b611e6160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601611dc7565b9050828152838383011115611e7557600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e9e57600080fd5b813567ffffffffffffffff811115611eb557600080fd5b8201601f81018413611ec657600080fd5b610d8184823560208401611e16565b60008060408385031215611ee857600080fd5b611ef183611cee565b915060208301358015158114611f0657600080fd5b809150509250929050565b60006020808385031215611f2457600080fd5b823567ffffffffffffffff80821115611f3c57600080fd5b818501915085601f830112611f5057600080fd5b813581811115611f6257611f62611d98565b8060051b9150611f73848301611dc7565b8181529183018401918481019088841115611f8d57600080fd5b938501935b83851015611fb257611fa385611cee565b82529385019390850190611f92565b98975050505050505050565b60008060008060808587031215611fd457600080fd5b611fdd85611cee565b9350611feb60208601611cee565b925060408501359150606085013567ffffffffffffffff81111561200e57600080fd5b8501601f8101871361201f57600080fd5b61202e87823560208401611e16565b91505092959194509250565b6000806040838503121561204d57600080fd5b61205683611cee565b915061206460208401611cee565b90509250929050565b600181811c9082168061208157607f821691505b6020821081036120ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561044c5761044c6120c0565b601f8211156106cf57600081815260208120601f850160051c810160208610156121295750805b601f850160051c820191505b8181101561214857828155600101612135565b505050505050565b815167ffffffffffffffff81111561216a5761216a611d98565b61217e81612178845461206d565b84612102565b602080601f8311600181146121d1576000841561219b5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555612148565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561221e578886015182559484019460019091019084016121ff565b508582101561225a57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ca576122ca6120c0565b5060010190565b600083516122e3818460208801611c54565b8351908301906122f7818360208801611c54565b01949350505050565b8181038181111561044c5761044c6120c0565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526123526080830184611c78565b9695505050505050565b60006020828403121561236e57600080fd5b815161182f81611c0956fea2646970667358221220fc19371e04f9ba96e7fdc5b942c363aeaf9c11e9ebfef5a37a34411d070ad6c064736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101775760003560e01c80636352211e116100d8578063a22cb4651161008c578063c87b56dd11610066578063c87b56dd146102fe578063e985e9c514610311578063f2fde38b1461035a57600080fd5b8063a22cb465146102c5578063b076da6b146102d8578063b88d4fde146102eb57600080fd5b8063715018a6116100bd578063715018a6146102975780638da5cb5b1461029f57806395d89b41146102bd57600080fd5b80636352211e1461027157806370a082311461028457600080fd5b806323b872dd1161012f57806340d097c31161011457806340d097c31461023857806342842e0e1461024b57806355f804b31461025e57600080fd5b806323b872dd1461021d5780633ccfd60b1461023057600080fd5b8063081812fc11610160578063081812fc146101b9578063095ea7b3146101f157806318160ddd1461020657600080fd5b806301ffc9a71461017c57806306fdde03146101a4575b600080fd5b61018f61018a366004611c37565b61036d565b60405190151581526020015b60405180910390f35b6101ac610452565b60405161019b9190611cc2565b6101cc6101c7366004611cd5565b6104e4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019b565b6102046101ff366004611d17565b610518565b005b61020f60095481565b60405190815260200161019b565b61020461022b366004611d41565b6106d4565b610204610775565b610204610246366004611d7d565b6107e6565b610204610259366004611d41565b61082c565b61020461026c366004611e8c565b610847565b6101cc61027f366004611cd5565b61085b565b61020f610292366004611d7d565b6108e7565b6102046109b5565b60075473ffffffffffffffffffffffffffffffffffffffff166101cc565b6101ac6109c9565b6102046102d3366004611ed5565b6109d8565b6102046102e6366004611f11565b6109e3565b6102046102f9366004611fbe565b610a2b565b6101ac61030c366004611cd5565b610ad3565b61018f61031f36600461203a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b610204610368366004611d7d565b610ade565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061040057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061044c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546104619061206d565b80601f016020809104026020016040519081016040528092919081815260200182805461048d9061206d565b80156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b60006104ef82610b9e565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105238261085b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff82161480610639575073ffffffffffffffffffffffffffffffffffffffff8116600090815260056020908152604080832033845290915290205460ff165b6106c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105dc565b6106cf8383610c29565b505050565b6106de3382610cc9565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105dc565b6106cf838383610d89565b61077d611091565b4761079d60075473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107e2573d6000803e3d6000fd5b5050565b6107ee611091565b60006107f960085490565b9050610809600880546001019055565b60016009600082825461081c91906120ef565b909155506107e290508282611112565b6106cf83838360405180602001604052806000815250610a2b565b61084f611091565b600a6107e28282612150565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061044c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105dc565b600073ffffffffffffffffffffffffffffffffffffffff821661098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016105dc565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6109bd611091565b6109c7600061112c565b565b6060600180546104619061206d565b6107e23383836111a3565b6109eb611091565b60005b81518110156107e257610a19828281518110610a0c57610a0c61226a565b60200260200101516107e6565b80610a2381612299565b9150506109ee565b610a353383610cc9565b610ac1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105dc565b610acd848484846112d0565b50505050565b606061044c82611373565b610ae6611091565b73ffffffffffffffffffffffffffffffffffffffff8116610b89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105dc565b610b928161112c565b50565b80546001019055565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16610b92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105dc565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190610c838261085b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610cd58361085b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d43575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80610d8157508373ffffffffffffffffffffffffffffffffffffffff16610d69846104e4565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16610da98261085b565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105dc565b73ffffffffffffffffffffffffffffffffffffffff8216610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105dc565b610efb838383600161146e565b8273ffffffffffffffffffffffffffffffffffffffff16610f1b8261085b565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105dc565b600081815260046020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000090811690915573ffffffffffffffffffffffffffffffffffffffff8781168086526003855283862080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146109c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105dc565b6107e282826040518060200160405280600081525061152a565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105dc565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112db848484610d89565b6112e7848484846115cd565b610acd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105dc565b606061137e82610b9e565b600082815260066020526040812080546113979061206d565b80601f01602080910402602001604051908101604052809291908181526020018280546113c39061206d565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905060006114216117c0565b90508051600003611433575092915050565b81511561146557808260405160200161144d9291906122d1565b60405160208183030381529060405292505050919050565b610d81846117cf565b6001811115610acd5773ffffffffffffffffffffffffffffffffffffffff8416156114ce5773ffffffffffffffffffffffffffffffffffffffff8416600090815260036020526040812080548392906114c8908490612300565b90915550505b73ffffffffffffffffffffffffffffffffffffffff831615610acd5773ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805483929061151f9084906120ef565b909155505050505050565b6115348383611836565b61154160008484846115cd565b6106cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105dc565b600073ffffffffffffffffffffffffffffffffffffffff84163b156117b5576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611644903390899088908890600401612313565b6020604051808303816000875af192505050801561169d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261169a9181019061235c565b60015b61176a573d8080156116cb576040519150601f19603f3d011682016040523d82523d6000602084013e6116d0565b606091505b508051600003611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105dc565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610d81565b506001949350505050565b6060600a80546104619061206d565b60606117da82610b9e565b60006117e46117c0565b90506000815111611804576040518060200160405280600081525061182f565b8061180e84611a69565b60405160200161181f9291906122d1565b6040516020818303038152906040525b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82166118b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105dc565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105dc565b61194d60008383600161146e565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156119d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105dc565b73ffffffffffffffffffffffffffffffffffffffff8216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606000611a7683611b27565b600101905060008167ffffffffffffffff811115611a9657611a96611d98565b6040519080825280601f01601f191660200182016040528015611ac0576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084611aca57509392505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611b70577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611b9c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bba57662386f26fc10000830492506010015b6305f5e1008310611bd2576305f5e100830492506008015b6127108310611be657612710830492506004015b60648310611bf8576064830492506002015b600a831061044c5760010192915050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b9257600080fd5b600060208284031215611c4957600080fd5b813561182f81611c09565b60005b83811015611c6f578181015183820152602001611c57565b50506000910152565b60008151808452611c90816020860160208601611c54565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061182f6020830184611c78565b600060208284031215611ce757600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611d1257600080fd5b919050565b60008060408385031215611d2a57600080fd5b611d3383611cee565b946020939093013593505050565b600080600060608486031215611d5657600080fd5b611d5f84611cee565b9250611d6d60208501611cee565b9150604084013590509250925092565b600060208284031215611d8f57600080fd5b61182f82611cee565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611e0e57611e0e611d98565b604052919050565b600067ffffffffffffffff831115611e3057611e30611d98565b611e6160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601611dc7565b9050828152838383011115611e7557600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e9e57600080fd5b813567ffffffffffffffff811115611eb557600080fd5b8201601f81018413611ec657600080fd5b610d8184823560208401611e16565b60008060408385031215611ee857600080fd5b611ef183611cee565b915060208301358015158114611f0657600080fd5b809150509250929050565b60006020808385031215611f2457600080fd5b823567ffffffffffffffff80821115611f3c57600080fd5b818501915085601f830112611f5057600080fd5b813581811115611f6257611f62611d98565b8060051b9150611f73848301611dc7565b8181529183018401918481019088841115611f8d57600080fd5b938501935b83851015611fb257611fa385611cee565b82529385019390850190611f92565b98975050505050505050565b60008060008060808587031215611fd457600080fd5b611fdd85611cee565b9350611feb60208601611cee565b925060408501359150606085013567ffffffffffffffff81111561200e57600080fd5b8501601f8101871361201f57600080fd5b61202e87823560208401611e16565b91505092959194509250565b6000806040838503121561204d57600080fd5b61205683611cee565b915061206460208401611cee565b90509250929050565b600181811c9082168061208157607f821691505b6020821081036120ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561044c5761044c6120c0565b601f8211156106cf57600081815260208120601f850160051c810160208610156121295750805b601f850160051c820191505b8181101561214857828155600101612135565b505050505050565b815167ffffffffffffffff81111561216a5761216a611d98565b61217e81612178845461206d565b84612102565b602080601f8311600181146121d1576000841561219b5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555612148565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561221e578886015182559484019460019091019084016121ff565b508582101561225a57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ca576122ca6120c0565b5060010190565b600083516122e3818460208801611c54565b8351908301906122f7818360208801611c54565b01949350505050565b8181038181111561044c5761044c6120c0565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526123526080830184611c78565b9695505050505050565b60006020828403121561236e57600080fd5b815161182f81611c0956fea2646970667358221220fc19371e04f9ba96e7fdc5b942c363aeaf9c11e9ebfef5a37a34411d070ad6c064736f6c63430008110033
Deployed Bytecode Sourcemap
57884:1440:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40009:305;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;40009:305:0;;;;;;;;40937:100;;;:::i;:::-;;;;;;;:::i;42449:171::-;;;;;;:::i;:::-;;:::i;:::-;;;1814:42:1;1802:55;;;1784:74;;1772:2;1757:18;42449:171:0;1638:226:1;41967:416:0;;;;;;:::i;:::-;;:::i;:::-;;58037:26;;;;;;;;;2475:25:1;;;2463:2;2448:18;58037:26:0;2329:177:1;43149:335:0;;;;;;:::i;:::-;;:::i;58628:140::-;;;:::i;58232:205::-;;;;;;:::i;:::-;;:::i;43555:185::-;;;;;;:::i;:::-;;:::i;58899:98::-;;;;;;:::i;:::-;;:::i;40647:223::-;;;;;;:::i;:::-;;:::i;40378:207::-;;;;;;:::i;:::-;;:::i;19440:103::-;;;:::i;18792:87::-;18865:6;;;;18792:87;;41106:104;;;:::i;42692:155::-;;;;;;:::i;:::-;;:::i;58447:173::-;;;;;;:::i;:::-;;:::i;43811:322::-;;;;;;:::i;:::-;;:::i;59125:196::-;;;;;;:::i;:::-;;:::i;42918:164::-;;;;;;:::i;:::-;43039:25;;;;43015:4;43039:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42918:164;19698:201;;;;;;:::i;:::-;;:::i;40009:305::-;40111:4;40148:40;;;40163:25;40148:40;;:105;;-1:-1:-1;40205:48:0;;;40220:33;40205:48;40148:105;:158;;;-1:-1:-1;32645:25:0;32630:40;;;;40270:36;40128:178;40009:305;-1:-1:-1;;40009:305:0:o;40937:100::-;40991:13;41024:5;41017:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40937:100;:::o;42449:171::-;42525:7;42545:23;42560:7;42545:14;:23::i;:::-;-1:-1:-1;42588:24:0;;;;:15;:24;;;;;;;;;42449:171::o;41967:416::-;42048:13;42064:23;42079:7;42064:14;:23::i;:::-;42048:39;;42112:5;42106:11;;:2;:11;;;42098:57;;;;;;;7380:2:1;42098:57:0;;;7362:21:1;7419:2;7399:18;;;7392:30;7458:34;7438:18;;;7431:62;7529:3;7509:18;;;7502:31;7550:19;;42098:57:0;;;;;;;;;17423:10;42190:21;;;;;:62;;-1:-1:-1;43039:25:0;;;43015:4;43039:25;;;:18;:25;;;;;;;;17423:10;43039:35;;;;;;;;;;42215:37;42168:173;;;;;;;7782:2:1;42168:173:0;;;7764:21:1;7821:2;7801:18;;;7794:30;7860:34;7840:18;;;7833:62;7931:31;7911:18;;;7904:59;7980:19;;42168:173:0;7580:425:1;42168:173:0;42354:21;42363:2;42367:7;42354:8;:21::i;:::-;42037:346;41967:416;;:::o;43149:335::-;43344:41;17423:10;43377:7;43344:18;:41::i;:::-;43336:99;;;;;;;8212:2:1;43336:99:0;;;8194:21:1;8251:2;8231:18;;;8224:30;8290:34;8270:18;;;8263:62;8361:15;8341:18;;;8334:43;8394:19;;43336:99:0;8010:409:1;43336:99:0;43448:28;43458:4;43464:2;43468:7;43448:9;:28::i;58628:140::-;18678:13;:11;:13::i;:::-;58694:21:::1;58734:7;18865:6:::0;;;;;18792:87;58734:7:::1;58726:25;;:34;58752:7;58726:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58665:103;58628:140::o:0;58232:205::-;18678:13;:11;:13::i;:::-;58290:15:::1;58308:25;:15;964:14:::0;;872:114;58308:25:::1;58290:43;;58344:27;:15;1083:19:::0;;1101:1;1083:19;;;994:127;58344:27:::1;58395:1;58382:11;;:14;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;58407:22:0::1;::::0;-1:-1:-1;58417:2:0;58421:7;58407:9:::1;:22::i;43555:185::-:0;43693:39;43710:4;43716:2;43720:7;43693:39;;;;;;;;;;;;:16;:39::i;58899:98::-;18678:13;:11;:13::i;:::-;58971:7:::1;:18;58981:8:::0;58971:7;:18:::1;:::i;40647:223::-:0;40719:7;45534:16;;;:7;:16;;;;;;;;;40783:56;;;;;;;11328:2:1;40783:56:0;;;11310:21:1;11367:2;11347:18;;;11340:30;11406:26;11386:18;;;11379:54;11450:18;;40783:56:0;11126:348:1;40378:207:0;40450:7;40478:19;;;40470:73;;;;;;;11681:2:1;40470:73:0;;;11663:21:1;11720:2;11700:18;;;11693:30;11759:34;11739:18;;;11732:62;11830:11;11810:18;;;11803:39;11859:19;;40470:73:0;11479:405:1;40470:73:0;-1:-1:-1;40561:16:0;;;;;;:9;:16;;;;;;;40378:207::o;19440:103::-;18678:13;:11;:13::i;:::-;19505:30:::1;19532:1;19505:18;:30::i;:::-;19440:103::o:0;41106:104::-;41162:13;41195:7;41188:14;;;;;:::i;42692:155::-;42787:52;17423:10;42820:8;42830;42787:18;:52::i;58447:173::-;18678:13;:11;:13::i;:::-;58526:9:::1;58521:92;58541:9;:16;58539:1;:18;58521:92;;;58579:22;58588:9;58598:1;58588:12;;;;;;;;:::i;:::-;;;;;;;58579:8;:22::i;:::-;58559:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58521:92;;43811:322:::0;43985:41;17423:10;44018:7;43985:18;:41::i;:::-;43977:99;;;;;;;8212:2:1;43977:99:0;;;8194:21:1;8251:2;8231:18;;;8224:30;8290:34;8270:18;;;8263:62;8361:15;8341:18;;;8334:43;8394:19;;43977:99:0;8010:409:1;43977:99:0;44087:38;44101:4;44107:2;44111:7;44120:4;44087:13;:38::i;:::-;43811:322;;;;:::o;59125:196::-;59252:13;59290:23;59305:7;59290:14;:23::i;19698:201::-;18678:13;:11;:13::i;:::-;19787:22:::1;::::0;::::1;19779:73;;;::::0;::::1;::::0;;12480:2:1;19779:73:0::1;::::0;::::1;12462:21:1::0;12519:2;12499:18;;;12492:30;12558:34;12538:18;;;12531:62;12629:8;12609:18;;;12602:36;12655:19;;19779:73:0::1;12278:402:1::0;19779:73:0::1;19863:28;19882:8;19863:18;:28::i;:::-;19698:201:::0;:::o;994:127::-;1083:19;;1101:1;1083:19;;;994:127::o;52268:135::-;45936:4;45534:16;;;:7;:16;;;;;;;;52342:53;;;;;;;11328:2:1;52342:53:0;;;11310:21:1;11367:2;11347:18;;;11340:30;11406:26;11386:18;;;11379:54;11450:18;;52342:53:0;11126:348:1;51547:174:0;51622:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;51676:23;51622:24;51676:14;:23::i;:::-;51667:46;;;;;;;;;;;;51547:174;;:::o;46166:264::-;46259:4;46276:13;46292:23;46307:7;46292:14;:23::i;:::-;46276:39;;46345:5;46334:16;;:7;:16;;;:52;;;-1:-1:-1;43039:25:0;;;;43015:4;43039:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46354:32;46334:87;;;;46414:7;46390:31;;:20;46402:7;46390:11;:20::i;:::-;:31;;;46334:87;46326:96;46166:264;-1:-1:-1;;;;46166:264:0:o;50165:1263::-;50324:4;50297:31;;:23;50312:7;50297:14;:23::i;:::-;:31;;;50289:81;;;;;;;12887:2:1;50289:81:0;;;12869:21:1;12926:2;12906:18;;;12899:30;12965:34;12945:18;;;12938:62;13036:7;13016:18;;;13009:35;13061:19;;50289:81:0;12685:401:1;50289:81:0;50389:16;;;50381:65;;;;;;;13293:2:1;50381:65:0;;;13275:21:1;13332:2;13312:18;;;13305:30;13371:34;13351:18;;;13344:62;13442:6;13422:18;;;13415:34;13466:19;;50381:65:0;13091:400:1;50381:65:0;50459:42;50480:4;50486:2;50490:7;50499:1;50459:20;:42::i;:::-;50631:4;50604:31;;:23;50619:7;50604:14;:23::i;:::-;:31;;;50596:81;;;;;;;12887:2:1;50596:81:0;;;12869:21:1;12926:2;12906:18;;;12899:30;12965:34;12945:18;;;12938:62;13036:7;13016:18;;;13009:35;13061:19;;50596:81:0;12685:401:1;50596:81:0;50749:24;;;;:15;:24;;;;;;;;50742:31;;;;;;;;;;51225:15;;;;;;:9;:15;;;;;:20;;;;;;51260:13;;;;;;;;;:18;;50742:31;51260:18;;;51300:16;;;:7;:16;;;;;;:21;;;;;;;;;;51339:27;;50765:7;;51339:27;;;42037:346;41967:416;;:::o;18957:132::-;18865:6;;19021:23;18865:6;17423:10;19021:23;19013:68;;;;;;;13698:2:1;19013:68:0;;;13680:21:1;;;13717:18;;;13710:30;13776:34;13756:18;;;13749:62;13828:18;;19013:68:0;13496:356:1;46772:110:0;46848:26;46858:2;46862:7;46848:26;;;;;;;;;;;;:9;:26::i;20059:191::-;20152:6;;;;20169:17;;;;;;;;;;;20202:40;;20152:6;;;20169:17;20152:6;;20202:40;;20133:16;;20202:40;20122:128;20059:191;:::o;51864:315::-;52019:8;52010:17;;:5;:17;;;52002:55;;;;;;;14059:2:1;52002:55:0;;;14041:21:1;14098:2;14078:18;;;14071:30;14137:27;14117:18;;;14110:55;14182:18;;52002:55:0;13857:349:1;52002:55:0;52068:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;52130:41;;586::1;;;52130::0;;559:18:1;52130:41:0;;;;;;;51864:315;;;:::o;45014:313::-;45170:28;45180:4;45186:2;45190:7;45170:9;:28::i;:::-;45217:47;45240:4;45246:2;45250:7;45259:4;45217:22;:47::i;:::-;45209:110;;;;;;;14413:2:1;45209:110:0;;;14395:21:1;14452:2;14432:18;;;14425:30;14491:34;14471:18;;;14464:62;14562:20;14542:18;;;14535:48;14600:19;;45209:110:0;14211:414:1;56375:624:0;56448:13;56474:23;56489:7;56474:14;:23::i;:::-;56510;56536:19;;;:10;:19;;;;;56510:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56566:18;56587:10;:8;:10::i;:::-;56566:31;;56679:4;56673:18;56695:1;56673:23;56669:72;;-1:-1:-1;56720:9:0;56375:624;-1:-1:-1;;56375:624:0:o;56669:72::-;56845:23;;:27;56841:108;;56920:4;56926:9;56903:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56889:48;;;;56375:624;;;:::o;56841:108::-;56968:23;56983:7;56968:14;:23::i;54552:410::-;54742:1;54730:9;:13;54726:229;;;54764:18;;;;54760:87;;54803:15;;;;;;;:9;:15;;;;;:28;;54822:9;;54803:15;:28;;54822:9;;54803:28;:::i;:::-;;;;-1:-1:-1;;54760:87:0;54865:16;;;;54861:83;;54902:13;;;;;;;:9;:13;;;;;:26;;54919:9;;54902:13;:26;;54919:9;;54902:26;:::i;:::-;;;;-1:-1:-1;;54552:410:0;;;;:::o;47109:319::-;47238:18;47244:2;47248:7;47238:5;:18::i;:::-;47289:53;47320:1;47324:2;47328:7;47337:4;47289:22;:53::i;:::-;47267:153;;;;;;;14413:2:1;47267:153:0;;;14395:21:1;14452:2;14432:18;;;14425:30;14491:34;14471:18;;;14464:62;14562:20;14542:18;;;14535:48;14600:19;;47267:153:0;14211:414:1;52967:853:0;53121:4;53142:13;;;21785:19;:23;53138:675;;53178:71;;;;;:36;;;;;;:71;;17423:10;;53229:4;;53235:7;;53244:4;;53178:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53178:71:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53174:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53419:6;:13;53436:1;53419:18;53415:328;;53462:60;;;;;14413:2:1;53462:60:0;;;14395:21:1;14452:2;14432:18;;;14425:30;14491:34;14471:18;;;14464:62;14562:20;14542:18;;;14535:48;14600:19;;53462:60:0;14211:414:1;53415:328:0;53693:6;53687:13;53678:6;53674:2;53670:15;53663:38;53174:584;53300:51;;53310:41;53300:51;;-1:-1:-1;53293:58:0;;53138:675;-1:-1:-1;53797:4:0;52967:853;;;;;;:::o;59005:108::-;59065:13;59098:7;59091:14;;;;;:::i;41281:281::-;41354:13;41380:23;41395:7;41380:14;:23::i;:::-;41416:21;41440:10;:8;:10::i;:::-;41416:34;;41492:1;41474:7;41468:21;:25;:86;;;;;;;;;;;;;;;;;41520:7;41529:18;:7;:16;:18::i;:::-;41503:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41468:86;41461:93;41281:281;-1:-1:-1;;;41281:281:0:o;47764:942::-;47844:16;;;47836:61;;;;;;;16237:2:1;47836:61:0;;;16219:21:1;;;16256:18;;;16249:30;16315:34;16295:18;;;16288:62;16367:18;;47836:61:0;16035:356:1;47836:61:0;45936:4;45534:16;;;:7;:16;;;;;;;;45960:31;47908:58;;;;;;;16598:2:1;47908:58:0;;;16580:21:1;16637:2;16617:18;;;16610:30;16676;16656:18;;;16649:58;16724:18;;47908:58:0;16396:352:1;47908:58:0;47979:48;48008:1;48012:2;48016:7;48025:1;47979:20;:48::i;:::-;45936:4;45534:16;;;:7;:16;;;;;;;;45960:31;48117:58;;;;;;;16598:2:1;48117:58:0;;;16580:21:1;16637:2;16617:18;;;16610:30;16676;16656:18;;;16649:58;16724:18;;48117:58:0;16396:352:1;48117:58:0;48524:13;;;;;;;:9;:13;;;;;;;;:18;;48541:1;48524:18;;;48566:16;;;:7;:16;;;;;;:21;;;;;;;;48605:33;48574:7;;48524:13;;48605:33;;48524:13;;48605:33;58726:34:::1;58665:103;58628:140::o:0;14770:716::-;14826:13;14877:14;14894:17;14905:5;14894:10;:17::i;:::-;14914:1;14894:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14953:18:0;-1:-1:-1;14930:41:0;-1:-1:-1;15095:28:0;;;15111:2;15095:28;15152:288;15184:5;;15326:8;15321:2;15310:14;;15305:30;15184:5;15292:44;15382:2;15373:11;;;-1:-1:-1;15403:21:0;15152:288;15403:21;-1:-1:-1;15461:6:0;14770:716;-1:-1:-1;;;14770:716:0:o;11636:922::-;11689:7;;11776:6;11767:15;;11763:102;;11812:6;11803:15;;;-1:-1:-1;11847:2:0;11837:12;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;-1:-1:-1;11963:2:0;11953:12;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;-1:-1:-1;12079:2:0;12069:12;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;-1:-1:-1;12193:1:0;12183:11;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;-1:-1:-1;12306:1:0;12296:11;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;-1:-1:-1;12419:1:0;12409:11;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;12544:6;11636:922;-1:-1:-1;;11636:922:0:o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:330::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1137:2;1125:15;1142:66;1121:88;1112:98;;;;1212:4;1108:109;;893:330;-1:-1:-1;;893:330:1:o;1228:220::-;1377:2;1366:9;1359:21;1340:4;1397:45;1438:2;1427:9;1423:18;1415:6;1397:45;:::i;1453:180::-;1512:6;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;-1:-1:-1;1604:23:1;;1453:180;-1:-1:-1;1453:180:1:o;1869:196::-;1937:20;;1997:42;1986:54;;1976:65;;1966:93;;2055:1;2052;2045:12;1966:93;1869:196;;;:::o;2070:254::-;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2238:29;2257:9;2238:29;:::i;:::-;2228:39;2314:2;2299:18;;;;2286:32;;-1:-1:-1;;;2070:254:1:o;2511:328::-;2588:6;2596;2604;2657:2;2645:9;2636:7;2632:23;2628:32;2625:52;;;2673:1;2670;2663:12;2625:52;2696:29;2715:9;2696:29;:::i;:::-;2686:39;;2744:38;2778:2;2767:9;2763:18;2744:38;:::i;:::-;2734:48;;2829:2;2818:9;2814:18;2801:32;2791:42;;2511:328;;;;;:::o;2844:186::-;2903:6;2956:2;2944:9;2935:7;2931:23;2927:32;2924:52;;;2972:1;2969;2962:12;2924:52;2995:29;3014:9;2995:29;:::i;3035:184::-;3087:77;3084:1;3077:88;3184:4;3181:1;3174:15;3208:4;3205:1;3198:15;3224:334;3295:2;3289:9;3351:2;3341:13;;3356:66;3337:86;3325:99;;3454:18;3439:34;;3475:22;;;3436:62;3433:88;;;3501:18;;:::i;:::-;3537:2;3530:22;3224:334;;-1:-1:-1;3224:334:1:o;3563:466::-;3628:5;3662:18;3654:6;3651:30;3648:56;;;3684:18;;:::i;:::-;3722:116;3832:4;3763:66;3758:2;3750:6;3746:15;3742:88;3738:99;3722:116;:::i;:::-;3713:125;;3861:6;3854:5;3847:21;3901:3;3892:6;3887:3;3883:16;3880:25;3877:45;;;3918:1;3915;3908:12;3877:45;3967:6;3962:3;3955:4;3948:5;3944:16;3931:43;4021:1;4014:4;4005:6;3998:5;3994:18;3990:29;3983:40;3563:466;;;;;:::o;4034:451::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4212:9;4199:23;4245:18;4237:6;4234:30;4231:50;;;4277:1;4274;4267:12;4231:50;4300:22;;4353:4;4345:13;;4341:27;-1:-1:-1;4331:55:1;;4382:1;4379;4372:12;4331:55;4405:74;4471:7;4466:2;4453:16;4448:2;4444;4440:11;4405:74;:::i;4490:347::-;4555:6;4563;4616:2;4604:9;4595:7;4591:23;4587:32;4584:52;;;4632:1;4629;4622:12;4584:52;4655:29;4674:9;4655:29;:::i;:::-;4645:39;;4734:2;4723:9;4719:18;4706:32;4781:5;4774:13;4767:21;4760:5;4757:32;4747:60;;4803:1;4800;4793:12;4747:60;4826:5;4816:15;;;4490:347;;;;;:::o;4842:952::-;4926:6;4957:2;5000;4988:9;4979:7;4975:23;4971:32;4968:52;;;5016:1;5013;5006:12;4968:52;5056:9;5043:23;5085:18;5126:2;5118:6;5115:14;5112:34;;;5142:1;5139;5132:12;5112:34;5180:6;5169:9;5165:22;5155:32;;5225:7;5218:4;5214:2;5210:13;5206:27;5196:55;;5247:1;5244;5237:12;5196:55;5283:2;5270:16;5305:2;5301;5298:10;5295:36;;;5311:18;;:::i;:::-;5357:2;5354:1;5350:10;5340:20;;5380:28;5404:2;5400;5396:11;5380:28;:::i;:::-;5442:15;;;5512:11;;;5508:20;;;5473:12;;;;5540:19;;;5537:39;;;5572:1;5569;5562:12;5537:39;5596:11;;;;5616:148;5632:6;5627:3;5624:15;5616:148;;;5698:23;5717:3;5698:23;:::i;:::-;5686:36;;5649:12;;;;5742;;;;5616:148;;;5783:5;4842:952;-1:-1:-1;;;;;;;;4842:952:1:o;5799:667::-;5894:6;5902;5910;5918;5971:3;5959:9;5950:7;5946:23;5942:33;5939:53;;;5988:1;5985;5978:12;5939:53;6011:29;6030:9;6011:29;:::i;:::-;6001:39;;6059:38;6093:2;6082:9;6078:18;6059:38;:::i;:::-;6049:48;;6144:2;6133:9;6129:18;6116:32;6106:42;;6199:2;6188:9;6184:18;6171:32;6226:18;6218:6;6215:30;6212:50;;;6258:1;6255;6248:12;6212:50;6281:22;;6334:4;6326:13;;6322:27;-1:-1:-1;6312:55:1;;6363:1;6360;6353:12;6312:55;6386:74;6452:7;6447:2;6434:16;6429:2;6425;6421:11;6386:74;:::i;:::-;6376:84;;;5799:667;;;;;;;:::o;6471:260::-;6539:6;6547;6600:2;6588:9;6579:7;6575:23;6571:32;6568:52;;;6616:1;6613;6606:12;6568:52;6639:29;6658:9;6639:29;:::i;:::-;6629:39;;6687:38;6721:2;6710:9;6706:18;6687:38;:::i;:::-;6677:48;;6471:260;;;;;:::o;6736:437::-;6815:1;6811:12;;;;6858;;;6879:61;;6933:4;6925:6;6921:17;6911:27;;6879:61;6986:2;6978:6;6975:14;6955:18;6952:38;6949:218;;7023:77;7020:1;7013:88;7124:4;7121:1;7114:15;7152:4;7149:1;7142:15;6949:218;;6736:437;;;:::o;8424:184::-;8476:77;8473:1;8466:88;8573:4;8570:1;8563:15;8597:4;8594:1;8587:15;8613:125;8678:9;;;8699:10;;;8696:36;;;8712:18;;:::i;8869:545::-;8971:2;8966:3;8963:11;8960:448;;;9007:1;9032:5;9028:2;9021:17;9077:4;9073:2;9063:19;9147:2;9135:10;9131:19;9128:1;9124:27;9118:4;9114:38;9183:4;9171:10;9168:20;9165:47;;;-1:-1:-1;9206:4:1;9165:47;9261:2;9256:3;9252:12;9249:1;9245:20;9239:4;9235:31;9225:41;;9316:82;9334:2;9327:5;9324:13;9316:82;;;9379:17;;;9360:1;9349:13;9316:82;;;9320:3;;;8869:545;;;:::o;9650:1471::-;9776:3;9770:10;9803:18;9795:6;9792:30;9789:56;;;9825:18;;:::i;:::-;9854:97;9944:6;9904:38;9936:4;9930:11;9904:38;:::i;:::-;9898:4;9854:97;:::i;:::-;10006:4;;10070:2;10059:14;;10087:1;10082:782;;;;10908:1;10925:6;10922:89;;;-1:-1:-1;10977:19:1;;;10971:26;10922:89;9556:66;9547:1;9543:11;;;9539:84;9535:89;9525:100;9631:1;9627:11;;;9522:117;11024:81;;10052:1063;;10082:782;8816:1;8809:14;;;8853:4;8840:18;;10130:66;10118:79;;;10295:236;10309:7;10306:1;10303:14;10295:236;;;10398:19;;;10392:26;10377:42;;10490:27;;;;10458:1;10446:14;;;;10325:19;;10295:236;;;10299:3;10559:6;10550:7;10547:19;10544:261;;;10620:19;;;10614:26;10721:66;10703:1;10699:14;;;10715:3;10695:24;10691:97;10687:102;10672:118;10657:134;;10544:261;-1:-1:-1;;;;;10851:1:1;10835:14;;;10831:22;10818:36;;-1:-1:-1;9650:1471:1:o;11889:184::-;11941:77;11938:1;11931:88;12038:4;12035:1;12028:15;12062:4;12059:1;12052:15;12078:195;12117:3;12148:66;12141:5;12138:77;12135:103;;12218:18;;:::i;:::-;-1:-1:-1;12265:1:1;12254:13;;12078:195::o;14630:496::-;14809:3;14847:6;14841:13;14863:66;14922:6;14917:3;14910:4;14902:6;14898:17;14863:66;:::i;:::-;14992:13;;14951:16;;;;15014:70;14992:13;14951:16;15061:4;15049:17;;15014:70;:::i;:::-;15100:20;;14630:496;-1:-1:-1;;;;14630:496:1:o;15131:128::-;15198:9;;;15219:11;;;15216:37;;;15233:18;;:::i;15264:512::-;15458:4;15487:42;15568:2;15560:6;15556:15;15545:9;15538:34;15620:2;15612:6;15608:15;15603:2;15592:9;15588:18;15581:43;;15660:6;15655:2;15644:9;15640:18;15633:34;15703:3;15698:2;15687:9;15683:18;15676:31;15724:46;15765:3;15754:9;15750:19;15742:6;15724:46;:::i;:::-;15716:54;15264:512;-1:-1:-1;;;;;;15264:512:1:o;15781:249::-;15850:6;15903:2;15891:9;15882:7;15878:23;15874:32;15871:52;;;15919:1;15916;15909:12;15871:52;15951:9;15945:16;15970:30;15994:5;15970:30;:::i
Swarm Source
ipfs://fc19371e04f9ba96e7fdc5b942c363aeaf9c11e9ebfef5a37a34411d070ad6c0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.