Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 15 from a total of 15 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 20000073 | 230 days ago | IN | 0 ETH | 0.000226 | ||||
Gang Drop | 16429320 | 731 days ago | IN | 0 ETH | 0.00193127 | ||||
Gang Drop | 16429318 | 731 days ago | IN | 0 ETH | 0.00199981 | ||||
Set Base Token U... | 16429312 | 731 days ago | IN | 0 ETH | 0.00094101 | ||||
Gang Drop | 16399871 | 736 days ago | IN | 0 ETH | 0.00242872 | ||||
Set Base Token U... | 16399843 | 736 days ago | IN | 0 ETH | 0.00124472 | ||||
Set Base Token U... | 16248798 | 757 days ago | IN | 0 ETH | 0.00119521 | ||||
Gang Drop | 16244492 | 757 days ago | IN | 0 ETH | 0.00085425 | ||||
Gang Drop | 16244489 | 757 days ago | IN | 0 ETH | 0.00094539 | ||||
Set Base Token U... | 16244485 | 757 days ago | IN | 0 ETH | 0.00045121 | ||||
Set Approval For... | 16213539 | 762 days ago | IN | 0 ETH | 0.0005975 | ||||
Set Approval For... | 16203119 | 763 days ago | IN | 0 ETH | 0.000624 | ||||
Gang Drop | 16198842 | 764 days ago | IN | 0 ETH | 0.00220727 | ||||
Gang Drop | 16198838 | 764 days ago | IN | 0 ETH | 0.00222724 | ||||
Gang Drop | 16198834 | 764 days ago | IN | 0 ETH | 0.00270552 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BelowBoredGangof8
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-23 */ // 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/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/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/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/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: BelowBoredGangof8.sol pragma solidity ^0.8.11; contract BelowBoredGangof8 is Ownable, ERC721 { uint public maxSupply = 8; string internal baseTokenURI = "https://bbc.mypinata.cloud/ipfs/QmabyFvzuchgrSes3kTFK8eh4ojUMtTmbnFHSJzQQiFSq5/"; using Counters for Counters.Counter; Counters.Counter private _tokenId; constructor( ) ERC721("Below Bored Gang of 8", "BBG8") { } function gangDrop(address _to, uint _amount) external onlyOwner { require(_tokenId.current() + _amount <= maxSupply, "Max public supply exceeded"); for (uint i = 0; i < _amount; i++) { _tokenId.increment(); _safeMint(_to, _tokenId.current()); } } //Supply function totalSupply() public view returns(uint) { return _tokenId.current(); } //TOKEN LOCATION function setBaseTokenURI(string calldata _uri) external onlyOwner { baseTokenURI = _uri; } function _baseURI() internal view override returns (string memory) { return baseTokenURI; } }
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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"gangDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","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"}]
Contract Creation Code
608060405260086007556040518060800160405280604f8152602001620034ee604f91396008908162000033919062000440565b503480156200004157600080fd5b506040518060400160405280601581526020017f42656c6f7720426f7265642047616e67206f66203800000000000000000000008152506040518060400160405280600481526020017f4242473800000000000000000000000000000000000000000000000000000000815250620000ce620000c2620000fa60201b60201c565b6200010260201b60201c565b8160019081620000df919062000440565b508060029081620000f1919062000440565b50505062000527565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024857607f821691505b6020821081036200025e576200025d62000200565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002c87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000289565b620002d4868362000289565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003216200031b6200031584620002ec565b620002f6565b620002ec565b9050919050565b6000819050919050565b6200033d8362000300565b620003556200034c8262000328565b84845462000296565b825550505050565b600090565b6200036c6200035d565b6200037981848462000332565b505050565b5b81811015620003a1576200039560008262000362565b6001810190506200037f565b5050565b601f821115620003f057620003ba8162000264565b620003c58462000279565b81016020851015620003d5578190505b620003ed620003e48562000279565b8301826200037e565b50505b505050565b600082821c905092915050565b60006200041560001984600802620003f5565b1980831691505092915050565b600062000430838362000402565b9150826002028217905092915050565b6200044b82620001c6565b67ffffffffffffffff811115620004675762000466620001d1565b5b6200047382546200022f565b62000480828285620003a5565b600060209050601f831160018114620004b85760008415620004a3578287015190505b620004af858262000422565b8655506200051f565b601f198416620004c88662000264565b60005b82811015620004f257848901518255600182019150602085019450602081019050620004cb565b868310156200051257848901516200050e601f89168262000402565b8355505b6001600288020188555050505b505050505050565b612fb780620005376000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde1461031b578063c87b56dd14610337578063d5abeb0114610367578063e985e9c514610385578063f2fde38b146103b55761012c565b806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357806395d89b41146102e1578063a22cb465146102ff5761012c565b806323b872dd116100f457806323b872dd146101e95780632590bdce1461020557806330176e131461022157806342842e0e1461023d5780636352211e146102595761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611d36565b6103d1565b6040516101589190611d7e565b60405180910390f35b6101696104b3565b6040516101769190611e29565b60405180910390f35b61019960048036038101906101949190611e81565b610545565b6040516101a69190611eef565b60405180910390f35b6101c960048036038101906101c49190611f36565b61058b565b005b6101d36106a2565b6040516101e09190611f85565b60405180910390f35b61020360048036038101906101fe9190611fa0565b6106b3565b005b61021f600480360381019061021a9190611f36565b610713565b005b61023b60048036038101906102369190612058565b6107b4565b005b61025760048036038101906102529190611fa0565b6107d2565b005b610273600480360381019061026e9190611e81565b6107f2565b6040516102809190611eef565b60405180910390f35b6102a3600480360381019061029e91906120a5565b610878565b6040516102b09190611f85565b60405180910390f35b6102c161092f565b005b6102cb610943565b6040516102d89190611eef565b60405180910390f35b6102e961096c565b6040516102f69190611e29565b60405180910390f35b610319600480360381019061031491906120fe565b6109fe565b005b6103356004803603810190610330919061226e565b610a14565b005b610351600480360381019061034c9190611e81565b610a76565b60405161035e9190611e29565b60405180910390f35b61036f610ade565b60405161037c9190611f85565b60405180910390f35b61039f600480360381019061039a91906122f1565b610ae4565b6040516103ac9190611d7e565b60405180910390f35b6103cf60048036038101906103ca91906120a5565b610b78565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ac57506104ab82610bfb565b5b9050919050565b6060600180546104c290612360565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90612360565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b600061055082610c65565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610596826107f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fd90612403565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610625610cb0565b73ffffffffffffffffffffffffffffffffffffffff16148061065457506106538161064e610cb0565b610ae4565b5b610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90612495565b60405180910390fd5b61069d8383610cb8565b505050565b60006106ae6009610d71565b905090565b6106c46106be610cb0565b82610d7f565b610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612527565b60405180910390fd5b61070e838383610e14565b505050565b61071b61110d565b600754816107296009610d71565b6107339190612576565b1115610774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076b906125f6565b60405180910390fd5b60005b818110156107af57610789600961118b565b61079c836107976009610d71565b6111a1565b80806107a790612616565b915050610777565b505050565b6107bc61110d565b8181600891826107cd929190612815565b505050565b6107ed83838360405180602001604052806000815250610a14565b505050565b6000806107fe836111bf565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361086f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086690612931565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906129c3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093761110d565b61094160006111fc565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461097b90612360565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790612360565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b610a10610a09610cb0565b83836112c0565b5050565b610a25610a1f610cb0565b83610d7f565b610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612527565b60405180910390fd5b610a708484848461142c565b50505050565b6060610a8182610c65565b6000610a8b611488565b90506000815111610aab5760405180602001604052806000815250610ad6565b80610ab58461151a565b604051602001610ac6929190612a1f565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b8061110d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612ab5565b60405180910390fd5b610bf8816111fc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c6e816115e8565b610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612931565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d2b836107f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080610d8b836107f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dcd5750610dcc8185610ae4565b5b80610e0b57508373ffffffffffffffffffffffffffffffffffffffff16610df384610545565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e34826107f2565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190612b47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090612bd9565b60405180910390fd5b610f068383836001611629565b8273ffffffffffffffffffffffffffffffffffffffff16610f26826107f2565b73ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390612b47565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611108838383600161174f565b505050565b611115610cb0565b73ffffffffffffffffffffffffffffffffffffffff16611133610943565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612c45565b60405180910390fd5b565b6001816000016000828254019250508190555050565b6111bb828260405180602001604052806000815250611755565b5050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612cb1565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141f9190611d7e565b60405180910390a3505050565b611437848484610e14565b611443848484846117b0565b611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612d43565b60405180910390fd5b50505050565b60606008805461149790612360565b80601f01602080910402602001604051908101604052809291908181526020018280546114c390612360565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b5050505050905090565b60606000600161152984611937565b01905060008167ffffffffffffffff81111561154857611547612143565b5b6040519080825280601f01601f19166020018201604052801561157a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156115dd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816115d1576115d0612d63565b5b04945060008503611588575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661160a836111bf565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600181111561174957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116bd5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b59190612d92565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146117485780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117409190612576565b925050819055505b5b50505050565b50505050565b61175f8383611a8a565b61176c60008484846117b0565b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612d43565b60405180910390fd5b505050565b60006117d18473ffffffffffffffffffffffffffffffffffffffff16611ca7565b1561192a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117fa610cb0565b8786866040518563ffffffff1660e01b815260040161181c9493929190612e1b565b6020604051808303816000875af192505050801561185857506040513d601f19601f820116820180604052508101906118559190612e7c565b60015b6118da573d8060008114611888576040519150601f19603f3d011682016040523d82523d6000602084013e61188d565b606091505b5060008151036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990612d43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061192f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611995577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161198b5761198a612d63565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106119d2576d04ee2d6d415b85acef810000000083816119c8576119c7612d63565b5b0492506020810190505b662386f26fc100008310611a0157662386f26fc1000083816119f7576119f6612d63565b5b0492506010810190505b6305f5e1008310611a2a576305f5e1008381611a2057611a1f612d63565b5b0492506008810190505b6127108310611a4f576127108381611a4557611a44612d63565b5b0492506004810190505b60648310611a725760648381611a6857611a67612d63565b5b0492506002810190505b600a8310611a81576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090612ef5565b60405180910390fd5b611b02816115e8565b15611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990612f61565b60405180910390fd5b611b50600083836001611629565b611b59816115e8565b15611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090612f61565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ca360008383600161174f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d1381611cde565b8114611d1e57600080fd5b50565b600081359050611d3081611d0a565b92915050565b600060208284031215611d4c57611d4b611cd4565b5b6000611d5a84828501611d21565b91505092915050565b60008115159050919050565b611d7881611d63565b82525050565b6000602082019050611d936000830184611d6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611dd3578082015181840152602081019050611db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dfb82611d99565b611e058185611da4565b9350611e15818560208601611db5565b611e1e81611ddf565b840191505092915050565b60006020820190508181036000830152611e438184611df0565b905092915050565b6000819050919050565b611e5e81611e4b565b8114611e6957600080fd5b50565b600081359050611e7b81611e55565b92915050565b600060208284031215611e9757611e96611cd4565b5b6000611ea584828501611e6c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ed982611eae565b9050919050565b611ee981611ece565b82525050565b6000602082019050611f046000830184611ee0565b92915050565b611f1381611ece565b8114611f1e57600080fd5b50565b600081359050611f3081611f0a565b92915050565b60008060408385031215611f4d57611f4c611cd4565b5b6000611f5b85828601611f21565b9250506020611f6c85828601611e6c565b9150509250929050565b611f7f81611e4b565b82525050565b6000602082019050611f9a6000830184611f76565b92915050565b600080600060608486031215611fb957611fb8611cd4565b5b6000611fc786828701611f21565b9350506020611fd886828701611f21565b9250506040611fe986828701611e6c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261201857612017611ff3565b5b8235905067ffffffffffffffff81111561203557612034611ff8565b5b60208301915083600182028301111561205157612050611ffd565b5b9250929050565b6000806020838503121561206f5761206e611cd4565b5b600083013567ffffffffffffffff81111561208d5761208c611cd9565b5b61209985828601612002565b92509250509250929050565b6000602082840312156120bb576120ba611cd4565b5b60006120c984828501611f21565b91505092915050565b6120db81611d63565b81146120e657600080fd5b50565b6000813590506120f8816120d2565b92915050565b6000806040838503121561211557612114611cd4565b5b600061212385828601611f21565b9250506020612134858286016120e9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217b82611ddf565b810181811067ffffffffffffffff8211171561219a57612199612143565b5b80604052505050565b60006121ad611cca565b90506121b98282612172565b919050565b600067ffffffffffffffff8211156121d9576121d8612143565b5b6121e282611ddf565b9050602081019050919050565b82818337600083830152505050565b600061221161220c846121be565b6121a3565b90508281526020810184848401111561222d5761222c61213e565b5b6122388482856121ef565b509392505050565b600082601f83011261225557612254611ff3565b5b81356122658482602086016121fe565b91505092915050565b6000806000806080858703121561228857612287611cd4565b5b600061229687828801611f21565b94505060206122a787828801611f21565b93505060406122b887828801611e6c565b925050606085013567ffffffffffffffff8111156122d9576122d8611cd9565b5b6122e587828801612240565b91505092959194509250565b6000806040838503121561230857612307611cd4565b5b600061231685828601611f21565b925050602061232785828601611f21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237857607f821691505b60208210810361238b5761238a612331565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ed602183611da4565b91506123f882612391565b604082019050919050565b6000602082019050818103600083015261241c816123e0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061247f603d83611da4565b915061248a82612423565b604082019050919050565b600060208201905081810360008301526124ae81612472565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612511602d83611da4565b915061251c826124b5565b604082019050919050565b6000602082019050818103600083015261254081612504565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061258182611e4b565b915061258c83611e4b565b92508282019050808211156125a4576125a3612547565b5b92915050565b7f4d6178207075626c696320737570706c79206578636565646564000000000000600082015250565b60006125e0601a83611da4565b91506125eb826125aa565b602082019050919050565b6000602082019050818103600083015261260f816125d3565b9050919050565b600061262182611e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361265357612652612547565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261268e565b6126d5868361268e565b95508019841693508086168417925050509392505050565b6000819050919050565b600061271261270d61270884611e4b565b6126ed565b611e4b565b9050919050565b6000819050919050565b61272c836126f7565b61274061273882612719565b84845461269b565b825550505050565b600090565b612755612748565b612760818484612723565b505050565b5b818110156127845761277960008261274d565b600181019050612766565b5050565b601f8211156127c95761279a81612669565b6127a38461267e565b810160208510156127b2578190505b6127c66127be8561267e565b830182612765565b50505b505050565b600082821c905092915050565b60006127ec600019846008026127ce565b1980831691505092915050565b600061280583836127db565b9150826002028217905092915050565b61281f838361265e565b67ffffffffffffffff81111561283857612837612143565b5b6128428254612360565b61284d828285612788565b6000601f83116001811461287c576000841561286a578287013590505b61287485826127f9565b8655506128dc565b601f19841661288a86612669565b60005b828110156128b25784890135825560018201915060208501945060208101905061288d565b868310156128cf57848901356128cb601f8916826127db565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061291b601883611da4565b9150612926826128e5565b602082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129ad602983611da4565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b600081905092915050565b60006129f982611d99565b612a0381856129e3565b9350612a13818560208601611db5565b80840191505092915050565b6000612a2b82856129ee565b9150612a3782846129ee565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a9f602683611da4565b9150612aaa82612a43565b604082019050919050565b60006020820190508181036000830152612ace81612a92565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612b31602583611da4565b9150612b3c82612ad5565b604082019050919050565b60006020820190508181036000830152612b6081612b24565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bc3602483611da4565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2f602083611da4565b9150612c3a82612bf9565b602082019050919050565b60006020820190508181036000830152612c5e81612c22565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612c9b601983611da4565b9150612ca682612c65565b602082019050919050565b60006020820190508181036000830152612cca81612c8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612d2d603283611da4565b9150612d3882612cd1565b604082019050919050565b60006020820190508181036000830152612d5c81612d20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d9d82611e4b565b9150612da883611e4b565b9250828203905081811115612dc057612dbf612547565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ded82612dc6565b612df78185612dd1565b9350612e07818560208601611db5565b612e1081611ddf565b840191505092915050565b6000608082019050612e306000830187611ee0565b612e3d6020830186611ee0565b612e4a6040830185611f76565b8181036060830152612e5c8184612de2565b905095945050505050565b600081519050612e7681611d0a565b92915050565b600060208284031215612e9257612e91611cd4565b5b6000612ea084828501612e67565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612edf602083611da4565b9150612eea82612ea9565b602082019050919050565b60006020820190508181036000830152612f0e81612ed2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f4b601c83611da4565b9150612f5682612f15565b602082019050919050565b60006020820190508181036000830152612f7a81612f3e565b905091905056fea26469706673582212203f0f3a62d204e11126ccbc4ec6c100d0a6e5461e6851c7b70755aab10a73318d64736f6c6343000811003368747470733a2f2f6262632e6d7970696e6174612e636c6f75642f697066732f516d61627946767a7563686772536573336b54464b386568346f6a554d74546d626e4648534a7a515169465371352f
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde1461031b578063c87b56dd14610337578063d5abeb0114610367578063e985e9c514610385578063f2fde38b146103b55761012c565b806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357806395d89b41146102e1578063a22cb465146102ff5761012c565b806323b872dd116100f457806323b872dd146101e95780632590bdce1461020557806330176e131461022157806342842e0e1461023d5780636352211e146102595761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611d36565b6103d1565b6040516101589190611d7e565b60405180910390f35b6101696104b3565b6040516101769190611e29565b60405180910390f35b61019960048036038101906101949190611e81565b610545565b6040516101a69190611eef565b60405180910390f35b6101c960048036038101906101c49190611f36565b61058b565b005b6101d36106a2565b6040516101e09190611f85565b60405180910390f35b61020360048036038101906101fe9190611fa0565b6106b3565b005b61021f600480360381019061021a9190611f36565b610713565b005b61023b60048036038101906102369190612058565b6107b4565b005b61025760048036038101906102529190611fa0565b6107d2565b005b610273600480360381019061026e9190611e81565b6107f2565b6040516102809190611eef565b60405180910390f35b6102a3600480360381019061029e91906120a5565b610878565b6040516102b09190611f85565b60405180910390f35b6102c161092f565b005b6102cb610943565b6040516102d89190611eef565b60405180910390f35b6102e961096c565b6040516102f69190611e29565b60405180910390f35b610319600480360381019061031491906120fe565b6109fe565b005b6103356004803603810190610330919061226e565b610a14565b005b610351600480360381019061034c9190611e81565b610a76565b60405161035e9190611e29565b60405180910390f35b61036f610ade565b60405161037c9190611f85565b60405180910390f35b61039f600480360381019061039a91906122f1565b610ae4565b6040516103ac9190611d7e565b60405180910390f35b6103cf60048036038101906103ca91906120a5565b610b78565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ac57506104ab82610bfb565b5b9050919050565b6060600180546104c290612360565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90612360565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b600061055082610c65565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610596826107f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fd90612403565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610625610cb0565b73ffffffffffffffffffffffffffffffffffffffff16148061065457506106538161064e610cb0565b610ae4565b5b610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90612495565b60405180910390fd5b61069d8383610cb8565b505050565b60006106ae6009610d71565b905090565b6106c46106be610cb0565b82610d7f565b610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612527565b60405180910390fd5b61070e838383610e14565b505050565b61071b61110d565b600754816107296009610d71565b6107339190612576565b1115610774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076b906125f6565b60405180910390fd5b60005b818110156107af57610789600961118b565b61079c836107976009610d71565b6111a1565b80806107a790612616565b915050610777565b505050565b6107bc61110d565b8181600891826107cd929190612815565b505050565b6107ed83838360405180602001604052806000815250610a14565b505050565b6000806107fe836111bf565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361086f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086690612931565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906129c3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093761110d565b61094160006111fc565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461097b90612360565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790612360565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b610a10610a09610cb0565b83836112c0565b5050565b610a25610a1f610cb0565b83610d7f565b610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612527565b60405180910390fd5b610a708484848461142c565b50505050565b6060610a8182610c65565b6000610a8b611488565b90506000815111610aab5760405180602001604052806000815250610ad6565b80610ab58461151a565b604051602001610ac6929190612a1f565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b8061110d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612ab5565b60405180910390fd5b610bf8816111fc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c6e816115e8565b610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612931565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d2b836107f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080610d8b836107f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dcd5750610dcc8185610ae4565b5b80610e0b57508373ffffffffffffffffffffffffffffffffffffffff16610df384610545565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e34826107f2565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190612b47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090612bd9565b60405180910390fd5b610f068383836001611629565b8273ffffffffffffffffffffffffffffffffffffffff16610f26826107f2565b73ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390612b47565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611108838383600161174f565b505050565b611115610cb0565b73ffffffffffffffffffffffffffffffffffffffff16611133610943565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612c45565b60405180910390fd5b565b6001816000016000828254019250508190555050565b6111bb828260405180602001604052806000815250611755565b5050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612cb1565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141f9190611d7e565b60405180910390a3505050565b611437848484610e14565b611443848484846117b0565b611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612d43565b60405180910390fd5b50505050565b60606008805461149790612360565b80601f01602080910402602001604051908101604052809291908181526020018280546114c390612360565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b5050505050905090565b60606000600161152984611937565b01905060008167ffffffffffffffff81111561154857611547612143565b5b6040519080825280601f01601f19166020018201604052801561157a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156115dd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816115d1576115d0612d63565b5b04945060008503611588575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661160a836111bf565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600181111561174957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116bd5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b59190612d92565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146117485780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117409190612576565b925050819055505b5b50505050565b50505050565b61175f8383611a8a565b61176c60008484846117b0565b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612d43565b60405180910390fd5b505050565b60006117d18473ffffffffffffffffffffffffffffffffffffffff16611ca7565b1561192a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117fa610cb0565b8786866040518563ffffffff1660e01b815260040161181c9493929190612e1b565b6020604051808303816000875af192505050801561185857506040513d601f19601f820116820180604052508101906118559190612e7c565b60015b6118da573d8060008114611888576040519150601f19603f3d011682016040523d82523d6000602084013e61188d565b606091505b5060008151036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990612d43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061192f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611995577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161198b5761198a612d63565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106119d2576d04ee2d6d415b85acef810000000083816119c8576119c7612d63565b5b0492506020810190505b662386f26fc100008310611a0157662386f26fc1000083816119f7576119f6612d63565b5b0492506010810190505b6305f5e1008310611a2a576305f5e1008381611a2057611a1f612d63565b5b0492506008810190505b6127108310611a4f576127108381611a4557611a44612d63565b5b0492506004810190505b60648310611a725760648381611a6857611a67612d63565b5b0492506002810190505b600a8310611a81576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090612ef5565b60405180910390fd5b611b02816115e8565b15611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990612f61565b60405180910390fd5b611b50600083836001611629565b611b59816115e8565b15611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090612f61565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ca360008383600161174f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d1381611cde565b8114611d1e57600080fd5b50565b600081359050611d3081611d0a565b92915050565b600060208284031215611d4c57611d4b611cd4565b5b6000611d5a84828501611d21565b91505092915050565b60008115159050919050565b611d7881611d63565b82525050565b6000602082019050611d936000830184611d6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611dd3578082015181840152602081019050611db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dfb82611d99565b611e058185611da4565b9350611e15818560208601611db5565b611e1e81611ddf565b840191505092915050565b60006020820190508181036000830152611e438184611df0565b905092915050565b6000819050919050565b611e5e81611e4b565b8114611e6957600080fd5b50565b600081359050611e7b81611e55565b92915050565b600060208284031215611e9757611e96611cd4565b5b6000611ea584828501611e6c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ed982611eae565b9050919050565b611ee981611ece565b82525050565b6000602082019050611f046000830184611ee0565b92915050565b611f1381611ece565b8114611f1e57600080fd5b50565b600081359050611f3081611f0a565b92915050565b60008060408385031215611f4d57611f4c611cd4565b5b6000611f5b85828601611f21565b9250506020611f6c85828601611e6c565b9150509250929050565b611f7f81611e4b565b82525050565b6000602082019050611f9a6000830184611f76565b92915050565b600080600060608486031215611fb957611fb8611cd4565b5b6000611fc786828701611f21565b9350506020611fd886828701611f21565b9250506040611fe986828701611e6c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261201857612017611ff3565b5b8235905067ffffffffffffffff81111561203557612034611ff8565b5b60208301915083600182028301111561205157612050611ffd565b5b9250929050565b6000806020838503121561206f5761206e611cd4565b5b600083013567ffffffffffffffff81111561208d5761208c611cd9565b5b61209985828601612002565b92509250509250929050565b6000602082840312156120bb576120ba611cd4565b5b60006120c984828501611f21565b91505092915050565b6120db81611d63565b81146120e657600080fd5b50565b6000813590506120f8816120d2565b92915050565b6000806040838503121561211557612114611cd4565b5b600061212385828601611f21565b9250506020612134858286016120e9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217b82611ddf565b810181811067ffffffffffffffff8211171561219a57612199612143565b5b80604052505050565b60006121ad611cca565b90506121b98282612172565b919050565b600067ffffffffffffffff8211156121d9576121d8612143565b5b6121e282611ddf565b9050602081019050919050565b82818337600083830152505050565b600061221161220c846121be565b6121a3565b90508281526020810184848401111561222d5761222c61213e565b5b6122388482856121ef565b509392505050565b600082601f83011261225557612254611ff3565b5b81356122658482602086016121fe565b91505092915050565b6000806000806080858703121561228857612287611cd4565b5b600061229687828801611f21565b94505060206122a787828801611f21565b93505060406122b887828801611e6c565b925050606085013567ffffffffffffffff8111156122d9576122d8611cd9565b5b6122e587828801612240565b91505092959194509250565b6000806040838503121561230857612307611cd4565b5b600061231685828601611f21565b925050602061232785828601611f21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237857607f821691505b60208210810361238b5761238a612331565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ed602183611da4565b91506123f882612391565b604082019050919050565b6000602082019050818103600083015261241c816123e0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061247f603d83611da4565b915061248a82612423565b604082019050919050565b600060208201905081810360008301526124ae81612472565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612511602d83611da4565b915061251c826124b5565b604082019050919050565b6000602082019050818103600083015261254081612504565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061258182611e4b565b915061258c83611e4b565b92508282019050808211156125a4576125a3612547565b5b92915050565b7f4d6178207075626c696320737570706c79206578636565646564000000000000600082015250565b60006125e0601a83611da4565b91506125eb826125aa565b602082019050919050565b6000602082019050818103600083015261260f816125d3565b9050919050565b600061262182611e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361265357612652612547565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261268e565b6126d5868361268e565b95508019841693508086168417925050509392505050565b6000819050919050565b600061271261270d61270884611e4b565b6126ed565b611e4b565b9050919050565b6000819050919050565b61272c836126f7565b61274061273882612719565b84845461269b565b825550505050565b600090565b612755612748565b612760818484612723565b505050565b5b818110156127845761277960008261274d565b600181019050612766565b5050565b601f8211156127c95761279a81612669565b6127a38461267e565b810160208510156127b2578190505b6127c66127be8561267e565b830182612765565b50505b505050565b600082821c905092915050565b60006127ec600019846008026127ce565b1980831691505092915050565b600061280583836127db565b9150826002028217905092915050565b61281f838361265e565b67ffffffffffffffff81111561283857612837612143565b5b6128428254612360565b61284d828285612788565b6000601f83116001811461287c576000841561286a578287013590505b61287485826127f9565b8655506128dc565b601f19841661288a86612669565b60005b828110156128b25784890135825560018201915060208501945060208101905061288d565b868310156128cf57848901356128cb601f8916826127db565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061291b601883611da4565b9150612926826128e5565b602082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129ad602983611da4565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b600081905092915050565b60006129f982611d99565b612a0381856129e3565b9350612a13818560208601611db5565b80840191505092915050565b6000612a2b82856129ee565b9150612a3782846129ee565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a9f602683611da4565b9150612aaa82612a43565b604082019050919050565b60006020820190508181036000830152612ace81612a92565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612b31602583611da4565b9150612b3c82612ad5565b604082019050919050565b60006020820190508181036000830152612b6081612b24565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bc3602483611da4565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2f602083611da4565b9150612c3a82612bf9565b602082019050919050565b60006020820190508181036000830152612c5e81612c22565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612c9b601983611da4565b9150612ca682612c65565b602082019050919050565b60006020820190508181036000830152612cca81612c8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612d2d603283611da4565b9150612d3882612cd1565b604082019050919050565b60006020820190508181036000830152612d5c81612d20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d9d82611e4b565b9150612da883611e4b565b9250828203905081811115612dc057612dbf612547565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ded82612dc6565b612df78185612dd1565b9350612e07818560208601611db5565b612e1081611ddf565b840191505092915050565b6000608082019050612e306000830187611ee0565b612e3d6020830186611ee0565b612e4a6040830185611f76565b8181036060830152612e5c8184612de2565b905095945050505050565b600081519050612e7681611d0a565b92915050565b600060208284031215612e9257612e91611cd4565b5b6000612ea084828501612e67565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612edf602083611da4565b9150612eea82612ea9565b602082019050919050565b60006020820190508181036000830152612f0e81612ed2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f4b601c83611da4565b9150612f5682612f15565b602082019050919050565b60006020820190508181036000830152612f7a81612f3e565b905091905056fea26469706673582212203f0f3a62d204e11126ccbc4ec6c100d0a6e5461e6851c7b70755aab10a73318d64736f6c63430008110033
Deployed Bytecode Sourcemap
55923:1088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37309:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38237:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39749:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39267:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56658:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40449:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56322:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56783:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40855:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37947:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37678:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55032:103;;;:::i;:::-;;54384:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38406:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39992:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41111:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38581:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55993:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40218:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55290:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37309:305;37411:4;37463:25;37448:40;;;:11;:40;;;;:105;;;;37520:33;37505:48;;;:11;:48;;;;37448:105;:158;;;;37570:36;37594:11;37570:23;:36::i;:::-;37448:158;37428:178;;37309:305;;;:::o;38237:100::-;38291:13;38324:5;38317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:100;:::o;39749:171::-;39825:7;39845:23;39860:7;39845:14;:23::i;:::-;39888:15;:24;39904:7;39888:24;;;;;;;;;;;;;;;;;;;;;39881:31;;39749:171;;;:::o;39267:416::-;39348:13;39364:23;39379:7;39364:14;:23::i;:::-;39348:39;;39412:5;39406:11;;:2;:11;;;39398:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39506:5;39490:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;39515:37;39532:5;39539:12;:10;:12::i;:::-;39515:16;:37::i;:::-;39490:62;39468:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;39654:21;39663:2;39667:7;39654:8;:21::i;:::-;39337:346;39267:416;;:::o;56658:89::-;56701:4;56722:18;:8;:16;:18::i;:::-;56715:25;;56658:89;:::o;40449:335::-;40644:41;40663:12;:10;:12::i;:::-;40677:7;40644:18;:41::i;:::-;40636:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;40748:28;40758:4;40764:2;40768:7;40748:9;:28::i;:::-;40449:335;;;:::o;56322:310::-;54270:13;:11;:13::i;:::-;56437:9:::1;;56426:7;56405:18;:8;:16;:18::i;:::-;:28;;;;:::i;:::-;:41;;56397:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;56496:6;56491:128;56512:7;56508:1;:11;56491:128;;;56537:20;:8;:18;:20::i;:::-;56570:34;56580:3;56585:18;:8;:16;:18::i;:::-;56570:9;:34::i;:::-;56521:3;;;;;:::i;:::-;;;;56491:128;;;;56322:310:::0;;:::o;56783:104::-;54270:13;:11;:13::i;:::-;56875:4:::1;;56860:12;:19;;;;;;;:::i;:::-;;56783:104:::0;;:::o;40855:185::-;40993:39;41010:4;41016:2;41020:7;40993:39;;;;;;;;;;;;:16;:39::i;:::-;40855:185;;;:::o;37947:223::-;38019:7;38039:13;38055:17;38064:7;38055:8;:17::i;:::-;38039:33;;38108:1;38091:19;;:5;:19;;;38083:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;38157:5;38150:12;;;37947:223;;;:::o;37678:207::-;37750:7;37795:1;37778:19;;:5;:19;;;37770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37861:9;:16;37871:5;37861:16;;;;;;;;;;;;;;;;37854:23;;37678:207;;;:::o;55032:103::-;54270:13;:11;:13::i;:::-;55097:30:::1;55124:1;55097:18;:30::i;:::-;55032:103::o:0;54384:87::-;54430:7;54457:6;;;;;;;;;;;54450:13;;54384:87;:::o;38406:104::-;38462:13;38495:7;38488:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38406:104;:::o;39992:155::-;40087:52;40106:12;:10;:12::i;:::-;40120:8;40130;40087:18;:52::i;:::-;39992:155;;:::o;41111:322::-;41285:41;41304:12;:10;:12::i;:::-;41318:7;41285:18;:41::i;:::-;41277:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;41387:38;41401:4;41407:2;41411:7;41420:4;41387:13;:38::i;:::-;41111:322;;;;:::o;38581:281::-;38654:13;38680:23;38695:7;38680:14;:23::i;:::-;38716:21;38740:10;:8;:10::i;:::-;38716:34;;38792:1;38774:7;38768:21;:25;:86;;;;;;;;;;;;;;;;;38820:7;38829:18;:7;:16;:18::i;:::-;38803:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38768:86;38761:93;;;38581:281;;;:::o;55993:25::-;;;;:::o;40218:164::-;40315:4;40339:18;:25;40358:5;40339:25;;;;;;;;;;;;;;;:35;40365:8;40339:35;;;;;;;;;;;;;;;;;;;;;;;;;40332:42;;40218:164;;;;:::o;55290:201::-;54270:13;:11;:13::i;:::-;55399:1:::1;55379:22;;:8;:22;;::::0;55371:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;55455:28;55474:8;55455:18;:28::i;:::-;55290:201:::0;:::o;28928:157::-;29013:4;29052:25;29037:40;;;:11;:40;;;;29030:47;;28928:157;;;:::o;49568:135::-;49650:16;49658:7;49650;:16::i;:::-;49642:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49568:135;:::o;35688:98::-;35741:7;35768:10;35761:17;;35688:98;:::o;48847:174::-;48949:2;48922:15;:24;48938:7;48922:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49005:7;49001:2;48967:46;;48976:23;48991:7;48976:14;:23::i;:::-;48967:46;;;;;;;;;;;;48847:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;43466:264::-;43559:4;43576:13;43592:23;43607:7;43592:14;:23::i;:::-;43576:39;;43645:5;43634:16;;:7;:16;;;:52;;;;43654:32;43671:5;43678:7;43654:16;:32::i;:::-;43634:52;:87;;;;43714:7;43690:31;;:20;43702:7;43690:11;:20::i;:::-;:31;;;43634:87;43626:96;;;43466:264;;;;:::o;47465:1263::-;47624:4;47597:31;;:23;47612:7;47597:14;:23::i;:::-;:31;;;47589:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;47703:1;47689:16;;:2;:16;;;47681:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47759:42;47780:4;47786:2;47790:7;47799:1;47759:20;:42::i;:::-;47931:4;47904:31;;:23;47919:7;47904:14;:23::i;:::-;:31;;;47896:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48049:15;:24;48065:7;48049:24;;;;;;;;;;;;48042:31;;;;;;;;;;;48544:1;48525:9;:15;48535:4;48525:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;48577:1;48560:9;:13;48570:2;48560:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48619:2;48600:7;:16;48608:7;48600:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48658:7;48654:2;48639:27;;48648:4;48639:27;;;;;;;;;;;;48679:41;48699:4;48705:2;48709:7;48718:1;48679:19;:41::i;:::-;47465:1263;;;:::o;54549:132::-;54624:12;:10;:12::i;:::-;54613:23;;:7;:5;:7::i;:::-;:23;;;54605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54549:132::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;44072:110::-;44148:26;44158:2;44162:7;44148:26;;;;;;;;;;;;:9;:26::i;:::-;44072:110;;:::o;42741:117::-;42807:7;42834;:16;42842:7;42834:16;;;;;;;;;;;;;;;;;;;;;42827:23;;42741:117;;;:::o;55651:191::-;55725:16;55744:6;;;;;;;;;;;55725:25;;55770:8;55761:6;;:17;;;;;;;;;;;;;;;;;;55825:8;55794:40;;55815:8;55794:40;;;;;;;;;;;;55714:128;55651:191;:::o;49164:315::-;49319:8;49310:17;;:5;:17;;;49302:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49406:8;49368:18;:25;49387:5;49368:25;;;;;;;;;;;;;;;:35;49394:8;49368:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49452:8;49430:41;;49445:5;49430:41;;;49462:8;49430:41;;;;;;:::i;:::-;;;;;;;;49164:315;;;:::o;42314:313::-;42470:28;42480:4;42486:2;42490:7;42470:9;:28::i;:::-;42517:47;42540:4;42546:2;42550:7;42559:4;42517:22;:47::i;:::-;42509:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42314:313;;;;:::o;56899:105::-;56951:13;56984:12;56977:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56899:105;:::o;14770:716::-;14826:13;14877:14;14914:1;14894:17;14905:5;14894:10;:17::i;:::-;:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14930:41;;14986:11;15115:6;15111:2;15107:15;15099:6;15095:28;15088:35;;15152:288;15159:4;15152:288;;;15184:5;;;;;;;;15326:8;15321:2;15314:5;15310:14;15305:30;15300:3;15292:44;15382:2;15373:11;;;;;;:::i;:::-;;;;;15416:1;15407:5;:10;15152:288;15403:21;15152:288;15461:6;15454:13;;;;;14770:716;;;:::o;43171:128::-;43236:4;43289:1;43260:31;;:17;43269:7;43260:8;:17::i;:::-;:31;;;;43253:38;;43171:128;;;:::o;51852:410::-;52042:1;52030:9;:13;52026:229;;;52080:1;52064:18;;:4;:18;;;52060:87;;52122:9;52103;:15;52113:4;52103:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;52060:87;52179:1;52165:16;;:2;:16;;;52161:83;;52219:9;52202;:13;52212:2;52202:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;52161:83;52026:229;51852:410;;;;:::o;52984:158::-;;;;;:::o;44409:319::-;44538:18;44544:2;44548:7;44538:5;:18::i;:::-;44589:53;44620:1;44624:2;44628:7;44637:4;44589:22;:53::i;:::-;44567:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;44409:319;;;:::o;50267:853::-;50421:4;50442:15;:2;:13;;;:15::i;:::-;50438:675;;;50494:2;50478:36;;;50515:12;:10;:12::i;:::-;50529:4;50535:7;50544:4;50478:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50474:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50736:1;50719:6;:13;:18;50715:328;;50762:60;;;;;;;;;;:::i;:::-;;;;;;;;50715:328;50993:6;50987:13;50978:6;50974:2;50970:15;50963:38;50474:584;50610:41;;;50600:51;;;:6;:51;;;;50593:58;;;;;50438:675;51097:4;51090:11;;50267:853;;;;;;;:::o;11636:922::-;11689:7;11709:14;11726:1;11709:18;;11776:6;11767:5;:15;11763:102;;11812:6;11803:15;;;;;;:::i;:::-;;;;;11847:2;11837:12;;;;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;;;;:::i;:::-;;;;;11963:2;11953:12;;;;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;;;;:::i;:::-;;;;;12079:2;12069:12;;;;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;;;;:::i;:::-;;;;;12193:1;12183:11;;;;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;;;;:::i;:::-;;;;;12306:1;12296:11;;;;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;;;;:::i;:::-;;;;;12419:1;12409:11;;;;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;;;;12450:66;12544:6;12537:13;;;11636:922;;;:::o;45064:942::-;45158:1;45144:16;;:2;:16;;;45136:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45217:16;45225:7;45217;:16::i;:::-;45216:17;45208:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45279:48;45308:1;45312:2;45316:7;45325:1;45279:20;:48::i;:::-;45426:16;45434:7;45426;:16::i;:::-;45425:17;45417:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45841:1;45824:9;:13;45834:2;45824:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;45885:2;45866:7;:16;45874:7;45866:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;45930:7;45926:2;45905:33;;45922:1;45905:33;;;;;;;;;;;;45951:47;45979:1;45983:2;45987:7;45996:1;45951:19;:47::i;:::-;45064:942;;:::o;17897:326::-;17957:4;18214:1;18192:7;:19;;;:23;18185:30;;17897:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:220::-;12477:34;12473:1;12465:6;12461:14;12454:58;12546:3;12541:2;12533:6;12529:15;12522:28;12337:220;:::o;12563:366::-;12705:3;12726:67;12790:2;12785:3;12726:67;:::i;:::-;12719:74;;12802:93;12891:3;12802:93;:::i;:::-;12920:2;12915:3;12911:12;12904:19;;12563:366;;;:::o;12935:419::-;13101:4;13139:2;13128:9;13124:18;13116:26;;13188:9;13182:4;13178:20;13174:1;13163:9;13159:17;13152:47;13216:131;13342:4;13216:131;:::i;:::-;13208:139;;12935:419;;;:::o;13360:248::-;13500:34;13496:1;13488:6;13484:14;13477:58;13569:31;13564:2;13556:6;13552:15;13545:56;13360:248;:::o;13614:366::-;13756:3;13777:67;13841:2;13836:3;13777:67;:::i;:::-;13770:74;;13853:93;13942:3;13853:93;:::i;:::-;13971:2;13966:3;13962:12;13955:19;;13614:366;;;:::o;13986:419::-;14152:4;14190:2;14179:9;14175:18;14167:26;;14239:9;14233:4;14229:20;14225:1;14214:9;14210:17;14203:47;14267:131;14393:4;14267:131;:::i;:::-;14259:139;;13986:419;;;:::o;14411:232::-;14551:34;14547:1;14539:6;14535:14;14528:58;14620:15;14615:2;14607:6;14603:15;14596:40;14411:232;:::o;14649:366::-;14791:3;14812:67;14876:2;14871:3;14812:67;:::i;:::-;14805:74;;14888:93;14977:3;14888:93;:::i;:::-;15006:2;15001:3;14997:12;14990:19;;14649:366;;;:::o;15021:419::-;15187:4;15225:2;15214:9;15210:18;15202:26;;15274:9;15268:4;15264:20;15260:1;15249:9;15245:17;15238:47;15302:131;15428:4;15302:131;:::i;:::-;15294:139;;15021:419;;;:::o;15446:180::-;15494:77;15491:1;15484:88;15591:4;15588:1;15581:15;15615:4;15612:1;15605:15;15632:191;15672:3;15691:20;15709:1;15691:20;:::i;:::-;15686:25;;15725:20;15743:1;15725:20;:::i;:::-;15720:25;;15768:1;15765;15761:9;15754:16;;15789:3;15786:1;15783:10;15780:36;;;15796:18;;:::i;:::-;15780:36;15632:191;;;;:::o;15829:176::-;15969:28;15965:1;15957:6;15953:14;15946:52;15829:176;:::o;16011:366::-;16153:3;16174:67;16238:2;16233:3;16174:67;:::i;:::-;16167:74;;16250:93;16339:3;16250:93;:::i;:::-;16368:2;16363:3;16359:12;16352:19;;16011:366;;;:::o;16383:419::-;16549:4;16587:2;16576:9;16572:18;16564:26;;16636:9;16630:4;16626:20;16622:1;16611:9;16607:17;16600:47;16664:131;16790:4;16664:131;:::i;:::-;16656:139;;16383:419;;;:::o;16808:233::-;16847:3;16870:24;16888:5;16870:24;:::i;:::-;16861:33;;16916:66;16909:5;16906:77;16903:103;;16986:18;;:::i;:::-;16903:103;17033:1;17026:5;17022:13;17015:20;;16808:233;;;:::o;17047:97::-;17106:6;17134:3;17124:13;;17047:97;;;;:::o;17150:141::-;17199:4;17222:3;17214:11;;17245:3;17242:1;17235:14;17279:4;17276:1;17266:18;17258:26;;17150:141;;;:::o;17297:93::-;17334:6;17381:2;17376;17369:5;17365:14;17361:23;17351:33;;17297:93;;;:::o;17396:107::-;17440:8;17490:5;17484:4;17480:16;17459:37;;17396:107;;;;:::o;17509:393::-;17578:6;17628:1;17616:10;17612:18;17651:97;17681:66;17670:9;17651:97;:::i;:::-;17769:39;17799:8;17788:9;17769:39;:::i;:::-;17757:51;;17841:4;17837:9;17830:5;17826:21;17817:30;;17890:4;17880:8;17876:19;17869:5;17866:30;17856:40;;17585:317;;17509:393;;;;;:::o;17908:60::-;17936:3;17957:5;17950:12;;17908:60;;;:::o;17974:142::-;18024:9;18057:53;18075:34;18084:24;18102:5;18084:24;:::i;:::-;18075:34;:::i;:::-;18057:53;:::i;:::-;18044:66;;17974:142;;;:::o;18122:75::-;18165:3;18186:5;18179:12;;18122:75;;;:::o;18203:269::-;18313:39;18344:7;18313:39;:::i;:::-;18374:91;18423:41;18447:16;18423:41;:::i;:::-;18415:6;18408:4;18402:11;18374:91;:::i;:::-;18368:4;18361:105;18279:193;18203:269;;;:::o;18478:73::-;18523:3;18478:73;:::o;18557:189::-;18634:32;;:::i;:::-;18675:65;18733:6;18725;18719:4;18675:65;:::i;:::-;18610:136;18557:189;;:::o;18752:186::-;18812:120;18829:3;18822:5;18819:14;18812:120;;;18883:39;18920:1;18913:5;18883:39;:::i;:::-;18856:1;18849:5;18845:13;18836:22;;18812:120;;;18752:186;;:::o;18944:543::-;19045:2;19040:3;19037:11;19034:446;;;19079:38;19111:5;19079:38;:::i;:::-;19163:29;19181:10;19163:29;:::i;:::-;19153:8;19149:44;19346:2;19334:10;19331:18;19328:49;;;19367:8;19352:23;;19328:49;19390:80;19446:22;19464:3;19446:22;:::i;:::-;19436:8;19432:37;19419:11;19390:80;:::i;:::-;19049:431;;19034:446;18944:543;;;:::o;19493:117::-;19547:8;19597:5;19591:4;19587:16;19566:37;;19493:117;;;;:::o;19616:169::-;19660:6;19693:51;19741:1;19737:6;19729:5;19726:1;19722:13;19693:51;:::i;:::-;19689:56;19774:4;19768;19764:15;19754:25;;19667:118;19616:169;;;;:::o;19790:295::-;19866:4;20012:29;20037:3;20031:4;20012:29;:::i;:::-;20004:37;;20074:3;20071:1;20067:11;20061:4;20058:21;20050:29;;19790:295;;;;:::o;20090:1403::-;20214:44;20254:3;20249;20214:44;:::i;:::-;20323:18;20315:6;20312:30;20309:56;;;20345:18;;:::i;:::-;20309:56;20389:38;20421:4;20415:11;20389:38;:::i;:::-;20474:67;20534:6;20526;20520:4;20474:67;:::i;:::-;20568:1;20597:2;20589:6;20586:14;20614:1;20609:632;;;;21285:1;21302:6;21299:84;;;21358:9;21353:3;21349:19;21336:33;21327:42;;21299:84;21409:67;21469:6;21462:5;21409:67;:::i;:::-;21403:4;21396:81;21258:229;20579:908;;20609:632;20661:4;20657:9;20649:6;20645:22;20695:37;20727:4;20695:37;:::i;:::-;20754:1;20768:215;20782:7;20779:1;20776:14;20768:215;;;20868:9;20863:3;20859:19;20846:33;20838:6;20831:49;20919:1;20911:6;20907:14;20897:24;;20966:2;20955:9;20951:18;20938:31;;20805:4;20802:1;20798:12;20793:17;;20768:215;;;21011:6;21002:7;20999:19;20996:186;;;21076:9;21071:3;21067:19;21054:33;21119:48;21161:4;21153:6;21149:17;21138:9;21119:48;:::i;:::-;21111:6;21104:64;21019:163;20996:186;21228:1;21224;21216:6;21212:14;21208:22;21202:4;21195:36;20616:625;;;20579:908;;20189:1304;;;20090:1403;;;:::o;21499:174::-;21639:26;21635:1;21627:6;21623:14;21616:50;21499:174;:::o;21679:366::-;21821:3;21842:67;21906:2;21901:3;21842:67;:::i;:::-;21835:74;;21918:93;22007:3;21918:93;:::i;:::-;22036:2;22031:3;22027:12;22020:19;;21679:366;;;:::o;22051:419::-;22217:4;22255:2;22244:9;22240:18;22232:26;;22304:9;22298:4;22294:20;22290:1;22279:9;22275:17;22268:47;22332:131;22458:4;22332:131;:::i;:::-;22324:139;;22051:419;;;:::o;22476:228::-;22616:34;22612:1;22604:6;22600:14;22593:58;22685:11;22680:2;22672:6;22668:15;22661:36;22476:228;:::o;22710:366::-;22852:3;22873:67;22937:2;22932:3;22873:67;:::i;:::-;22866:74;;22949:93;23038:3;22949:93;:::i;:::-;23067:2;23062:3;23058:12;23051:19;;22710:366;;;:::o;23082:419::-;23248:4;23286:2;23275:9;23271:18;23263:26;;23335:9;23329:4;23325:20;23321:1;23310:9;23306:17;23299:47;23363:131;23489:4;23363:131;:::i;:::-;23355:139;;23082:419;;;:::o;23507:148::-;23609:11;23646:3;23631:18;;23507:148;;;;:::o;23661:390::-;23767:3;23795:39;23828:5;23795:39;:::i;:::-;23850:89;23932:6;23927:3;23850:89;:::i;:::-;23843:96;;23948:65;24006:6;24001:3;23994:4;23987:5;23983:16;23948:65;:::i;:::-;24038:6;24033:3;24029:16;24022:23;;23771:280;23661:390;;;;:::o;24057:435::-;24237:3;24259:95;24350:3;24341:6;24259:95;:::i;:::-;24252:102;;24371:95;24462:3;24453:6;24371:95;:::i;:::-;24364:102;;24483:3;24476:10;;24057:435;;;;;:::o;24498:225::-;24638:34;24634:1;24626:6;24622:14;24615:58;24707:8;24702:2;24694:6;24690:15;24683:33;24498:225;:::o;24729:366::-;24871:3;24892:67;24956:2;24951:3;24892:67;:::i;:::-;24885:74;;24968:93;25057:3;24968:93;:::i;:::-;25086:2;25081:3;25077:12;25070:19;;24729:366;;;:::o;25101:419::-;25267:4;25305:2;25294:9;25290:18;25282:26;;25354:9;25348:4;25344:20;25340:1;25329:9;25325:17;25318:47;25382:131;25508:4;25382:131;:::i;:::-;25374:139;;25101:419;;;:::o;25526:224::-;25666:34;25662:1;25654:6;25650:14;25643:58;25735:7;25730:2;25722:6;25718:15;25711:32;25526:224;:::o;25756:366::-;25898:3;25919:67;25983:2;25978:3;25919:67;:::i;:::-;25912:74;;25995:93;26084:3;25995:93;:::i;:::-;26113:2;26108:3;26104:12;26097:19;;25756:366;;;:::o;26128:419::-;26294:4;26332:2;26321:9;26317:18;26309:26;;26381:9;26375:4;26371:20;26367:1;26356:9;26352:17;26345:47;26409:131;26535:4;26409:131;:::i;:::-;26401:139;;26128:419;;;:::o;26553:223::-;26693:34;26689:1;26681:6;26677:14;26670:58;26762:6;26757:2;26749:6;26745:15;26738:31;26553:223;:::o;26782:366::-;26924:3;26945:67;27009:2;27004:3;26945:67;:::i;:::-;26938:74;;27021:93;27110:3;27021:93;:::i;:::-;27139:2;27134:3;27130:12;27123:19;;26782:366;;;:::o;27154:419::-;27320:4;27358:2;27347:9;27343:18;27335:26;;27407:9;27401:4;27397:20;27393:1;27382:9;27378:17;27371:47;27435:131;27561:4;27435:131;:::i;:::-;27427:139;;27154:419;;;:::o;27579:182::-;27719:34;27715:1;27707:6;27703:14;27696:58;27579:182;:::o;27767:366::-;27909:3;27930:67;27994:2;27989:3;27930:67;:::i;:::-;27923:74;;28006:93;28095:3;28006:93;:::i;:::-;28124:2;28119:3;28115:12;28108:19;;27767:366;;;:::o;28139:419::-;28305:4;28343:2;28332:9;28328:18;28320:26;;28392:9;28386:4;28382:20;28378:1;28367:9;28363:17;28356:47;28420:131;28546:4;28420:131;:::i;:::-;28412:139;;28139:419;;;:::o;28564:175::-;28704:27;28700:1;28692:6;28688:14;28681:51;28564:175;:::o;28745:366::-;28887:3;28908:67;28972:2;28967:3;28908:67;:::i;:::-;28901:74;;28984:93;29073:3;28984:93;:::i;:::-;29102:2;29097:3;29093:12;29086:19;;28745:366;;;:::o;29117:419::-;29283:4;29321:2;29310:9;29306:18;29298:26;;29370:9;29364:4;29360:20;29356:1;29345:9;29341:17;29334:47;29398:131;29524:4;29398:131;:::i;:::-;29390:139;;29117:419;;;:::o;29542:237::-;29682:34;29678:1;29670:6;29666:14;29659:58;29751:20;29746:2;29738:6;29734:15;29727:45;29542:237;:::o;29785:366::-;29927:3;29948:67;30012:2;30007:3;29948:67;:::i;:::-;29941:74;;30024:93;30113:3;30024:93;:::i;:::-;30142:2;30137:3;30133:12;30126:19;;29785:366;;;:::o;30157:419::-;30323:4;30361:2;30350:9;30346:18;30338:26;;30410:9;30404:4;30400:20;30396:1;30385:9;30381:17;30374:47;30438:131;30564:4;30438:131;:::i;:::-;30430:139;;30157:419;;;:::o;30582:180::-;30630:77;30627:1;30620:88;30727:4;30724:1;30717:15;30751:4;30748:1;30741:15;30768:194;30808:4;30828:20;30846:1;30828:20;:::i;:::-;30823:25;;30862:20;30880:1;30862:20;:::i;:::-;30857:25;;30906:1;30903;30899:9;30891:17;;30930:1;30924:4;30921:11;30918:37;;;30935:18;;:::i;:::-;30918:37;30768:194;;;;:::o;30968:98::-;31019:6;31053:5;31047:12;31037:22;;30968:98;;;:::o;31072:168::-;31155:11;31189:6;31184:3;31177:19;31229:4;31224:3;31220:14;31205:29;;31072:168;;;;:::o;31246:373::-;31332:3;31360:38;31392:5;31360:38;:::i;:::-;31414:70;31477:6;31472:3;31414:70;:::i;:::-;31407:77;;31493:65;31551:6;31546:3;31539:4;31532:5;31528:16;31493:65;:::i;:::-;31583:29;31605:6;31583:29;:::i;:::-;31578:3;31574:39;31567:46;;31336:283;31246:373;;;;:::o;31625:640::-;31820:4;31858:3;31847:9;31843:19;31835:27;;31872:71;31940:1;31929:9;31925:17;31916:6;31872:71;:::i;:::-;31953:72;32021:2;32010:9;32006:18;31997:6;31953:72;:::i;:::-;32035;32103:2;32092:9;32088:18;32079:6;32035:72;:::i;:::-;32154:9;32148:4;32144:20;32139:2;32128:9;32124:18;32117:48;32182:76;32253:4;32244:6;32182:76;:::i;:::-;32174:84;;31625:640;;;;;;;:::o;32271:141::-;32327:5;32358:6;32352:13;32343:22;;32374:32;32400:5;32374:32;:::i;:::-;32271:141;;;;:::o;32418:349::-;32487:6;32536:2;32524:9;32515:7;32511:23;32507:32;32504:119;;;32542:79;;:::i;:::-;32504:119;32662:1;32687:63;32742:7;32733:6;32722:9;32718:22;32687:63;:::i;:::-;32677:73;;32633:127;32418:349;;;;:::o;32773:182::-;32913:34;32909:1;32901:6;32897:14;32890:58;32773:182;:::o;32961:366::-;33103:3;33124:67;33188:2;33183:3;33124:67;:::i;:::-;33117:74;;33200:93;33289:3;33200:93;:::i;:::-;33318:2;33313:3;33309:12;33302:19;;32961:366;;;:::o;33333:419::-;33499:4;33537:2;33526:9;33522:18;33514:26;;33586:9;33580:4;33576:20;33572:1;33561:9;33557:17;33550:47;33614:131;33740:4;33614:131;:::i;:::-;33606:139;;33333:419;;;:::o;33758:178::-;33898:30;33894:1;33886:6;33882:14;33875:54;33758:178;:::o;33942:366::-;34084:3;34105:67;34169:2;34164:3;34105:67;:::i;:::-;34098:74;;34181:93;34270:3;34181:93;:::i;:::-;34299:2;34294:3;34290:12;34283:19;;33942:366;;;:::o;34314:419::-;34480:4;34518:2;34507:9;34503:18;34495:26;;34567:9;34561:4;34557:20;34553:1;34542:9;34538:17;34531:47;34595:131;34721:4;34595:131;:::i;:::-;34587:139;;34314:419;;;:::o
Swarm Source
ipfs://3f0f3a62d204e11126ccbc4ec6c100d0a6e5461e6851c7b70755aab10a73318d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.