ERC-721
Overview
Max Total Supply
999 VCB
Holders
151
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 VCBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ViseCityBoys
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-07 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.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) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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 256, 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 << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string( abi.encodePacked( value < 0 ? "-" : "", toString(SignedMath.abs(value)) ) ); } /** * @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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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`, * 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 be 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer( uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to ); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ""; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or( owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags) ) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); ( uint256 approvedAddressSlot, address approvedAddress ) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if ( !_isSenderApprovedOrOwner( approvedAddress, from, _msgSenderERC721A() ) ) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received( _msgSenderERC721A(), from, tokenId, _data ) returns (bytes4 retval) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer( startTokenId, startTokenId + quantity - 1, address(0), to ); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if ( !_checkContractOnERC721Received( address(0), to, index++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); ( uint256 approvedAddressSlot, address approvedAddress ) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if ( !_isSenderApprovedOrOwner( approvedAddress, from, _msgSenderERC721A() ) ) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } pragma solidity ^0.8.9; contract ViseCityBoys is ERC721A, Ownable { uint256 public cost = 0.002 ether; uint256 public maxSupply = 999; uint256 public maxPerTx = 5; bool public sale; error SaleNotActive(); error MaxSupplyReached(); error MaxPerTxReached(); error NotEnoughETH(); constructor(string memory __baseURI) payable ERC721A("Vise City Boys", "VCB") { baseURI = __baseURI; } function mint(uint256 _amount) external payable { if (!sale) revert SaleNotActive(); if (_totalMinted() + _amount >= maxSupply) revert MaxSupplyReached(); if (_amount >= maxPerTx) revert MaxPerTxReached(); if (msg.value < cost * _amount) revert NotEnoughETH(); _mint(msg.sender, _amount); } function mintTo(uint256 _amount, address _to) external onlyOwner { if (_totalMinted() + _amount > maxSupply) revert MaxSupplyReached(); _mint(_to, _amount); } //METADATA string public baseURI; string private uriSuffix = ".json"; function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix)); } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string calldata _newURI) external onlyOwner { baseURI = _newURI; } function setCost(uint256 _cost) external onlyOwner { cost = _cost; } function setMaxPerTx(uint256 _maxPerTx) external onlyOwner { maxPerTx = _maxPerTx; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { if (_maxSupply >= maxSupply) revert MaxSupplyReached(); maxSupply = _maxSupply; } function toggleSale() external onlyOwner { sale = !sale; } //WITHDRAW function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotEnoughETH","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":"maxPerTx","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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266071afd498d00006009556103e7600a556005600b556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90816200006091906200049c565b5060405162003036380380620030368339818101604052810190620000869190620006d8565b6040518060400160405280600e81526020017f56697365204369747920426f79730000000000000000000000000000000000008152506040518060400160405280600381526020017f564342000000000000000000000000000000000000000000000000000000000081525081600290816200010391906200049c565b5080600390816200011591906200049c565b50620001266200016660201b60201c565b5f8190555050506200014d620001416200016e60201b60201c565b6200017560201b60201c565b80600d90816200015e91906200049c565b505062000727565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b457607f821691505b602082108103620002ca57620002c96200026f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200032e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002f1565b6200033a8683620002f1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003846200037e620003788462000352565b6200035b565b62000352565b9050919050565b5f819050919050565b6200039f8362000364565b620003b7620003ae826200038b565b848454620002fd565b825550505050565b5f90565b620003cd620003bf565b620003da81848462000394565b505050565b5b818110156200040157620003f55f82620003c3565b600181019050620003e0565b5050565b601f82111562000450576200041a81620002d0565b6200042584620002e2565b8101602085101562000435578190505b6200044d6200044485620002e2565b830182620003df565b50505b505050565b5f82821c905092915050565b5f620004725f198460080262000455565b1980831691505092915050565b5f6200048c838362000461565b9150826002028217905092915050565b620004a78262000238565b67ffffffffffffffff811115620004c357620004c262000242565b5b620004cf82546200029c565b620004dc82828562000405565b5f60209050601f83116001811462000512575f8415620004fd578287015190505b6200050985826200047f565b86555062000578565b601f1984166200052286620002d0565b5f5b828110156200054b5784890151825560018201915060208501945060208101905062000524565b868310156200056b578489015162000567601f89168262000461565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b620005b48262000599565b810181811067ffffffffffffffff82111715620005d657620005d562000242565b5b80604052505050565b5f620005ea62000580565b9050620005f88282620005a9565b919050565b5f67ffffffffffffffff8211156200061a576200061962000242565b5b620006258262000599565b9050602081019050919050565b5f5b838110156200065157808201518184015260208101905062000634565b5f8484015250505050565b5f620006726200066c84620005fd565b620005df565b90508281526020810184848401111562000691576200069062000595565b5b6200069e84828562000632565b509392505050565b5f82601f830112620006bd57620006bc62000591565b5b8151620006cf8482602086016200065c565b91505092915050565b5f60208284031215620006f057620006ef62000589565b5b5f82015167ffffffffffffffff81111562000710576200070f6200058d565b5b6200071e84828501620006a6565b91505092915050565b61290180620007355f395ff3fe6080604052600436106101cc575f3560e01c806370a08231116100f6578063b723b34e11610094578063d5abeb0111610063578063d5abeb01146105e0578063e985e9c51461060a578063f2fde38b14610646578063f968adbe1461066e576101cc565b8063b723b34e14610538578063b88d4fde14610560578063c6f6f2161461057c578063c87b56dd146105a4576101cc565b80638da5cb5b116100d05780638da5cb5b146104a057806395d89b41146104ca578063a0712d68146104f4578063a22cb46514610510576101cc565b806370a0823114610438578063715018a6146104745780637d8966e41461048a576101cc565b80633ccfd60b1161016e5780636352211e1161013d5780636352211e146103805780636ad1fe02146103bc5780636c0360eb146103e65780636f8b44b014610410576101cc565b80633ccfd60b146102fe57806342842e0e1461031457806344a0d68a1461033057806355f804b314610358576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806313faede61461028e57806318160ddd146102b857806323b872dd146102e2576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611bf4565b610698565b6040516102039190611c39565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611cdc565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611d2f565b6107b9565b6040516102699190611d99565b60405180910390f35b61028c60048036038101906102879190611ddc565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611e29565b60405180910390f35b3480156102c3575f80fd5b506102cc610978565b6040516102d99190611e29565b60405180910390f35b6102fc60048036038101906102f79190611e42565b61098d565b005b348015610309575f80fd5b50610312610c9b565b005b61032e60048036038101906103299190611e42565b610d4e565b005b34801561033b575f80fd5b5061035660048036038101906103519190611d2f565b610d6d565b005b348015610363575f80fd5b5061037e60048036038101906103799190611ef3565b610d7f565b005b34801561038b575f80fd5b506103a660048036038101906103a19190611d2f565b610d9d565b6040516103b39190611d99565b60405180910390f35b3480156103c7575f80fd5b506103d0610dae565b6040516103dd9190611c39565b60405180910390f35b3480156103f1575f80fd5b506103fa610dc0565b6040516104079190611cdc565b60405180910390f35b34801561041b575f80fd5b5061043660048036038101906104319190611d2f565b610e4c565b005b348015610443575f80fd5b5061045e60048036038101906104599190611f3e565b610e99565b60405161046b9190611e29565b60405180910390f35b34801561047f575f80fd5b50610488610f4e565b005b348015610495575f80fd5b5061049e610f61565b005b3480156104ab575f80fd5b506104b4610f93565b6040516104c19190611d99565b60405180910390f35b3480156104d5575f80fd5b506104de610fbb565b6040516104eb9190611cdc565b60405180910390f35b61050e60048036038101906105099190611d2f565b61104b565b005b34801561051b575f80fd5b5061053660048036038101906105319190611f93565b61116c565b005b348015610543575f80fd5b5061055e60048036038101906105599190611fd1565b611272565b005b61057a60048036038101906105759190612137565b6112d6565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611d2f565b611348565b005b3480156105af575f80fd5b506105ca60048036038101906105c59190611d2f565b61135a565b6040516105d79190611cdc565b60405180910390f35b3480156105eb575f80fd5b506105f46113d0565b6040516106019190611e29565b60405180910390f35b348015610615575f80fd5b50610630600480360381019061062b91906121b7565b6113d6565b60405161063d9190611c39565b60405180910390f35b348015610651575f80fd5b5061066c60048036038101906106679190611f3e565b611464565b005b348015610679575f80fd5b506106826114e6565b60405161068f9190611e29565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073890612222565b80601f016020809104026020016040519081016040528092919081815260200182805461076490612222565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c3826114ec565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d9d565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e611546565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a81610885611546565b6113d6565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b5f61098161154d565b6001545f540303905090565b5f61099782611555565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109fe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a0984611618565b91509150610a1f8187610a1a611546565b61163b565b610a6b57610a3486610a2f611546565b6113d6565b610a6a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610add868686600161167e565b8015610ae7575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610baf85610b8b888887611684565b7c0200000000000000000000000000000000000000000000000000000000176116ab565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c2b575f6001850190505f60045f8381526020019081526020015f205403610c29575f548114610c28578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c9386868660016116d5565b505050505050565b610ca36116db565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc89061227f565b5f6040518083038185875af1925050503d805f8114610d02576040519150601f19603f3d011682016040523d82523d5f602084013e610d07565b606091505b5050905080610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906122dd565b60405180910390fd5b50565b610d6883838360405180602001604052805f8152506112d6565b505050565b610d756116db565b8060098190555050565b610d876116db565b8181600d9182610d989291906124a2565b505050565b5f610da782611555565b9050919050565b600c5f9054906101000a900460ff1681565b600d8054610dcd90612222565b80601f0160208091040260200160405190810160405280929190818152602001828054610df990612222565b8015610e445780601f10610e1b57610100808354040283529160200191610e44565b820191905f5260205f20905b815481529060010190602001808311610e2757829003601f168201915b505050505081565b610e546116db565b600a548110610e8f576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f566116db565b610f5f5f611759565b565b610f696116db565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fca90612222565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff690612222565b80156110415780601f1061101857610100808354040283529160200191611041565b820191905f5260205f20905b81548152906001019060200180831161102457829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff16611090576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161109c61181c565b6110a6919061259c565b106110dd576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548110611118576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060095461112691906125cf565b34101561115f576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611169338261182d565b50565b8060075f611178611546565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611221611546565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112669190611c39565b60405180910390a35050565b61127a6116db565b600a548261128661181c565b611290919061259c565b11156112c8576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112d2818361182d565b5050565b6112e184848461098d565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113425761130b848484846119d6565b611341576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113506116db565b80600b8190555050565b6060611365826114ec565b61139b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d6113a683611b21565b600e6040516020016113ba939291906126ca565b6040516020818303038152906040529050919050565b600a5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61146c6116db565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d19061276a565b60405180910390fd5b6114e381611759565b50565b600b5481565b5f816114f661154d565b1115801561150457505f5482105b801561153f57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061156361154d565b116115e1575f548110156115e0575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036115de575b5f81036115d45760045f836001900393508381526020019081526020015f205490506115ad565b8092505050611613565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861169a868684611b70565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6116e3611b78565b73ffffffffffffffffffffffffffffffffffffffff16611701610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e906127d2565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61182561154d565b5f5403905090565b5f805490505f820361186b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118775f84838561167e565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506118e9836118da5f865f611684565b6118e385611b7f565b176116ab565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146119835780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061194a565b505f82036119bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506119d15f8483856116d5565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119fb611546565b8786866040518563ffffffff1660e01b8152600401611a1d9493929190612842565b6020604051808303815f875af1925050508015611a5857506040513d601f19601f82011682018060405250810190611a5591906128a0565b60015b611ace573d805f8114611a86576040519150601f19603f3d011682016040523d82523d5f602084013e611a8b565b606091505b505f815103611ac6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611b5b57600184039350600a81066030018453600a8104905080611b39575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611bd381611b9f565b8114611bdd575f80fd5b50565b5f81359050611bee81611bca565b92915050565b5f60208284031215611c0957611c08611b97565b5b5f611c1684828501611be0565b91505092915050565b5f8115159050919050565b611c3381611c1f565b82525050565b5f602082019050611c4c5f830184611c2a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c89578082015181840152602081019050611c6e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611cae82611c52565b611cb88185611c5c565b9350611cc8818560208601611c6c565b611cd181611c94565b840191505092915050565b5f6020820190508181035f830152611cf48184611ca4565b905092915050565b5f819050919050565b611d0e81611cfc565b8114611d18575f80fd5b50565b5f81359050611d2981611d05565b92915050565b5f60208284031215611d4457611d43611b97565b5b5f611d5184828501611d1b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d8382611d5a565b9050919050565b611d9381611d79565b82525050565b5f602082019050611dac5f830184611d8a565b92915050565b611dbb81611d79565b8114611dc5575f80fd5b50565b5f81359050611dd681611db2565b92915050565b5f8060408385031215611df257611df1611b97565b5b5f611dff85828601611dc8565b9250506020611e1085828601611d1b565b9150509250929050565b611e2381611cfc565b82525050565b5f602082019050611e3c5f830184611e1a565b92915050565b5f805f60608486031215611e5957611e58611b97565b5b5f611e6686828701611dc8565b9350506020611e7786828701611dc8565b9250506040611e8886828701611d1b565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611eb357611eb2611e92565b5b8235905067ffffffffffffffff811115611ed057611ecf611e96565b5b602083019150836001820283011115611eec57611eeb611e9a565b5b9250929050565b5f8060208385031215611f0957611f08611b97565b5b5f83013567ffffffffffffffff811115611f2657611f25611b9b565b5b611f3285828601611e9e565b92509250509250929050565b5f60208284031215611f5357611f52611b97565b5b5f611f6084828501611dc8565b91505092915050565b611f7281611c1f565b8114611f7c575f80fd5b50565b5f81359050611f8d81611f69565b92915050565b5f8060408385031215611fa957611fa8611b97565b5b5f611fb685828601611dc8565b9250506020611fc785828601611f7f565b9150509250929050565b5f8060408385031215611fe757611fe6611b97565b5b5f611ff485828601611d1b565b925050602061200585828601611dc8565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61204982611c94565b810181811067ffffffffffffffff8211171561206857612067612013565b5b80604052505050565b5f61207a611b8e565b90506120868282612040565b919050565b5f67ffffffffffffffff8211156120a5576120a4612013565b5b6120ae82611c94565b9050602081019050919050565b828183375f83830152505050565b5f6120db6120d68461208b565b612071565b9050828152602081018484840111156120f7576120f661200f565b5b6121028482856120bb565b509392505050565b5f82601f83011261211e5761211d611e92565b5b813561212e8482602086016120c9565b91505092915050565b5f805f806080858703121561214f5761214e611b97565b5b5f61215c87828801611dc8565b945050602061216d87828801611dc8565b935050604061217e87828801611d1b565b925050606085013567ffffffffffffffff81111561219f5761219e611b9b565b5b6121ab8782880161210a565b91505092959194509250565b5f80604083850312156121cd576121cc611b97565b5b5f6121da85828601611dc8565b92505060206121eb85828601611dc8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061223957607f821691505b60208210810361224c5761224b6121f5565b5b50919050565b5f81905092915050565b50565b5f61226a5f83612252565b91506122758261225c565b5f82019050919050565b5f6122898261225f565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6122c7601083611c5c565b91506122d282612293565b602082019050919050565b5f6020820190508181035f8301526122f4816122bb565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026123617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612326565b61236b8683612326565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6123a66123a161239c84611cfc565b612383565b611cfc565b9050919050565b5f819050919050565b6123bf8361238c565b6123d36123cb826123ad565b848454612332565b825550505050565b5f90565b6123e76123db565b6123f28184846123b6565b505050565b5b818110156124155761240a5f826123df565b6001810190506123f8565b5050565b601f82111561245a5761242b81612305565b61243484612317565b81016020851015612443578190505b61245761244f85612317565b8301826123f7565b50505b505050565b5f82821c905092915050565b5f61247a5f198460080261245f565b1980831691505092915050565b5f612492838361246b565b9150826002028217905092915050565b6124ac83836122fb565b67ffffffffffffffff8111156124c5576124c4612013565b5b6124cf8254612222565b6124da828285612419565b5f601f831160018114612507575f84156124f5578287013590505b6124ff8582612487565b865550612566565b601f19841661251586612305565b5f5b8281101561253c57848901358255600182019150602085019450602081019050612517565b868310156125595784890135612555601f89168261246b565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6125a682611cfc565b91506125b183611cfc565b92508282019050808211156125c9576125c861256f565b5b92915050565b5f6125d982611cfc565b91506125e483611cfc565b92508282026125f281611cfc565b915082820484148315176126095761260861256f565b5b5092915050565b5f81905092915050565b5f815461262681612222565b6126308186612610565b9450600182165f811461264a576001811461265f57612691565b60ff1983168652811515820286019350612691565b61266885612305565b5f5b838110156126895781548189015260018201915060208101905061266a565b838801955050505b50505092915050565b5f6126a482611c52565b6126ae8185612610565b93506126be818560208601611c6c565b80840191505092915050565b5f6126d5828661261a565b91506126e1828561269a565b91506126ed828461261a565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612754602683611c5c565b915061275f826126fa565b604082019050919050565b5f6020820190508181035f83015261278181612748565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6127bc602083611c5c565b91506127c782612788565b602082019050919050565b5f6020820190508181035f8301526127e9816127b0565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612814826127f0565b61281e81856127fa565b935061282e818560208601611c6c565b61283781611c94565b840191505092915050565b5f6080820190506128555f830187611d8a565b6128626020830186611d8a565b61286f6040830185611e1a565b8181036060830152612881818461280a565b905095945050505050565b5f8151905061289a81611bca565b92915050565b5f602082840312156128b5576128b4611b97565b5b5f6128c28482850161288c565b9150509291505056fea264697066735822122068f1be0f972be5fad72ea12269a5668561d8311f91676e278ef7e6715e8bff9664736f6c6343000816003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d553164767569506e444638596a6e447871364769674548636837364b4d4a3959337579544d4446345966446b2f00000000000000000000
Deployed Bytecode
0x6080604052600436106101cc575f3560e01c806370a08231116100f6578063b723b34e11610094578063d5abeb0111610063578063d5abeb01146105e0578063e985e9c51461060a578063f2fde38b14610646578063f968adbe1461066e576101cc565b8063b723b34e14610538578063b88d4fde14610560578063c6f6f2161461057c578063c87b56dd146105a4576101cc565b80638da5cb5b116100d05780638da5cb5b146104a057806395d89b41146104ca578063a0712d68146104f4578063a22cb46514610510576101cc565b806370a0823114610438578063715018a6146104745780637d8966e41461048a576101cc565b80633ccfd60b1161016e5780636352211e1161013d5780636352211e146103805780636ad1fe02146103bc5780636c0360eb146103e65780636f8b44b014610410576101cc565b80633ccfd60b146102fe57806342842e0e1461031457806344a0d68a1461033057806355f804b314610358576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806313faede61461028e57806318160ddd146102b857806323b872dd146102e2576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611bf4565b610698565b6040516102039190611c39565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611cdc565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611d2f565b6107b9565b6040516102699190611d99565b60405180910390f35b61028c60048036038101906102879190611ddc565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611e29565b60405180910390f35b3480156102c3575f80fd5b506102cc610978565b6040516102d99190611e29565b60405180910390f35b6102fc60048036038101906102f79190611e42565b61098d565b005b348015610309575f80fd5b50610312610c9b565b005b61032e60048036038101906103299190611e42565b610d4e565b005b34801561033b575f80fd5b5061035660048036038101906103519190611d2f565b610d6d565b005b348015610363575f80fd5b5061037e60048036038101906103799190611ef3565b610d7f565b005b34801561038b575f80fd5b506103a660048036038101906103a19190611d2f565b610d9d565b6040516103b39190611d99565b60405180910390f35b3480156103c7575f80fd5b506103d0610dae565b6040516103dd9190611c39565b60405180910390f35b3480156103f1575f80fd5b506103fa610dc0565b6040516104079190611cdc565b60405180910390f35b34801561041b575f80fd5b5061043660048036038101906104319190611d2f565b610e4c565b005b348015610443575f80fd5b5061045e60048036038101906104599190611f3e565b610e99565b60405161046b9190611e29565b60405180910390f35b34801561047f575f80fd5b50610488610f4e565b005b348015610495575f80fd5b5061049e610f61565b005b3480156104ab575f80fd5b506104b4610f93565b6040516104c19190611d99565b60405180910390f35b3480156104d5575f80fd5b506104de610fbb565b6040516104eb9190611cdc565b60405180910390f35b61050e60048036038101906105099190611d2f565b61104b565b005b34801561051b575f80fd5b5061053660048036038101906105319190611f93565b61116c565b005b348015610543575f80fd5b5061055e60048036038101906105599190611fd1565b611272565b005b61057a60048036038101906105759190612137565b6112d6565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611d2f565b611348565b005b3480156105af575f80fd5b506105ca60048036038101906105c59190611d2f565b61135a565b6040516105d79190611cdc565b60405180910390f35b3480156105eb575f80fd5b506105f46113d0565b6040516106019190611e29565b60405180910390f35b348015610615575f80fd5b50610630600480360381019061062b91906121b7565b6113d6565b60405161063d9190611c39565b60405180910390f35b348015610651575f80fd5b5061066c60048036038101906106679190611f3e565b611464565b005b348015610679575f80fd5b506106826114e6565b60405161068f9190611e29565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073890612222565b80601f016020809104026020016040519081016040528092919081815260200182805461076490612222565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c3826114ec565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d9d565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e611546565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a81610885611546565b6113d6565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b5f61098161154d565b6001545f540303905090565b5f61099782611555565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109fe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a0984611618565b91509150610a1f8187610a1a611546565b61163b565b610a6b57610a3486610a2f611546565b6113d6565b610a6a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610add868686600161167e565b8015610ae7575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610baf85610b8b888887611684565b7c0200000000000000000000000000000000000000000000000000000000176116ab565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c2b575f6001850190505f60045f8381526020019081526020015f205403610c29575f548114610c28578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c9386868660016116d5565b505050505050565b610ca36116db565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc89061227f565b5f6040518083038185875af1925050503d805f8114610d02576040519150601f19603f3d011682016040523d82523d5f602084013e610d07565b606091505b5050905080610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906122dd565b60405180910390fd5b50565b610d6883838360405180602001604052805f8152506112d6565b505050565b610d756116db565b8060098190555050565b610d876116db565b8181600d9182610d989291906124a2565b505050565b5f610da782611555565b9050919050565b600c5f9054906101000a900460ff1681565b600d8054610dcd90612222565b80601f0160208091040260200160405190810160405280929190818152602001828054610df990612222565b8015610e445780601f10610e1b57610100808354040283529160200191610e44565b820191905f5260205f20905b815481529060010190602001808311610e2757829003601f168201915b505050505081565b610e546116db565b600a548110610e8f576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f566116db565b610f5f5f611759565b565b610f696116db565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fca90612222565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff690612222565b80156110415780601f1061101857610100808354040283529160200191611041565b820191905f5260205f20905b81548152906001019060200180831161102457829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff16611090576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161109c61181c565b6110a6919061259c565b106110dd576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548110611118576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060095461112691906125cf565b34101561115f576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611169338261182d565b50565b8060075f611178611546565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611221611546565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112669190611c39565b60405180910390a35050565b61127a6116db565b600a548261128661181c565b611290919061259c565b11156112c8576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112d2818361182d565b5050565b6112e184848461098d565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113425761130b848484846119d6565b611341576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113506116db565b80600b8190555050565b6060611365826114ec565b61139b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d6113a683611b21565b600e6040516020016113ba939291906126ca565b6040516020818303038152906040529050919050565b600a5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61146c6116db565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d19061276a565b60405180910390fd5b6114e381611759565b50565b600b5481565b5f816114f661154d565b1115801561150457505f5482105b801561153f57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061156361154d565b116115e1575f548110156115e0575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036115de575b5f81036115d45760045f836001900393508381526020019081526020015f205490506115ad565b8092505050611613565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861169a868684611b70565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6116e3611b78565b73ffffffffffffffffffffffffffffffffffffffff16611701610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e906127d2565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61182561154d565b5f5403905090565b5f805490505f820361186b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118775f84838561167e565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506118e9836118da5f865f611684565b6118e385611b7f565b176116ab565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146119835780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061194a565b505f82036119bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506119d15f8483856116d5565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119fb611546565b8786866040518563ffffffff1660e01b8152600401611a1d9493929190612842565b6020604051808303815f875af1925050508015611a5857506040513d601f19601f82011682018060405250810190611a5591906128a0565b60015b611ace573d805f8114611a86576040519150601f19603f3d011682016040523d82523d5f602084013e611a8b565b606091505b505f815103611ac6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611b5b57600184039350600a81066030018453600a8104905080611b39575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611bd381611b9f565b8114611bdd575f80fd5b50565b5f81359050611bee81611bca565b92915050565b5f60208284031215611c0957611c08611b97565b5b5f611c1684828501611be0565b91505092915050565b5f8115159050919050565b611c3381611c1f565b82525050565b5f602082019050611c4c5f830184611c2a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c89578082015181840152602081019050611c6e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611cae82611c52565b611cb88185611c5c565b9350611cc8818560208601611c6c565b611cd181611c94565b840191505092915050565b5f6020820190508181035f830152611cf48184611ca4565b905092915050565b5f819050919050565b611d0e81611cfc565b8114611d18575f80fd5b50565b5f81359050611d2981611d05565b92915050565b5f60208284031215611d4457611d43611b97565b5b5f611d5184828501611d1b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d8382611d5a565b9050919050565b611d9381611d79565b82525050565b5f602082019050611dac5f830184611d8a565b92915050565b611dbb81611d79565b8114611dc5575f80fd5b50565b5f81359050611dd681611db2565b92915050565b5f8060408385031215611df257611df1611b97565b5b5f611dff85828601611dc8565b9250506020611e1085828601611d1b565b9150509250929050565b611e2381611cfc565b82525050565b5f602082019050611e3c5f830184611e1a565b92915050565b5f805f60608486031215611e5957611e58611b97565b5b5f611e6686828701611dc8565b9350506020611e7786828701611dc8565b9250506040611e8886828701611d1b565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611eb357611eb2611e92565b5b8235905067ffffffffffffffff811115611ed057611ecf611e96565b5b602083019150836001820283011115611eec57611eeb611e9a565b5b9250929050565b5f8060208385031215611f0957611f08611b97565b5b5f83013567ffffffffffffffff811115611f2657611f25611b9b565b5b611f3285828601611e9e565b92509250509250929050565b5f60208284031215611f5357611f52611b97565b5b5f611f6084828501611dc8565b91505092915050565b611f7281611c1f565b8114611f7c575f80fd5b50565b5f81359050611f8d81611f69565b92915050565b5f8060408385031215611fa957611fa8611b97565b5b5f611fb685828601611dc8565b9250506020611fc785828601611f7f565b9150509250929050565b5f8060408385031215611fe757611fe6611b97565b5b5f611ff485828601611d1b565b925050602061200585828601611dc8565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61204982611c94565b810181811067ffffffffffffffff8211171561206857612067612013565b5b80604052505050565b5f61207a611b8e565b90506120868282612040565b919050565b5f67ffffffffffffffff8211156120a5576120a4612013565b5b6120ae82611c94565b9050602081019050919050565b828183375f83830152505050565b5f6120db6120d68461208b565b612071565b9050828152602081018484840111156120f7576120f661200f565b5b6121028482856120bb565b509392505050565b5f82601f83011261211e5761211d611e92565b5b813561212e8482602086016120c9565b91505092915050565b5f805f806080858703121561214f5761214e611b97565b5b5f61215c87828801611dc8565b945050602061216d87828801611dc8565b935050604061217e87828801611d1b565b925050606085013567ffffffffffffffff81111561219f5761219e611b9b565b5b6121ab8782880161210a565b91505092959194509250565b5f80604083850312156121cd576121cc611b97565b5b5f6121da85828601611dc8565b92505060206121eb85828601611dc8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061223957607f821691505b60208210810361224c5761224b6121f5565b5b50919050565b5f81905092915050565b50565b5f61226a5f83612252565b91506122758261225c565b5f82019050919050565b5f6122898261225f565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6122c7601083611c5c565b91506122d282612293565b602082019050919050565b5f6020820190508181035f8301526122f4816122bb565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026123617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612326565b61236b8683612326565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6123a66123a161239c84611cfc565b612383565b611cfc565b9050919050565b5f819050919050565b6123bf8361238c565b6123d36123cb826123ad565b848454612332565b825550505050565b5f90565b6123e76123db565b6123f28184846123b6565b505050565b5b818110156124155761240a5f826123df565b6001810190506123f8565b5050565b601f82111561245a5761242b81612305565b61243484612317565b81016020851015612443578190505b61245761244f85612317565b8301826123f7565b50505b505050565b5f82821c905092915050565b5f61247a5f198460080261245f565b1980831691505092915050565b5f612492838361246b565b9150826002028217905092915050565b6124ac83836122fb565b67ffffffffffffffff8111156124c5576124c4612013565b5b6124cf8254612222565b6124da828285612419565b5f601f831160018114612507575f84156124f5578287013590505b6124ff8582612487565b865550612566565b601f19841661251586612305565b5f5b8281101561253c57848901358255600182019150602085019450602081019050612517565b868310156125595784890135612555601f89168261246b565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6125a682611cfc565b91506125b183611cfc565b92508282019050808211156125c9576125c861256f565b5b92915050565b5f6125d982611cfc565b91506125e483611cfc565b92508282026125f281611cfc565b915082820484148315176126095761260861256f565b5b5092915050565b5f81905092915050565b5f815461262681612222565b6126308186612610565b9450600182165f811461264a576001811461265f57612691565b60ff1983168652811515820286019350612691565b61266885612305565b5f5b838110156126895781548189015260018201915060208101905061266a565b838801955050505b50505092915050565b5f6126a482611c52565b6126ae8185612610565b93506126be818560208601611c6c565b80840191505092915050565b5f6126d5828661261a565b91506126e1828561269a565b91506126ed828461261a565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612754602683611c5c565b915061275f826126fa565b604082019050919050565b5f6020820190508181035f83015261278181612748565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6127bc602083611c5c565b91506127c782612788565b602082019050919050565b5f6020820190508181035f8301526127e9816127b0565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612814826127f0565b61281e81856127fa565b935061282e818560208601611c6c565b61283781611c94565b840191505092915050565b5f6080820190506128555f830187611d8a565b6128626020830186611d8a565b61286f6040830185611e1a565b8181036060830152612881818461280a565b905095945050505050565b5f8151905061289a81611bca565b92915050565b5f602082840312156128b5576128b4611b97565b5b5f6128c28482850161288c565b9150509291505056fea264697066735822122068f1be0f972be5fad72ea12269a5668561d8311f91676e278ef7e6715e8bff9664736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d553164767569506e444638596a6e447871364769674548636837364b4d4a3959337579544d4446345966446b2f00000000000000000000
-----Decoded View---------------
Arg [0] : __baseURI (string): ipfs://QmU1dvuiPnDF8YjnDxq6GigEHch76KMJ9Y3uyTMDF4YfDk/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d553164767569506e444638596a6e447871364769674548
Arg [3] : 636837364b4d4a3959337579544d4446345966446b2f00000000000000000000
Deployed Bytecode Sourcemap
74834:2332:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40197:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41149:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48087:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47479:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74883:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36722:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51858:3003;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76990:173;;;;;;;;;;;;;:::i;:::-;;54957:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76523:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76415:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42639:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74994:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75821:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76719:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37906:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20618:103;;;;;;;;;;;;;:::i;:::-;;76894:72;;;;;;;;;;;;;:::i;:::-;;19977:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75266:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48695:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75616:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55748:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76613:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75892:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74923:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49118:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20876:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74960:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40197:689;40327:4;40671:10;40656:25;;:11;:25;;;;:102;;;;40748:10;40733:25;;:11;:25;;;;40656:102;:179;;;;40825:10;40810:25;;:11;:25;;;;40656:179;40636:199;;40197:689;;;:::o;41149:100::-;41203:13;41236:5;41229:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41149:100;:::o;48087:268::-;48208:7;48238:16;48246:7;48238;:16::i;:::-;48233:64;;48263:34;;;;;;;;;;;;;;48233:64;48317:15;:24;48333:7;48317:24;;;;;;;;;;;:30;;;;;;;;;;;;48310:37;;48087:268;;;:::o;47479:449::-;47609:13;47625:16;47633:7;47625;:16::i;:::-;47609:32;;47681:5;47658:28;;:19;:17;:19::i;:::-;:28;;;47654:175;;47706:44;47723:5;47730:19;:17;:19::i;:::-;47706:16;:44::i;:::-;47701:128;;47778:35;;;;;;;;;;;;;;47701:128;47654:175;47874:2;47841:15;:24;47857:7;47841:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47912:7;47908:2;47892:28;;47901:5;47892:28;;;;;;;;;;;;47598:330;47479:449;;:::o;74883:33::-;;;;:::o;36722:323::-;36783:7;37011:15;:13;:15::i;:::-;36996:12;;36980:13;;:28;:46;36973:53;;36722:323;:::o;51858:3003::-;52000:27;52030;52049:7;52030:18;:27::i;:::-;52000:57;;52115:4;52074:45;;52090:19;52074:45;;;52070:99;;52141:28;;;;;;;;;;;;;;52070:99;52197:27;52239:23;52276:35;52303:7;52276:26;:35::i;:::-;52182:129;;;;52425:134;52468:15;52502:4;52525:19;:17;:19::i;:::-;52425:24;:134::i;:::-;52406:287;;52589:43;52606:4;52612:19;:17;:19::i;:::-;52589:16;:43::i;:::-;52584:109;;52658:35;;;;;;;;;;;;;;52584:109;52406:287;52724:1;52710:16;;:2;:16;;;52706:52;;52735:23;;;;;;;;;;;;;;52706:52;52771:43;52793:4;52799:2;52803:7;52812:1;52771:21;:43::i;:::-;52907:15;52904:160;;;53047:1;53026:19;53019:30;52904:160;53444:18;:24;53463:4;53444:24;;;;;;;;;;;;;;;;53442:26;;;;;;;;;;;;53513:18;:22;53532:2;53513:22;;;;;;;;;;;;;;;;53511:24;;;;;;;;;;;53835:167;53872:2;53942:45;53957:4;53963:2;53967:19;53942:14;:45::i;:::-;33121:8;53893:94;53835:18;:167::i;:::-;53806:17;:26;53824:7;53806:26;;;;;;;;;;;:196;;;;54173:1;33121:8;54122:19;:47;:52;54118:627;;54195:19;54227:1;54217:7;:11;54195:33;;54384:1;54350:17;:30;54368:11;54350:30;;;;;;;;;;;;:35;54346:384;;54488:13;;54473:11;:28;54469:242;;54668:19;54635:17;:30;54653:11;54635:30;;;;;;;;;;;:52;;;;54469:242;54346:384;54176:569;54118:627;54792:7;54788:2;54773:27;;54782:4;54773:27;;;;;;;;;;;;54811:42;54832:4;54838:2;54842:7;54851:1;54811:20;:42::i;:::-;51989:2872;;;51858:3003;;;:::o;76990:173::-;19863:13;:11;:13::i;:::-;77041:12:::1;77059:10;:15;;77082:21;77059:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77040:68;;;77127:7;77119:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;77029:134;76990:173::o:0;54957:193::-;55103:39;55120:4;55126:2;55130:7;55103:39;;;;;;;;;;;;:16;:39::i;:::-;54957:193;;;:::o;76523:82::-;19863:13;:11;:13::i;:::-;76592:5:::1;76585:4;:12;;;;76523:82:::0;:::o;76415:100::-;19863:13;:11;:13::i;:::-;76500:7:::1;;76490;:17;;;;;;;:::i;:::-;;76415:100:::0;;:::o;42639:202::-;42756:7;42804:27;42823:7;42804:18;:27::i;:::-;42781:52;;42639:202;;;:::o;74994:16::-;;;;;;;;;;;;;:::o;75821:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76719:167::-;19863:13;:11;:13::i;:::-;76809:9:::1;;76795:10;:23;76791:54;;76827:18;;;;;;;;;;;;;;76791:54;76868:10;76856:9;:22;;;;76719:167:::0;:::o;37906:283::-;38023:7;38069:1;38052:19;;:5;:19;;;38048:60;;38080:28;;;;;;;;;;;;;;38048:60;32065:13;38126:18;:25;38145:5;38126:25;;;;;;;;;;;;;;;;:55;38119:62;;37906:283;;;:::o;20618:103::-;19863:13;:11;:13::i;:::-;20683:30:::1;20710:1;20683:18;:30::i;:::-;20618:103::o:0;76894:72::-;19863:13;:11;:13::i;:::-;76954:4:::1;;;;;;;;;;;76953:5;76946:4;;:12;;;;;;;;;;;;;;;;;;76894:72::o:0;19977:87::-;20023:7;20050:6;;;;;;;;;;;20043:13;;19977:87;:::o;41325:104::-;41381:13;41414:7;41407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41325:104;:::o;75266:342::-;75330:4;;;;;;;;;;;75325:33;;75343:15;;;;;;;;;;;;;;75325:33;75401:9;;75390:7;75373:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;75369:68;;75419:18;;;;;;;;;;;;;;75369:68;75463:8;;75452:7;:19;75448:49;;75480:17;;;;;;;;;;;;;;75448:49;75531:7;75524:4;;:14;;;;:::i;:::-;75512:9;:26;75508:53;;;75547:14;;;;;;;;;;;;;;75508:53;75574:26;75580:10;75592:7;75574:5;:26::i;:::-;75266:342;:::o;48695:266::-;48874:8;48822:18;:39;48841:19;:17;:19::i;:::-;48822:39;;;;;;;;;;;;;;;:49;48862:8;48822:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48934:8;48898:55;;48913:19;:17;:19::i;:::-;48898:55;;;48944:8;48898:55;;;;;;:::i;:::-;;;;;;;;48695:266;;:::o;75616:181::-;19863:13;:11;:13::i;:::-;75723:9:::1;;75713:7;75696:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:36;75692:67;;;75741:18;;;;;;;;;;;;;;75692:67;75770:19;75776:3;75781:7;75770:5;:19::i;:::-;75616:181:::0;;:::o;55748:407::-;55923:31;55936:4;55942:2;55946:7;55923:12;:31::i;:::-;55987:1;55969:2;:14;;;:19;55965:183;;56008:56;56039:4;56045:2;56049:7;56058:5;56008:30;:56::i;:::-;56003:145;;56092:40;;;;;;;;;;;;;;56003:145;55965:183;55748:407;;;;:::o;76613:98::-;19863:13;:11;:13::i;:::-;76694:9:::1;76683:8;:20;;;;76613:98:::0;:::o;75892:298::-;76010:13;76046:16;76054:7;76046;:16::i;:::-;76041:59;;76071:29;;;;;;;;;;;;;;76041:59;76142:7;76151:18;76161:7;76151:9;:18::i;:::-;76171:9;76125:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76111:71;;75892:298;;;:::o;74923:30::-;;;;:::o;49118:214::-;49260:4;49289:18;:25;49308:5;49289:25;;;;;;;;;;;;;;;:35;49315:8;49289:35;;;;;;;;;;;;;;;;;;;;;;;;;49282:42;;49118:214;;;;:::o;20876:238::-;19863:13;:11;:13::i;:::-;20999:1:::1;20979:22;;:8;:22;;::::0;20957:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21078:28;21097:8;21078:18;:28::i;:::-;20876:238:::0;:::o;74960:27::-;;;;:::o;49590:282::-;49655:4;49711:7;49692:15;:13;:15::i;:::-;:26;;:66;;;;;49745:13;;49735:7;:23;49692:66;:153;;;;;49844:1;32841:8;49796:17;:26;49814:7;49796:26;;;;;;;;;;;;:44;:49;49692:153;49672:173;;49590:282;;;:::o;72807:105::-;72867:7;72894:10;72887:17;;72807:105;:::o;76198:93::-;76255:7;76282:1;76275:8;;76198:93;:::o;43926:1307::-;44020:7;44045:12;44060:7;44045:22;;44128:4;44109:15;:13;:15::i;:::-;:23;44105:1061;;44162:13;;44155:4;:20;44151:1015;;;44200:14;44217:17;:23;44235:4;44217:23;;;;;;;;;;;;44200:40;;44334:1;32841:8;44306:6;:24;:29;44302:845;;44971:113;44988:1;44978:6;:11;44971:113;;45031:17;:25;45049:6;;;;;;;45031:25;;;;;;;;;;;;45022:34;;44971:113;;;45117:6;45110:13;;;;;;44302:845;44177:989;44151:1015;44105:1061;45194:31;;;;;;;;;;;;;;43926:1307;;;;:::o;50753:485::-;50855:27;50884:23;50925:38;50966:15;:24;50982:7;50966:24;;;;;;;;;;;50925:65;;51143:18;51120:41;;51200:19;51194:26;51175:45;;51105:126;50753:485;;;:::o;49981:659::-;50130:11;50295:16;50288:5;50284:28;50275:37;;50455:16;50444:9;50440:32;50427:45;;50605:15;50594:9;50591:30;50583:5;50572:9;50569:20;50566:56;50556:66;;49981:659;;;;;:::o;56817:159::-;;;;;:::o;72116:311::-;72251:7;72271:16;33245:3;72297:19;:41;;72271:68;;33245:3;72365:31;72376:4;72382:2;72386:9;72365:10;:31::i;:::-;72357:40;;:62;;72350:69;;;72116:311;;;;;:::o;45813:531::-;45920:14;46093:16;46086:5;46082:28;46073:37;;46305:5;46291:11;46266:23;46262:41;46259:52;46235:5;46214:112;46204:122;;45813:531;;;;:::o;57641:158::-;;;;;:::o;20142:132::-;20217:12;:10;:12::i;:::-;20206:23;;:7;:5;:7::i;:::-;:23;;;20198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20142:132::o;21274:191::-;21348:16;21367:6;;;;;;;;;;;21348:25;;21393:8;21384:6;;:17;;;;;;;;;;;;;;;;;;21448:8;21417:40;;21438:8;21417:40;;;;;;;;;;;;21337:128;21274:191;:::o;37143:296::-;37198:7;37405:15;:13;:15::i;:::-;37389:13;;:31;37382:38;;37143:296;:::o;59532:3021::-;59605:20;59628:13;;59605:36;;59668:1;59656:8;:13;59652:44;;59678:18;;;;;;;;;;;;;;59652:44;59709:61;59739:1;59743:2;59747:12;59761:8;59709:21;:61::i;:::-;60287:1;32203:2;60257:1;:26;;60256:32;60227:8;:62;60184:18;:22;60203:2;60184:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;60566:160;60603:2;60678:33;60701:1;60705:2;60709:1;60678:14;:33::i;:::-;60624:30;60645:8;60624:20;:30::i;:::-;:87;60566:18;:160::i;:::-;60532:17;:31;60550:12;60532:31;;;;;;;;;;;:194;;;;60743:16;60774:11;60803:8;60788:12;:23;60774:37;;61324:16;61320:2;61316:25;61304:37;;61696:12;61656:8;61615:1;61553:25;61494:1;61433;61406:335;62067:1;62053:12;62049:20;62007:346;62108:3;62099:7;62096:16;62007:346;;62326:7;62316:8;62313:1;62286:25;62283:1;62280;62275:59;62161:1;62152:7;62148:15;62137:26;;62007:346;;;62011:77;62398:1;62386:8;:13;62382:45;;62408:19;;;;;;;;;;;;;;62382:45;62460:3;62444:13;:19;;;;59958:2517;;62485:60;62514:1;62518:2;62522:12;62536:8;62485:20;:60::i;:::-;59594:2959;59532:3021;;:::o;58239:831::-;58402:4;58461:2;58436:45;;;58500:19;:17;:19::i;:::-;58538:4;58561:7;58587:5;58436:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58419:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58838:1;58821:6;:13;:18;58817:235;;58867:40;;;;;;;;;;;;;;58817:235;59010:6;59004:13;58995:6;58991:2;58987:15;58980:38;58419:644;58707:54;;;58680:81;;;:6;:81;;;;58656:105;;;58239:831;;;;;;:::o;73014:1786::-;73115:17;73554:4;73547;73541:11;73537:22;73646:1;73640:4;73633:15;73721:4;73718:1;73714:12;73707:19;;73803:1;73798:3;73791:14;73907:3;74146:5;74128:428;74154:1;74128:428;;;74194:1;74189:3;74185:11;74178:18;;74365:2;74359:4;74355:13;74351:2;74347:22;74342:3;74334:36;74459:2;74453:4;74449:13;74441:21;;74526:4;74128:428;74516:25;74128:428;74132:21;74595:3;74590;74586:13;74710:4;74705:3;74701:14;74694:21;;74775:6;74770:3;74763:19;73159:1634;;;73014:1786;;;:::o;71817:147::-;71954:6;71817:147;;;;;:::o;18507:98::-;18560:7;18587:10;18580:17;;18507:98;:::o;46446:356::-;46543:14;46781:1;46771:8;46768:15;46742:24;46738:46;46728:56;;46446:356;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:474::-;8482:6;8490;8539:2;8527:9;8518:7;8514:23;8510:32;8507:119;;;8545:79;;:::i;:::-;8507:119;8665:1;8690:53;8735:7;8726:6;8715:9;8711:22;8690:53;:::i;:::-;8680:63;;8636:117;8792:2;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8763:118;8414:474;;;;;:::o;8894:117::-;9003:1;9000;8993:12;9017:180;9065:77;9062:1;9055:88;9162:4;9159:1;9152:15;9186:4;9183:1;9176:15;9203:281;9286:27;9308:4;9286:27;:::i;:::-;9278:6;9274:40;9416:6;9404:10;9401:22;9380:18;9368:10;9365:34;9362:62;9359:88;;;9427:18;;:::i;:::-;9359:88;9467:10;9463:2;9456:22;9246:238;9203:281;;:::o;9490:129::-;9524:6;9551:20;;:::i;:::-;9541:30;;9580:33;9608:4;9600:6;9580:33;:::i;:::-;9490:129;;;:::o;9625:307::-;9686:4;9776:18;9768:6;9765:30;9762:56;;;9798:18;;:::i;:::-;9762:56;9836:29;9858:6;9836:29;:::i;:::-;9828:37;;9920:4;9914;9910:15;9902:23;;9625:307;;;:::o;9938:146::-;10035:6;10030:3;10025;10012:30;10076:1;10067:6;10062:3;10058:16;10051:27;9938:146;;;:::o;10090:423::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:54;10500:6;10495:3;10490;10453:54;:::i;:::-;10173:340;10090:423;;;;;:::o;10532:338::-;10587:5;10636:3;10629:4;10621:6;10617:17;10613:27;10603:122;;10644:79;;:::i;:::-;10603:122;10761:6;10748:20;10786:78;10860:3;10852:6;10845:4;10837:6;10833:17;10786:78;:::i;:::-;10777:87;;10593:277;10532:338;;;;:::o;10876:943::-;10971:6;10979;10987;10995;11044:3;11032:9;11023:7;11019:23;11015:33;11012:120;;;11051:79;;:::i;:::-;11012:120;11171:1;11196:53;11241:7;11232:6;11221:9;11217:22;11196:53;:::i;:::-;11186:63;;11142:117;11298:2;11324:53;11369:7;11360:6;11349:9;11345:22;11324:53;:::i;:::-;11314:63;;11269:118;11426:2;11452:53;11497:7;11488:6;11477:9;11473:22;11452:53;:::i;:::-;11442:63;;11397:118;11582:2;11571:9;11567:18;11554:32;11613:18;11605:6;11602:30;11599:117;;;11635:79;;:::i;:::-;11599:117;11740:62;11794:7;11785:6;11774:9;11770:22;11740:62;:::i;:::-;11730:72;;11525:287;10876:943;;;;;;;:::o;11825:474::-;11893:6;11901;11950:2;11938:9;11929:7;11925:23;11921:32;11918:119;;;11956:79;;:::i;:::-;11918:119;12076:1;12101:53;12146:7;12137:6;12126:9;12122:22;12101:53;:::i;:::-;12091:63;;12047:117;12203:2;12229:53;12274:7;12265:6;12254:9;12250:22;12229:53;:::i;:::-;12219:63;;12174:118;11825:474;;;;;:::o;12305:180::-;12353:77;12350:1;12343:88;12450:4;12447:1;12440:15;12474:4;12471:1;12464:15;12491:320;12535:6;12572:1;12566:4;12562:12;12552:22;;12619:1;12613:4;12609:12;12640:18;12630:81;;12696:4;12688:6;12684:17;12674:27;;12630:81;12758:2;12750:6;12747:14;12727:18;12724:38;12721:84;;12777:18;;:::i;:::-;12721:84;12542:269;12491:320;;;:::o;12817:147::-;12918:11;12955:3;12940:18;;12817:147;;;;:::o;12970:114::-;;:::o;13090:398::-;13249:3;13270:83;13351:1;13346:3;13270:83;:::i;:::-;13263:90;;13362:93;13451:3;13362:93;:::i;:::-;13480:1;13475:3;13471:11;13464:18;;13090:398;;;:::o;13494:379::-;13678:3;13700:147;13843:3;13700:147;:::i;:::-;13693:154;;13864:3;13857:10;;13494:379;;;:::o;13879:166::-;14019:18;14015:1;14007:6;14003:14;13996:42;13879:166;:::o;14051:366::-;14193:3;14214:67;14278:2;14273:3;14214:67;:::i;:::-;14207:74;;14290:93;14379:3;14290:93;:::i;:::-;14408:2;14403:3;14399:12;14392:19;;14051:366;;;:::o;14423:419::-;14589:4;14627:2;14616:9;14612:18;14604:26;;14676:9;14670:4;14666:20;14662:1;14651:9;14647:17;14640:47;14704:131;14830:4;14704:131;:::i;:::-;14696:139;;14423:419;;;:::o;14848:97::-;14907:6;14935:3;14925:13;;14848:97;;;;:::o;14951:141::-;15000:4;15023:3;15015:11;;15046:3;15043:1;15036:14;15080:4;15077:1;15067:18;15059:26;;14951:141;;;:::o;15098:93::-;15135:6;15182:2;15177;15170:5;15166:14;15162:23;15152:33;;15098:93;;;:::o;15197:107::-;15241:8;15291:5;15285:4;15281:16;15260:37;;15197:107;;;;:::o;15310:393::-;15379:6;15429:1;15417:10;15413:18;15452:97;15482:66;15471:9;15452:97;:::i;:::-;15570:39;15600:8;15589:9;15570:39;:::i;:::-;15558:51;;15642:4;15638:9;15631:5;15627:21;15618:30;;15691:4;15681:8;15677:19;15670:5;15667:30;15657:40;;15386:317;;15310:393;;;;;:::o;15709:60::-;15737:3;15758:5;15751:12;;15709:60;;;:::o;15775:142::-;15825:9;15858:53;15876:34;15885:24;15903:5;15885:24;:::i;:::-;15876:34;:::i;:::-;15858:53;:::i;:::-;15845:66;;15775:142;;;:::o;15923:75::-;15966:3;15987:5;15980:12;;15923:75;;;:::o;16004:269::-;16114:39;16145:7;16114:39;:::i;:::-;16175:91;16224:41;16248:16;16224:41;:::i;:::-;16216:6;16209:4;16203:11;16175:91;:::i;:::-;16169:4;16162:105;16080:193;16004:269;;;:::o;16279:73::-;16324:3;16279:73;:::o;16358:189::-;16435:32;;:::i;:::-;16476:65;16534:6;16526;16520:4;16476:65;:::i;:::-;16411:136;16358:189;;:::o;16553:186::-;16613:120;16630:3;16623:5;16620:14;16613:120;;;16684:39;16721:1;16714:5;16684:39;:::i;:::-;16657:1;16650:5;16646:13;16637:22;;16613:120;;;16553:186;;:::o;16745:543::-;16846:2;16841:3;16838:11;16835:446;;;16880:38;16912:5;16880:38;:::i;:::-;16964:29;16982:10;16964:29;:::i;:::-;16954:8;16950:44;17147:2;17135:10;17132:18;17129:49;;;17168:8;17153:23;;17129:49;17191:80;17247:22;17265:3;17247:22;:::i;:::-;17237:8;17233:37;17220:11;17191:80;:::i;:::-;16850:431;;16835:446;16745:543;;;:::o;17294:117::-;17348:8;17398:5;17392:4;17388:16;17367:37;;17294:117;;;;:::o;17417:169::-;17461:6;17494:51;17542:1;17538:6;17530:5;17527:1;17523:13;17494:51;:::i;:::-;17490:56;17575:4;17569;17565:15;17555:25;;17468:118;17417:169;;;;:::o;17591:295::-;17667:4;17813:29;17838:3;17832:4;17813:29;:::i;:::-;17805:37;;17875:3;17872:1;17868:11;17862:4;17859:21;17851:29;;17591:295;;;;:::o;17891:1403::-;18015:44;18055:3;18050;18015:44;:::i;:::-;18124:18;18116:6;18113:30;18110:56;;;18146:18;;:::i;:::-;18110:56;18190:38;18222:4;18216:11;18190:38;:::i;:::-;18275:67;18335:6;18327;18321:4;18275:67;:::i;:::-;18369:1;18398:2;18390:6;18387:14;18415:1;18410:632;;;;19086:1;19103:6;19100:84;;;19159:9;19154:3;19150:19;19137:33;19128:42;;19100:84;19210:67;19270:6;19263:5;19210:67;:::i;:::-;19204:4;19197:81;19059:229;18380:908;;18410:632;18462:4;18458:9;18450:6;18446:22;18496:37;18528:4;18496:37;:::i;:::-;18555:1;18569:215;18583:7;18580:1;18577:14;18569:215;;;18669:9;18664:3;18660:19;18647:33;18639:6;18632:49;18720:1;18712:6;18708:14;18698:24;;18767:2;18756:9;18752:18;18739:31;;18606:4;18603:1;18599:12;18594:17;;18569:215;;;18812:6;18803:7;18800:19;18797:186;;;18877:9;18872:3;18868:19;18855:33;18920:48;18962:4;18954:6;18950:17;18939:9;18920:48;:::i;:::-;18912:6;18905:64;18820:163;18797:186;19029:1;19025;19017:6;19013:14;19009:22;19003:4;18996:36;18417:625;;;18380:908;;17990:1304;;;17891:1403;;;:::o;19300:180::-;19348:77;19345:1;19338:88;19445:4;19442:1;19435:15;19469:4;19466:1;19459:15;19486:191;19526:3;19545:20;19563:1;19545:20;:::i;:::-;19540:25;;19579:20;19597:1;19579:20;:::i;:::-;19574:25;;19622:1;19619;19615:9;19608:16;;19643:3;19640:1;19637:10;19634:36;;;19650:18;;:::i;:::-;19634:36;19486:191;;;;:::o;19683:410::-;19723:7;19746:20;19764:1;19746:20;:::i;:::-;19741:25;;19780:20;19798:1;19780:20;:::i;:::-;19775:25;;19835:1;19832;19828:9;19857:30;19875:11;19857:30;:::i;:::-;19846:41;;20036:1;20027:7;20023:15;20020:1;20017:22;19997:1;19990:9;19970:83;19947:139;;20066:18;;:::i;:::-;19947:139;19731:362;19683:410;;;;:::o;20099:148::-;20201:11;20238:3;20223:18;;20099:148;;;;:::o;20277:874::-;20380:3;20417:5;20411:12;20446:36;20472:9;20446:36;:::i;:::-;20498:89;20580:6;20575:3;20498:89;:::i;:::-;20491:96;;20618:1;20607:9;20603:17;20634:1;20629:166;;;;20809:1;20804:341;;;;20596:549;;20629:166;20713:4;20709:9;20698;20694:25;20689:3;20682:38;20775:6;20768:14;20761:22;20753:6;20749:35;20744:3;20740:45;20733:52;;20629:166;;20804:341;20871:38;20903:5;20871:38;:::i;:::-;20931:1;20945:154;20959:6;20956:1;20953:13;20945:154;;;21033:7;21027:14;21023:1;21018:3;21014:11;21007:35;21083:1;21074:7;21070:15;21059:26;;20981:4;20978:1;20974:12;20969:17;;20945:154;;;21128:6;21123:3;21119:16;21112:23;;20811:334;;20596:549;;20384:767;;20277:874;;;;:::o;21157:390::-;21263:3;21291:39;21324:5;21291:39;:::i;:::-;21346:89;21428:6;21423:3;21346:89;:::i;:::-;21339:96;;21444:65;21502:6;21497:3;21490:4;21483:5;21479:16;21444:65;:::i;:::-;21534:6;21529:3;21525:16;21518:23;;21267:280;21157:390;;;;:::o;21553:583::-;21775:3;21797:92;21885:3;21876:6;21797:92;:::i;:::-;21790:99;;21906:95;21997:3;21988:6;21906:95;:::i;:::-;21899:102;;22018:92;22106:3;22097:6;22018:92;:::i;:::-;22011:99;;22127:3;22120:10;;21553:583;;;;;;:::o;22142:225::-;22282:34;22278:1;22270:6;22266:14;22259:58;22351:8;22346:2;22338:6;22334:15;22327:33;22142:225;:::o;22373:366::-;22515:3;22536:67;22600:2;22595:3;22536:67;:::i;:::-;22529:74;;22612:93;22701:3;22612:93;:::i;:::-;22730:2;22725:3;22721:12;22714:19;;22373:366;;;:::o;22745:419::-;22911:4;22949:2;22938:9;22934:18;22926:26;;22998:9;22992:4;22988:20;22984:1;22973:9;22969:17;22962:47;23026:131;23152:4;23026:131;:::i;:::-;23018:139;;22745:419;;;:::o;23170:182::-;23310:34;23306:1;23298:6;23294:14;23287:58;23170:182;:::o;23358:366::-;23500:3;23521:67;23585:2;23580:3;23521:67;:::i;:::-;23514:74;;23597:93;23686:3;23597:93;:::i;:::-;23715:2;23710:3;23706:12;23699:19;;23358:366;;;:::o;23730:419::-;23896:4;23934:2;23923:9;23919:18;23911:26;;23983:9;23977:4;23973:20;23969:1;23958:9;23954:17;23947:47;24011:131;24137:4;24011:131;:::i;:::-;24003:139;;23730:419;;;:::o;24155:98::-;24206:6;24240:5;24234:12;24224:22;;24155:98;;;:::o;24259:168::-;24342:11;24376:6;24371:3;24364:19;24416:4;24411:3;24407:14;24392:29;;24259:168;;;;:::o;24433:373::-;24519:3;24547:38;24579:5;24547:38;:::i;:::-;24601:70;24664:6;24659:3;24601:70;:::i;:::-;24594:77;;24680:65;24738:6;24733:3;24726:4;24719:5;24715:16;24680:65;:::i;:::-;24770:29;24792:6;24770:29;:::i;:::-;24765:3;24761:39;24754:46;;24523:283;24433:373;;;;:::o;24812:640::-;25007:4;25045:3;25034:9;25030:19;25022:27;;25059:71;25127:1;25116:9;25112:17;25103:6;25059:71;:::i;:::-;25140:72;25208:2;25197:9;25193:18;25184:6;25140:72;:::i;:::-;25222;25290:2;25279:9;25275:18;25266:6;25222:72;:::i;:::-;25341:9;25335:4;25331:20;25326:2;25315:9;25311:18;25304:48;25369:76;25440:4;25431:6;25369:76;:::i;:::-;25361:84;;24812:640;;;;;;;:::o;25458:141::-;25514:5;25545:6;25539:13;25530:22;;25561:32;25587:5;25561:32;:::i;:::-;25458:141;;;;:::o;25605:349::-;25674:6;25723:2;25711:9;25702:7;25698:23;25694:32;25691:119;;;25729:79;;:::i;:::-;25691:119;25849:1;25874:63;25929:7;25920:6;25909:9;25905:22;25874:63;:::i;:::-;25864:73;;25820:127;25605:349;;;;:::o
Swarm Source
ipfs://68f1be0f972be5fad72ea12269a5668561d8311f91676e278ef7e6715e8bff96
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.