Token SANSLI
Overview ERC-721
Total Supply:
73 SANS
Holders:
1 addresses
Transfers:
-
Profile Summary
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SANSLI
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-18 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.2) (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 {} /** * @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 {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/sansli.sol pragma solidity ^0.8.9; // // // contract SANSLI is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using SafeMath for uint256; using Strings for uint256; string baseURI; string public baseExtension = ".json"; Counters.Counter private _tokenIdCounter; uint256 public cost = 0.024 ether; uint256 public maxSupply = 86400; uint256 public maxMintAmount = 24; bool public paused = false; bool public revealed = false; string public notRevealedUri; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001b5565b50665543df729c0000600e5562015180600f5560186010556011805461ffff191690553480156200005857600080fd5b5060405162002755380380620027558339810160408190526200007b9162000328565b82518390839062000094906000906020850190620001b5565b508051620000aa906001906020840190620001b5565b505050620000c7620000c1620000db60201b60201c565b620000df565b620000d28162000131565b505050620003f6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013b62000154565b80516200015090600b906020840190620001b5565b5050565b600a546001600160a01b03163314620001b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001c390620003b9565b90600052602060002090601f016020900481019282620001e7576000855562000232565b82601f106200020257805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023257825182559160200191906001019062000215565b506200024092915062000244565b5090565b5b8082111562000240576000815560010162000245565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028357600080fd5b81516001600160401b0380821115620002a057620002a06200025b565b604051601f8301601f19908116603f01168101908282118183101715620002cb57620002cb6200025b565b81604052838152602092508683858801011115620002e857600080fd5b600091505b838210156200030c5785820183015181830184015290820190620002ed565b838211156200031e5760008385830101525b9695505050505050565b6000806000606084860312156200033e57600080fd5b83516001600160401b03808211156200035657600080fd5b620003648783880162000271565b945060208601519150808211156200037b57600080fd5b620003898783880162000271565b93506040860151915080821115620003a057600080fd5b50620003af8682870162000271565b9150509250925092565b600181811c90821680620003ce57607f821691505b60208210811415620003f057634e487b7160e01b600052602260045260246000fd5b50919050565b61234f80620004066000396000f3fe60806040526004361061020f5760003560e01c80635c975abb11610118578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb01146105bc578063da3ef23f146105d2578063e985e9c5146105f2578063f2c4ce1e1461063b578063f2fde38b1461065b57600080fd5b8063a475b5dd14610552578063b88d4fde14610567578063c668286214610587578063c87b56dd1461059c57600080fd5b80637f00c7a6116100e75780637f00c7a6146104cc5780638da5cb5b146104ec57806395d89b411461050a578063a0712d681461051f578063a22cb4651461053257600080fd5b80635c975abb1461045d5780636352211e1461047757806370a0823114610497578063715018a6146104b757600080fd5b806323b872dd1161019b578063438b63001161016a578063438b6300146103b157806344a0d68a146103de5780634f6ccce7146103fe578063518302271461041e57806355f804b31461043d57600080fd5b806323b872dd146103495780632f745c59146103695780633ccfd60b1461038957806342842e0e1461039157600080fd5b8063081c8c44116101e2578063081c8c44146102c5578063095ea7b3146102da57806313faede6146102fa57806318160ddd1461031e578063239c70ae1461033357600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611cd6565b61067b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611d08565b6106a6565b005b34801561027757600080fd5b506102806106c1565b6040516102409190611d7b565b34801561029957600080fd5b506102ad6102a8366004611d8e565b610753565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b5061028061077a565b3480156102e657600080fd5b506102696102f5366004611dbe565b610808565b34801561030657600080fd5b50610310600e5481565b604051908152602001610240565b34801561032a57600080fd5b50600854610310565b34801561033f57600080fd5b5061031060105481565b34801561035557600080fd5b50610269610364366004611de8565b610923565b34801561037557600080fd5b50610310610384366004611dbe565b610954565b6102696109ea565b34801561039d57600080fd5b506102696103ac366004611de8565b610a66565b3480156103bd57600080fd5b506103d16103cc366004611e24565b610a81565b6040516102409190611e3f565b3480156103ea57600080fd5b506102696103f9366004611d8e565b610b23565b34801561040a57600080fd5b50610310610419366004611d8e565b610b30565b34801561042a57600080fd5b5060115461023490610100900460ff1681565b34801561044957600080fd5b50610269610458366004611f0f565b610bc3565b34801561046957600080fd5b506011546102349060ff1681565b34801561048357600080fd5b506102ad610492366004611d8e565b610be2565b3480156104a357600080fd5b506103106104b2366004611e24565b610c42565b3480156104c357600080fd5b50610269610cc8565b3480156104d857600080fd5b506102696104e7366004611d8e565b610cdc565b3480156104f857600080fd5b50600a546001600160a01b03166102ad565b34801561051657600080fd5b50610280610ce9565b61026961052d366004611d8e565b610cf8565b34801561053e57600080fd5b5061026961054d366004611f58565b610da5565b34801561055e57600080fd5b50610269610db0565b34801561057357600080fd5b50610269610582366004611f8b565b610dc9565b34801561059357600080fd5b50610280610e01565b3480156105a857600080fd5b506102806105b7366004611d8e565b610e0e565b3480156105c857600080fd5b50610310600f5481565b3480156105de57600080fd5b506102696105ed366004611f0f565b610f8d565b3480156105fe57600080fd5b5061023461060d366004612007565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064757600080fd5b50610269610656366004611f0f565b610fa8565b34801561066757600080fd5b50610269610676366004611e24565b610fc3565b60006001600160e01b0319821663780e9d6360e01b14806106a057506106a082611039565b92915050565b6106ae611089565b6011805460ff1916911515919091179055565b6060600080546106d090612031565b80601f01602080910402602001604051908101604052809291908181526020018280546106fc90612031565b80156107495780601f1061071e57610100808354040283529160200191610749565b820191906000526020600020905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b600061075e826110e3565b506000908152600460205260409020546001600160a01b031690565b6012805461078790612031565b80601f01602080910402602001604051908101604052809291908181526020018280546107b390612031565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b505050505081565b600061081382610be2565b9050806001600160a01b0316836001600160a01b031614156108865760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108a257506108a2813361060d565b6109145760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161087d565b61091e8383611142565b505050565b61092d33826111b0565b6109495760405162461bcd60e51b815260040161087d9061206c565b61091e83838361122f565b600061095f83610c42565b82106109c15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161087d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109f2611089565b6000610a06600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b5050905080610a6357600080fd5b50565b61091e83838360405180602001604052806000815250610dc9565b60606000610a8e83610c42565b905060008167ffffffffffffffff811115610aab57610aab611e83565b604051908082528060200260200182016040528015610ad4578160200160208202803683370190505b50905060005b82811015610b1b57610aec8582610954565b828281518110610afe57610afe6120b9565b602090810291909101015280610b13816120e5565b915050610ada565b509392505050565b610b2b611089565b600e55565b6000610b3b60085490565b8210610b9e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161087d565b60088281548110610bb157610bb16120b9565b90600052602060002001549050919050565b610bcb611089565b8051610bde90600b906020840190611c27565b5050565b6000818152600260205260408120546001600160a01b0316806106a05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161087d565b60006001600160a01b038216610cac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161087d565b506001600160a01b031660009081526003602052604090205490565b610cd0611089565b610cda60006113a0565b565b610ce4611089565b601055565b6060600180546106d090612031565b6000610d0360085490565b60115490915060ff1615610d1657600080fd5b60008211610d2357600080fd5b601054821115610d3257600080fd5b600f54610d3f8383612100565b1115610d4a57600080fd5b600a546001600160a01b03163314610d765781600e54610d6a9190612118565b341015610d7657600080fd5b60015b82811161091e57610d9333610d8e8385612100565b6113f2565b80610d9d816120e5565b915050610d79565b610bde33838361140c565b610db8611089565b6011805461ff001916610100179055565b610dd333836111b0565b610def5760405162461bcd60e51b815260040161087d9061206c565b610dfb848484846114db565b50505050565b600c805461078790612031565b6000818152600260205260409020546060906001600160a01b0316610e8d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087d565b601154610100900460ff16610f2e5760128054610ea990612031565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed590612031565b8015610f225780601f10610ef757610100808354040283529160200191610f22565b820191906000526020600020905b815481529060010190602001808311610f0557829003601f168201915b50505050509050919050565b6000610f3861150e565b90506000815111610f585760405180602001604052806000815250610f86565b80610f628461151d565b600c604051602001610f7693929190612137565b6040516020818303038152906040525b9392505050565b610f95611089565b8051610bde90600c906020840190611c27565b610fb0611089565b8051610bde906012906020840190611c27565b610fcb611089565b6001600160a01b0381166110305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087d565b610a63816113a0565b60006001600160e01b031982166380ac58cd60e01b148061106a57506001600160e01b03198216635b5e139f60e01b145b806106a057506301ffc9a760e01b6001600160e01b03198316146106a0565b600a546001600160a01b03163314610cda5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087d565b6000818152600260205260409020546001600160a01b0316610a635760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161087d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117782610be2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806111bc83610be2565b9050806001600160a01b0316846001600160a01b0316148061120357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112275750836001600160a01b031661121c84610753565b6001600160a01b0316145b949350505050565b826001600160a01b031661124282610be2565b6001600160a01b0316146112685760405162461bcd60e51b815260040161087d906121fb565b6001600160a01b0382166112ca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161087d565b6112d783838360016115b2565b826001600160a01b03166112ea82610be2565b6001600160a01b0316146113105760405162461bcd60e51b815260040161087d906121fb565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610bde8282604051806020016040528060008152506116e6565b816001600160a01b0316836001600160a01b0316141561146e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114e684848461122f565b6114f284848484611719565b610dfb5760405162461bcd60e51b815260040161087d90612240565b6060600b80546106d090612031565b6060600061152a83611826565b600101905060008167ffffffffffffffff81111561154a5761154a611e83565b6040519080825280601f01601f191660200182016040528015611574576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115ad57610b1b565b61157e565b60018111156116215760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161087d565b816001600160a01b03851661167d5761167881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116a0565b836001600160a01b0316856001600160a01b0316146116a0576116a085826118fe565b6001600160a01b0384166116bc576116b78161199b565b6116df565b846001600160a01b0316846001600160a01b0316146116df576116df8482611a4a565b5050505050565b6116f08383611a8e565b6116fd6000848484611719565b61091e5760405162461bcd60e51b815260040161087d90612240565b60006001600160a01b0384163b1561181b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061175d903390899088908890600401612292565b602060405180830381600087803b15801561177757600080fd5b505af19250505080156117a7575060408051601f3d908101601f191682019092526117a4918101906122cf565b60015b611801573d8080156117d5576040519150601f19603f3d011682016040523d82523d6000602084013e6117da565b606091505b5080516117f95760405162461bcd60e51b815260040161087d90612240565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611227565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118655772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611891576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118af57662386f26fc10000830492506010015b6305f5e10083106118c7576305f5e100830492506008015b61271083106118db57612710830492506004015b606483106118ed576064830492506002015b600a83106106a05760010192915050565b6000600161190b84610c42565b61191591906122ec565b600083815260076020526040902054909150808214611968576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119ad906001906122ec565b600083815260096020526040812054600880549394509092849081106119d5576119d56120b9565b9060005260206000200154905080600883815481106119f6576119f66120b9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a2e57611a2e612303565b6001900381819060005260206000200160009055905550505050565b6000611a5583610c42565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ae45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087d565b6000818152600260205260409020546001600160a01b031615611b495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087d565b611b576000838360016115b2565b6000818152600260205260409020546001600160a01b031615611bbc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087d565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c3390612031565b90600052602060002090601f016020900481019282611c555760008555611c9b565b82601f10611c6e57805160ff1916838001178555611c9b565b82800160010185558215611c9b579182015b82811115611c9b578251825591602001919060010190611c80565b50611ca7929150611cab565b5090565b5b80821115611ca75760008155600101611cac565b6001600160e01b031981168114610a6357600080fd5b600060208284031215611ce857600080fd5b8135610f8681611cc0565b80358015158114611d0357600080fd5b919050565b600060208284031215611d1a57600080fd5b610f8682611cf3565b60005b83811015611d3e578181015183820152602001611d26565b83811115610dfb5750506000910152565b60008151808452611d67816020860160208601611d23565b601f01601f19169290920160200192915050565b602081526000610f866020830184611d4f565b600060208284031215611da057600080fd5b5035919050565b80356001600160a01b0381168114611d0357600080fd5b60008060408385031215611dd157600080fd5b611dda83611da7565b946020939093013593505050565b600080600060608486031215611dfd57600080fd5b611e0684611da7565b9250611e1460208501611da7565b9150604084013590509250925092565b600060208284031215611e3657600080fd5b610f8682611da7565b6020808252825182820181905260009190848201906040850190845b81811015611e7757835183529284019291840191600101611e5b565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611eb457611eb4611e83565b604051601f8501601f19908116603f01168101908282118183101715611edc57611edc611e83565b81604052809350858152868686011115611ef557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f2157600080fd5b813567ffffffffffffffff811115611f3857600080fd5b8201601f81018413611f4957600080fd5b61122784823560208401611e99565b60008060408385031215611f6b57600080fd5b611f7483611da7565b9150611f8260208401611cf3565b90509250929050565b60008060008060808587031215611fa157600080fd5b611faa85611da7565b9350611fb860208601611da7565b925060408501359150606085013567ffffffffffffffff811115611fdb57600080fd5b8501601f81018713611fec57600080fd5b611ffb87823560208401611e99565b91505092959194509250565b6000806040838503121561201a57600080fd5b61202383611da7565b9150611f8260208401611da7565b600181811c9082168061204557607f821691505b6020821081141561206657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156120f9576120f96120cf565b5060010190565b60008219821115612113576121136120cf565b500190565b6000816000190483118215151615612132576121326120cf565b500290565b60008451602061214a8285838a01611d23565b85519184019161215d8184848a01611d23565b8554920191600090600181811c908083168061217a57607f831692505b85831081141561219857634e487b7160e01b85526022600452602485fd5b8080156121ac57600181146121bd576121ea565b60ff198516885283880195506121ea565b60008b81526020902060005b858110156121e25781548a8201529084019088016121c9565b505083880195505b50939b9a5050505050505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c590830184611d4f565b9695505050505050565b6000602082840312156122e157600080fd5b8151610f8681611cc0565b6000828210156122fe576122fe6120cf565b500390565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a2cf33eabb37627737a8b02f082a86ad95455fc8b9b8cdaec788480d2fe5b21664736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000653414e534c490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453414e53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696535717a7764777367656b637669627135756379776e356575677463367279353565776b707237336977646f3362376f716137712f0000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000653414e534c490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453414e53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696535717a7764777367656b637669627135756379776e356575677463367279353565776b707237336977646f3362376f716137712f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): SANSLI
Arg [1] : _symbol (string): SANS
Arg [2] : _initBaseURI (string): ipfs://bafybeie5qzwdwsgekcvibq5ucywn5eugtc6ry55ewkpr73iwdo3b7oqa7q/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 53414e534c490000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 53414e5300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f626166796265696535717a7764777367656b63766962713575
Arg [9] : 6379776e356575677463367279353565776b707237336977646f3362376f7161
Arg [10] : 37712f0000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
74079:3000:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68041:224;;;;;;;;;;-1:-1:-1;68041:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;68041:224:0;;;;;;;;76846:73;;;;;;;;;;-1:-1:-1;76846:73:0;;;;;:::i;:::-;;:::i;:::-;;51748:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53260:171::-;;;;;;;;;;-1:-1:-1;53260:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;53260:171:0;1878:203:1;74545:28:0;;;;;;;;;;;;;:::i;52778:416::-;;;;;;;;;;-1:-1:-1;52778:416:0;;;;;:::i;:::-;;:::i;74358:33::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;74358:33:0;2523:177:1;68681:113:0;;;;;;;;;;-1:-1:-1;68769:10:0;:17;68681:113;;74437:33;;;;;;;;;;;;;;;;53960:335;;;;;;;;;;-1:-1:-1;53960:335:0;;;;;:::i;:::-;;:::i;68349:256::-;;;;;;;;;;-1:-1:-1;68349:256:0;;;;;:::i;:::-;;:::i;76926:150::-;;;:::i;54366:185::-;;;;;;;;;;-1:-1:-1;54366:185:0;;;;;:::i;:::-;;:::i;75332:348::-;;;;;;;;;;-1:-1:-1;75332:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;76278:80::-;;;;;;;;;;-1:-1:-1;76278:80:0;;;;;:::i;:::-;;:::i;68871:233::-;;;;;;;;;;-1:-1:-1;68871:233:0;;;;;:::i;:::-;;:::i;74510:28::-;;;;;;;;;;-1:-1:-1;74510:28:0;;;;;;;;;;;76614:98;;;;;;;;;;-1:-1:-1;76614:98:0;;;;;:::i;:::-;;:::i;74477:26::-;;;;;;;;;;-1:-1:-1;74477:26:0;;;;;;;;51458:223;;;;;;;;;;-1:-1:-1;51458:223:0;;;;;:::i;:::-;;:::i;51189:207::-;;;;;;;;;;-1:-1:-1;51189:207:0;;;;;:::i;:::-;;:::i;29171:103::-;;;;;;;;;;;;;:::i;76364:116::-;;;;;;;;;;-1:-1:-1;76364:116:0;;;;;:::i;:::-;;:::i;28523:87::-;;;;;;;;;;-1:-1:-1;28596:6:0;;-1:-1:-1;;;;;28596:6:0;28523:87;;51917:104;;;;;;;;;;;;;:::i;74893:433::-;;;;;;:::i;:::-;;:::i;53503:155::-;;;;;;;;;;-1:-1:-1;53503:155:0;;;;;:::i;:::-;;:::i;76205:65::-;;;;;;;;;;;;;:::i;54622:322::-;;;;;;;;;;-1:-1:-1;54622:322:0;;;;;:::i;:::-;;:::i;74259:37::-;;;;;;;;;;;;;:::i;75686:497::-;;;;;;;;;;-1:-1:-1;75686:497:0;;;;;:::i;:::-;;:::i;74398:32::-;;;;;;;;;;;;;;;;76718:122;;;;;;;;;;-1:-1:-1;76718:122:0;;;;;:::i;:::-;;:::i;53729:164::-;;;;;;;;;;-1:-1:-1;53729:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;53850:25:0;;;53826:4;53850:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;53729:164;76488:120;;;;;;;;;;-1:-1:-1;76488:120:0;;;;;:::i;:::-;;:::i;29429:201::-;;;;;;;;;;-1:-1:-1;29429:201:0;;;;;:::i;:::-;;:::i;68041:224::-;68143:4;-1:-1:-1;;;;;;68167:50:0;;-1:-1:-1;;;68167:50:0;;:90;;;68221:36;68245:11;68221:23;:36::i;:::-;68160:97;68041:224;-1:-1:-1;;68041:224:0:o;76846:73::-;28409:13;:11;:13::i;:::-;76898:6:::1;:15:::0;;-1:-1:-1;;76898:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76846:73::o;51748:100::-;51802:13;51835:5;51828:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51748:100;:::o;53260:171::-;53336:7;53356:23;53371:7;53356:14;:23::i;:::-;-1:-1:-1;53399:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;53399:24:0;;53260:171::o;74545:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52778:416::-;52859:13;52875:23;52890:7;52875:14;:23::i;:::-;52859:39;;52923:5;-1:-1:-1;;;;;52917:11:0;:2;-1:-1:-1;;;;;52917:11:0;;;52909:57;;;;-1:-1:-1;;;52909:57:0;;6874:2:1;52909:57:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:31;7044:19;;52909:57:0;;;;;;;;;24499:10;-1:-1:-1;;;;;53001:21:0;;;;:62;;-1:-1:-1;53026:37:0;53043:5;24499:10;53729:164;:::i;53026:37::-;52979:173;;;;-1:-1:-1;;;52979:173:0;;7276:2:1;52979:173:0;;;7258:21:1;7315:2;7295:18;;;7288:30;7354:34;7334:18;;;7327:62;7425:31;7405:18;;;7398:59;7474:19;;52979:173:0;7074:425:1;52979:173:0;53165:21;53174:2;53178:7;53165:8;:21::i;:::-;52848:346;52778:416;;:::o;53960:335::-;54155:41;24499:10;54188:7;54155:18;:41::i;:::-;54147:99;;;;-1:-1:-1;;;54147:99:0;;;;;;;:::i;:::-;54259:28;54269:4;54275:2;54279:7;54259:9;:28::i;68349:256::-;68446:7;68482:23;68499:5;68482:16;:23::i;:::-;68474:5;:31;68466:87;;;;-1:-1:-1;;;68466:87:0;;8120:2:1;68466:87:0;;;8102:21:1;8159:2;8139:18;;;8132:30;8198:34;8178:18;;;8171:62;-1:-1:-1;;;8249:18:1;;;8242:41;8300:19;;68466:87:0;7918:407:1;68466:87:0;-1:-1:-1;;;;;;68571:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;68349:256::o;76926:150::-;28409:13;:11;:13::i;:::-;76982:7:::1;77003;28596:6:::0;;-1:-1:-1;;;;;28596:6:0;;28523:87;77003:7:::1;-1:-1:-1::0;;;;;76995:21:0::1;77024;76995:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76981:69;;;77065:2;77057:11;;;::::0;::::1;;76971:105;76926:150::o:0;54366:185::-;54504:39;54521:4;54527:2;54531:7;54504:39;;;;;;;;;;;;:16;:39::i;75332:348::-;75407:16;75435:23;75461:17;75471:6;75461:9;:17::i;:::-;75435:43;;75485:25;75527:15;75513:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75513:30:0;;75485:58;;75555:9;75550:103;75570:15;75566:1;:19;75550:103;;;75615:30;75635:6;75643:1;75615:19;:30::i;:::-;75601:8;75610:1;75601:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;75587:3;;;;:::i;:::-;;;;75550:103;;;-1:-1:-1;75666:8:0;75332:348;-1:-1:-1;;;75332:348:0:o;76278:80::-;28409:13;:11;:13::i;:::-;76337:4:::1;:15:::0;76278:80::o;68871:233::-;68946:7;68982:30;68769:10;:17;;68681:113;68982:30;68974:5;:38;68966:95;;;;-1:-1:-1;;;68966:95:0;;9146:2:1;68966:95:0;;;9128:21:1;9185:2;9165:18;;;9158:30;9224:34;9204:18;;;9197:62;-1:-1:-1;;;9275:18:1;;;9268:42;9327:19;;68966:95:0;8944:408:1;68966:95:0;69079:10;69090:5;69079:17;;;;;;;;:::i;:::-;;;;;;;;;69072:24;;68871:233;;;:::o;76614:98::-;28409:13;:11;:13::i;:::-;76685:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;76614:98:::0;:::o;51458:223::-;51530:7;56345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;56345:16:0;;51594:56;;;;-1:-1:-1;;;51594:56:0;;9559:2:1;51594:56:0;;;9541:21:1;9598:2;9578:18;;;9571:30;-1:-1:-1;;;9617:18:1;;;9610:54;9681:18;;51594:56:0;9357:348:1;51189:207:0;51261:7;-1:-1:-1;;;;;51289:19:0;;51281:73;;;;-1:-1:-1;;;51281:73:0;;9912:2:1;51281:73:0;;;9894:21:1;9951:2;9931:18;;;9924:30;9990:34;9970:18;;;9963:62;-1:-1:-1;;;10041:18:1;;;10034:39;10090:19;;51281:73:0;9710:405:1;51281:73:0;-1:-1:-1;;;;;;51372:16:0;;;;;:9;:16;;;;;;;51189:207::o;29171:103::-;28409:13;:11;:13::i;:::-;29236:30:::1;29263:1;29236:18;:30::i;:::-;29171:103::o:0;76364:116::-;28409:13;:11;:13::i;:::-;76441::::1;:33:::0;76364:116::o;51917:104::-;51973:13;52006:7;51999:14;;;;;:::i;74893:433::-;74950:14;74967:13;68769:10;:17;;68681:113;74967:13;74996:6;;74950:30;;-1:-1:-1;74996:6:0;;74995:7;74987:16;;;;;;75032:1;75018:11;:15;75010:24;;;;;;75064:13;;75049:11;:28;;75041:37;;;;;;75117:9;;75093:20;75102:11;75093:6;:20;:::i;:::-;:33;;75085:42;;;;;;28596:6;;-1:-1:-1;;;;;28596:6:0;75140:10;:21;75136:84;;75200:11;75193:4;;:18;;;;:::i;:::-;75180:9;:31;;75172:40;;;;;;75245:1;75228:93;75253:11;75248:1;:16;75228:93;;75280:33;75290:10;75302;75311:1;75302:6;:10;:::i;:::-;75280:9;:33::i;:::-;75266:3;;;;:::i;:::-;;;;75228:93;;53503:155;53598:52;24499:10;53631:8;53641;53598:18;:52::i;76205:65::-;28409:13;:11;:13::i;:::-;76249:8:::1;:15:::0;;-1:-1:-1;;76249:15:0::1;;;::::0;;76205:65::o;54622:322::-;54796:41;24499:10;54829:7;54796:18;:41::i;:::-;54788:99;;;;-1:-1:-1;;;54788:99:0;;;;;;;:::i;:::-;54898:38;54912:4;54918:2;54922:7;54931:4;54898:13;:38::i;:::-;54622:322;;;;:::o;74259:37::-;;;;;;;:::i;75686:497::-;56747:4;56345:16;;;:7;:16;;;;;;75784:13;;-1:-1:-1;;;;;56345:16:0;75809:97;;;;-1:-1:-1;;;75809:97:0;;10628:2:1;75809:97:0;;;10610:21:1;10667:2;10647:18;;;10640:30;10706:34;10686:18;;;10679:62;-1:-1:-1;;;10757:18:1;;;10750:45;10812:19;;75809:97:0;10426:411:1;75809:97:0;75922:8;;;;;;;75919:62;;75959:14;75952:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75686:497;;;:::o;75919:62::-;75989:28;76020:10;:8;:10::i;:::-;75989:41;;76075:1;76050:14;76044:28;:32;:133;;;;;;;;;;;;;;;;;76112:14;76128:18;:7;:16;:18::i;:::-;76148:13;76095:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76044:133;76037:140;75686:497;-1:-1:-1;;;75686:497:0:o;76718:122::-;28409:13;:11;:13::i;:::-;76801:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;76488:120::-:0;28409:13;:11;:13::i;:::-;76570:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;29429:201::-:0;28409:13;:11;:13::i;:::-;-1:-1:-1;;;;;29518:22:0;::::1;29510:73;;;::::0;-1:-1:-1;;;29510:73:0;;12702:2:1;29510:73:0::1;::::0;::::1;12684:21:1::0;12741:2;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;-1:-1:-1;;;12831:18:1;;;12824:36;12877:19;;29510:73:0::1;12500:402:1::0;29510:73:0::1;29594:28;29613:8;29594:18;:28::i;50820:305::-:0;50922:4;-1:-1:-1;;;;;;50959:40:0;;-1:-1:-1;;;50959:40:0;;:105;;-1:-1:-1;;;;;;;51016:48:0;;-1:-1:-1;;;51016:48:0;50959:105;:158;;;-1:-1:-1;;;;;;;;;;42361:40:0;;;51081:36;42252:157;28688:132;28596:6;;-1:-1:-1;;;;;28596:6:0;24499:10;28752:23;28744:68;;;;-1:-1:-1;;;28744:68:0;;13109:2:1;28744:68:0;;;13091:21:1;;;13128:18;;;13121:30;13187:34;13167:18;;;13160:62;13239:18;;28744:68:0;12907:356:1;63079:135:0;56747:4;56345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;56345:16:0;63153:53;;;;-1:-1:-1;;;63153:53:0;;9559:2:1;63153:53:0;;;9541:21:1;9598:2;9578:18;;;9571:30;-1:-1:-1;;;9617:18:1;;;9610:54;9681:18;;63153:53:0;9357:348:1;62358:174:0;62433:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;62433:29:0;-1:-1:-1;;;;;62433:29:0;;;;;;;;:24;;62487:23;62433:24;62487:14;:23::i;:::-;-1:-1:-1;;;;;62478:46:0;;;;;;;;;;;62358:174;;:::o;56977:264::-;57070:4;57087:13;57103:23;57118:7;57103:14;:23::i;:::-;57087:39;;57156:5;-1:-1:-1;;;;;57145:16:0;:7;-1:-1:-1;;;;;57145:16:0;;:52;;;-1:-1:-1;;;;;;53850:25:0;;;53826:4;53850:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57165:32;57145:87;;;;57225:7;-1:-1:-1;;;;;57201:31:0;:20;57213:7;57201:11;:20::i;:::-;-1:-1:-1;;;;;57201:31:0;;57145:87;57137:96;56977:264;-1:-1:-1;;;;56977:264:0:o;60976:1263::-;61135:4;-1:-1:-1;;;;;61108:31:0;:23;61123:7;61108:14;:23::i;:::-;-1:-1:-1;;;;;61108:31:0;;61100:81;;;;-1:-1:-1;;;61100:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61200:16:0;;61192:65;;;;-1:-1:-1;;;61192:65:0;;13876:2:1;61192:65:0;;;13858:21:1;13915:2;13895:18;;;13888:30;13954:34;13934:18;;;13927:62;-1:-1:-1;;;14005:18:1;;;13998:34;14049:19;;61192:65:0;13674:400:1;61192:65:0;61270:42;61291:4;61297:2;61301:7;61310:1;61270:20;:42::i;:::-;61442:4;-1:-1:-1;;;;;61415:31:0;:23;61430:7;61415:14;:23::i;:::-;-1:-1:-1;;;;;61415:31:0;;61407:81;;;;-1:-1:-1;;;61407:81:0;;;;;;;:::i;:::-;61560:24;;;;:15;:24;;;;;;;;61553:31;;-1:-1:-1;;;;;;61553:31:0;;;;;;-1:-1:-1;;;;;62036:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;62036:20:0;;;62071:13;;;;;;;;;:18;;61553:31;62071:18;;;62111:16;;;:7;:16;;;;;;:21;;;;;;;;;;62150:27;;61576:7;;62150:27;;;52848:346;52778:416;;:::o;29790:191::-;29883:6;;;-1:-1:-1;;;;;29900:17:0;;;-1:-1:-1;;;;;;29900:17:0;;;;;;;29933:40;;29883:6;;;29900:17;29883:6;;29933:40;;29864:16;;29933:40;29853:128;29790:191;:::o;57583:110::-;57659:26;57669:2;57673:7;57659:26;;;;;;;;;;;;:9;:26::i;62675:315::-;62830:8;-1:-1:-1;;;;;62821:17:0;:5;-1:-1:-1;;;;;62821:17:0;;;62813:55;;;;-1:-1:-1;;;62813:55:0;;14281:2:1;62813:55:0;;;14263:21:1;14320:2;14300:18;;;14293:30;14359:27;14339:18;;;14332:55;14404:18;;62813:55:0;14079:349:1;62813:55:0;-1:-1:-1;;;;;62879:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;62879:46:0;;;;;;;;;;62941:41;;540::1;;;62941::0;;513:18:1;62941:41:0;;;;;;;62675:315;;;:::o;55825:313::-;55981:28;55991:4;55997:2;56001:7;55981:9;:28::i;:::-;56028:47;56051:4;56057:2;56061:7;56070:4;56028:22;:47::i;:::-;56020:110;;;;-1:-1:-1;;;56020:110:0;;;;;;;:::i;74772:102::-;74832:13;74861:7;74854:14;;;;;:::i;21846:716::-;21902:13;21953:14;21970:17;21981:5;21970:10;:17::i;:::-;21990:1;21970:21;21953:38;;22006:20;22040:6;22029:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22029:18:0;-1:-1:-1;22006:41:0;-1:-1:-1;22171:28:0;;;22187:2;22171:28;22228:288;-1:-1:-1;;22260:5:0;-1:-1:-1;;;22397:2:0;22386:14;;22381:30;22260:5;22368:44;22458:2;22449:11;;;-1:-1:-1;22483:10:0;22479:21;;22495:5;;22479:21;22228:288;;69178:915;69445:1;69433:9;:13;69429:222;;;69576:63;;-1:-1:-1;;;69576:63:0;;15186:2:1;69576:63:0;;;15168:21:1;15225:2;15205:18;;;15198:30;15264:34;15244:18;;;15237:62;-1:-1:-1;;;15315:18:1;;;15308:51;15376:19;;69576:63:0;14984:417:1;69429:222:0;69681:12;-1:-1:-1;;;;;69710:18:0;;69706:187;;69745:40;69777:7;70920:10;:17;;70893:24;;;;:15;:24;;;;;:44;;;70948:24;;;;;;;;;;;;70816:164;69745:40;69706:187;;;69815:2;-1:-1:-1;;;;;69807:10:0;:4;-1:-1:-1;;;;;69807:10:0;;69803:90;;69834:47;69867:4;69873:7;69834:32;:47::i;:::-;-1:-1:-1;;;;;69907:16:0;;69903:183;;69940:45;69977:7;69940:36;:45::i;:::-;69903:183;;;70013:4;-1:-1:-1;;;;;70007:10:0;:2;-1:-1:-1;;;;;70007:10:0;;70003:83;;70034:40;70062:2;70066:7;70034:27;:40::i;:::-;69344:749;69178:915;;;;:::o;57920:319::-;58049:18;58055:2;58059:7;58049:5;:18::i;:::-;58100:53;58131:1;58135:2;58139:7;58148:4;58100:22;:53::i;:::-;58078:153;;;;-1:-1:-1;;;58078:153:0;;;;;;;:::i;63778:853::-;63932:4;-1:-1:-1;;;;;63953:13:0;;31516:19;:23;63949:675;;63989:71;;-1:-1:-1;;;63989:71:0;;-1:-1:-1;;;;;63989:36:0;;;;;:71;;24499:10;;64040:4;;64046:7;;64055:4;;63989:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63989:71:0;;;;;;;;-1:-1:-1;;63989:71:0;;;;;;;;;;;;:::i;:::-;;;63985:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64230:13:0;;64226:328;;64273:60;;-1:-1:-1;;;64273:60:0;;;;;;;:::i;64226:328::-;64504:6;64498:13;64489:6;64485:2;64481:15;64474:38;63985:584;-1:-1:-1;;;;;;64111:51:0;-1:-1:-1;;;64111:51:0;;-1:-1:-1;64104:58:0;;63949:675;-1:-1:-1;64608:4:0;63778:853;;;;;;:::o;18712:922::-;18765:7;;-1:-1:-1;;;18843:15:0;;18839:102;;-1:-1:-1;;;18879:15:0;;;-1:-1:-1;18923:2:0;18913:12;18839:102;18968:6;18959:5;:15;18955:102;;19004:6;18995:15;;;-1:-1:-1;19039:2:0;19029:12;18955:102;19084:6;19075:5;:15;19071:102;;19120:6;19111:15;;;-1:-1:-1;19155:2:0;19145:12;19071:102;19200:5;19191;:14;19187:99;;19235:5;19226:14;;;-1:-1:-1;19269:1:0;19259:11;19187:99;19313:5;19304;:14;19300:99;;19348:5;19339:14;;;-1:-1:-1;19382:1:0;19372:11;19300:99;19426:5;19417;:14;19413:99;;19461:5;19452:14;;;-1:-1:-1;19495:1:0;19485:11;19413:99;19539:5;19530;:14;19526:66;;19575:1;19565:11;19620:6;18712:922;-1:-1:-1;;18712:922:0:o;71607:988::-;71873:22;71923:1;71898:22;71915:4;71898:16;:22::i;:::-;:26;;;;:::i;:::-;71935:18;71956:26;;;:17;:26;;;;;;71873:51;;-1:-1:-1;72089:28:0;;;72085:328;;-1:-1:-1;;;;;72156:18:0;;72134:19;72156:18;;;:12;:18;;;;;;;;:34;;;;;;;;;72207:30;;;;;;:44;;;72324:30;;:17;:30;;;;;:43;;;72085:328;-1:-1:-1;72509:26:0;;;;:17;:26;;;;;;;;72502:33;;;-1:-1:-1;;;;;72553:18:0;;;;;:12;:18;;;;;:34;;;;;;;72546:41;71607:988::o;72890:1079::-;73168:10;:17;73143:22;;73168:21;;73188:1;;73168:21;:::i;:::-;73200:18;73221:24;;;:15;:24;;;;;;73594:10;:26;;73143:46;;-1:-1:-1;73221:24:0;;73143:46;;73594:26;;;;;;:::i;:::-;;;;;;;;;73572:48;;73658:11;73633:10;73644;73633:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;73738:28;;;:15;:28;;;;;;;:41;;;73910:24;;;;;73903:31;73945:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;72961:1008;;;72890:1079;:::o;70394:221::-;70479:14;70496:20;70513:2;70496:16;:20::i;:::-;-1:-1:-1;;;;;70527:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;70572:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;70394:221:0:o;58575:942::-;-1:-1:-1;;;;;58655:16:0;;58647:61;;;;-1:-1:-1;;;58647:61:0;;16618:2:1;58647:61:0;;;16600:21:1;;;16637:18;;;16630:30;16696:34;16676:18;;;16669:62;16748:18;;58647:61:0;16416:356:1;58647:61:0;56747:4;56345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;56345:16:0;56771:31;58719:58;;;;-1:-1:-1;;;58719:58:0;;16979:2:1;58719:58:0;;;16961:21:1;17018:2;16998:18;;;16991:30;17057;17037:18;;;17030:58;17105:18;;58719:58:0;16777:352:1;58719:58:0;58790:48;58819:1;58823:2;58827:7;58836:1;58790:20;:48::i;:::-;56747:4;56345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;56345:16:0;56771:31;58928:58;;;;-1:-1:-1;;;58928:58:0;;16979:2:1;58928:58:0;;;16961:21:1;17018:2;16998:18;;;16991:30;17057;17037:18;;;17030:58;17105:18;;58928:58:0;16777:352:1;58928:58:0;-1:-1:-1;;;;;59335:13:0;;;;;;:9;:13;;;;;;;;:18;;59352:1;59335:18;;;59377:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;59377:21:0;;;;;59416:33;59385:7;;59335:13;;59416:33;;59335:13;;59416:33;76685:21:::1;76614:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:380::-;6366:1;6362:12;;;;6409;;;6430:61;;6484:4;6476:6;6472:17;6462:27;;6430:61;6537:2;6529:6;6526:14;6506:18;6503:38;6500:161;;;6583:10;6578:3;6574:20;6571:1;6564:31;6618:4;6615:1;6608:15;6646:4;6643:1;6636:15;6500:161;;6287:380;;;:::o;7504:409::-;7706:2;7688:21;;;7745:2;7725:18;;;7718:30;7784:34;7779:2;7764:18;;7757:62;-1:-1:-1;;;7850:2:1;7835:18;;7828:43;7903:3;7888:19;;7504:409::o;8540:127::-;8601:10;8596:3;8592:20;8589:1;8582:31;8632:4;8629:1;8622:15;8656:4;8653:1;8646:15;8672:127;8733:10;8728:3;8724:20;8721:1;8714:31;8764:4;8761:1;8754:15;8788:4;8785:1;8778:15;8804:135;8843:3;-1:-1:-1;;8864:17:1;;8861:43;;;8884:18;;:::i;:::-;-1:-1:-1;8931:1:1;8920:13;;8804:135::o;10120:128::-;10160:3;10191:1;10187:6;10184:1;10181:13;10178:39;;;10197:18;;:::i;:::-;-1:-1:-1;10233:9:1;;10120:128::o;10253:168::-;10293:7;10359:1;10355;10351:6;10347:14;10344:1;10341:21;10336:1;10329:9;10322:17;10318:45;10315:71;;;10366:18;;:::i;:::-;-1:-1:-1;10406:9:1;;10253:168::o;10968:1527::-;11192:3;11230:6;11224:13;11256:4;11269:51;11313:6;11308:3;11303:2;11295:6;11291:15;11269:51;:::i;:::-;11383:13;;11342:16;;;;11405:55;11383:13;11342:16;11427:15;;;11405:55;:::i;:::-;11549:13;;11482:20;;;11522:1;;11609;11631:18;;;;11684;;;;11711:93;;11789:4;11779:8;11775:19;11763:31;;11711:93;11852:2;11842:8;11839:16;11819:18;11816:40;11813:167;;;-1:-1:-1;;;11879:33:1;;11935:4;11932:1;11925:15;11965:4;11886:3;11953:17;11813:167;11996:18;12023:110;;;;12147:1;12142:328;;;;11989:481;;12023:110;-1:-1:-1;;12058:24:1;;12044:39;;12103:20;;;;-1:-1:-1;12023:110:1;;12142:328;10915:1;10908:14;;;10952:4;10939:18;;12237:1;12251:169;12265:8;12262:1;12259:15;12251:169;;;12347:14;;12332:13;;;12325:37;12390:16;;;;12282:10;;12251:169;;;12255:3;;12451:8;12444:5;12440:20;12433:27;;11989:481;-1:-1:-1;12486:3:1;;10968:1527;-1:-1:-1;;;;;;;;;;;10968:1527:1:o;13268:401::-;13470:2;13452:21;;;13509:2;13489:18;;;13482:30;13548:34;13543:2;13528:18;;13521:62;-1:-1:-1;;;13614:2:1;13599:18;;13592:35;13659:3;13644:19;;13268:401::o;14433:414::-;14635:2;14617:21;;;14674:2;14654:18;;;14647:30;14713:34;14708:2;14693:18;;14686:62;-1:-1:-1;;;14779:2:1;14764:18;;14757:48;14837:3;14822:19;;14433:414::o;15406:489::-;-1:-1:-1;;;;;15675:15:1;;;15657:34;;15727:15;;15722:2;15707:18;;15700:43;15774:2;15759:18;;15752:34;;;15822:3;15817:2;15802:18;;15795:31;;;15600:4;;15843:46;;15869:19;;15861:6;15843:46;:::i;:::-;15835:54;15406:489;-1:-1:-1;;;;;;15406:489:1:o;15900:249::-;15969:6;16022:2;16010:9;16001:7;15997:23;15993:32;15990:52;;;16038:1;16035;16028:12;15990:52;16070:9;16064:16;16089:30;16113:5;16089:30;:::i;16154:125::-;16194:4;16222:1;16219;16216:8;16213:34;;;16227:18;;:::i;:::-;-1:-1:-1;16264:9:1;;16154:125::o;16284:127::-;16345:10;16340:3;16336:20;16333:1;16326:31;16376:4;16373:1;16366:15;16400:4;16397:1;16390:15
Swarm Source
ipfs://a2cf33eabb37627737a8b02f082a86ad95455fc8b9b8cdaec788480d2fe5b216