Overview
Max Total Supply
823 VFemme
Holders
244
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 VFemmeLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FemmeVerse
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-11 */ // ███████╗███████╗███╗░░░███╗███╗░░░███╗███████╗ ██╗░░░██╗███████╗██████╗░░██████╗███████╗ // ██╔════╝██╔════╝████╗░████║████╗░████║██╔════╝ ██║░░░██║██╔════╝██╔══██╗██╔════╝██╔════╝ // █████╗░░█████╗░░██╔████╔██║██╔████╔██║█████╗░░ ╚██╗░██╔╝█████╗░░██████╔╝╚█████╗░█████╗░░ // ██╔══╝░░██╔══╝░░██║╚██╔╝██║██║╚██╔╝██║██╔══╝░░ ░╚████╔╝░██╔══╝░░██╔══██╗░╚═══██╗██╔══╝░░ // ██║░░░░░███████╗██║░╚═╝░██║██║░╚═╝░██║███████╗ ░░╚██╔╝░░███████╗██║░░██║██████╔╝███████╗ // ╚═╝░░░░░╚══════╝╚═╝░░░░░╚═╝╚═╝░░░░░╚═╝╚══════╝ ░░░╚═╝░░░╚══════╝╚═╝░░╚═╝╚═════╝░╚══════╝ //FemmeVerse is the a generative NFT collection featuring 10,000 hand-painted female portraits from NonFungible Lady (me❤️) //To reward my genesis collectors, Whitelist minting is open to Les Non Fongible Femmes holders for 2 free mints per Genesis Femme and 20 raffle winners with two free mints per person. //Public minting will be after Whitelist minting and at 0.05eth per VFemme, max 5 VFemmes per transaction. //I'm an artist by passion, went to art school (BFA) but has to take on a job at an office front-desk to make a living, NFT offers me hope and chance to pursue my career as a full-time artist. //I learnt Javascript and Solidity every day after my day job and this is only my fifth week of coding, I apologize for the rudimentary web minting front-end and I will keep learning. //Please go to my twitter @NonFungibleLady to see some test portraits from FemmeVerse, I'm shy in person but confident in my art. //Thank you for being here, I hope FemmeVerse will be a fun journey ahead for the global NFT art community. // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: contracts/WithLimitedSupply.sol pragma solidity ^0.8.0; /// @author 1001.digital /// @title A token tracker that limits the token supply and increments token IDs on each new mint. abstract contract WithLimitedSupply { using Counters for Counters.Counter; // Keeps track of how many we have minted Counters.Counter private _tokenCount; /// @dev The maximum count of tokens this token tracker will hold. uint256 private _maxSupply; /// Instanciate the contract /// @param totalSupply_ how many tokens this collection should hold constructor (uint256 totalSupply_) { _maxSupply = totalSupply_; } /// @dev Get the max Supply /// @return the maximum token count function maxSupply() public view returns (uint256) { return _maxSupply; } /// @dev Get the current token count /// @return the created token count function tokenCount() public view returns (uint256) { return _tokenCount.current(); } /// @dev Check whether tokens are still available /// @return the available token count function availableTokenCount() public view returns (uint256) { return maxSupply() - tokenCount(); } /// @dev Increment the token count and fetch the latest count /// @return the next token id function nextToken() internal virtual ensureAvailability returns (uint256) { uint256 token = _tokenCount.current(); _tokenCount.increment(); return token; } /// @dev Check whether another token is still available modifier ensureAvailability() { require(availableTokenCount() > 0, "No more tokens available"); _; } /// @param amount Check whether number of tokens are still available /// @dev Check whether tokens are still available modifier ensureAvailabilityFor(uint256 amount) { require(availableTokenCount() >= amount, "Requested number of tokens not available"); _; } } // File: contracts/RandomlyAssigned.sol pragma solidity ^0.8.0; /// @author 1001.digital /// @title Randomly assign tokenIDs from a given set of tokens. abstract contract RandomlyAssigned is WithLimitedSupply { // Used for random index assignment mapping(uint256 => uint256) private tokenMatrix; // The initial token ID uint256 private startFrom; /// Instanciate the contract /// @param _maxSupply how many tokens this collection should hold /// @param _startFrom the tokenID with which to start counting constructor (uint256 _maxSupply, uint256 _startFrom) WithLimitedSupply(_maxSupply) { startFrom = _startFrom; } /// Get the next token ID /// @dev Randomly gets a new token ID and keeps track of the ones that are still available. /// @return the next token ID function nextToken() internal override ensureAvailability returns (uint256) { uint256 maxIndex = maxSupply() - tokenCount(); uint256 random = uint256(keccak256( abi.encodePacked( msg.sender, block.coinbase, block.difficulty, block.gaslimit, block.timestamp ) )) % maxIndex; uint256 value = 0; if (tokenMatrix[random] == 0) { // If this matrix position is empty, set the value to the generated random number. value = random; } else { // Otherwise, use the previously stored number from the matrix. value = tokenMatrix[random]; } // If the last available tokenID is still unused... if (tokenMatrix[maxIndex - 1] == 0) { // ...store that ID in the current matrix position. tokenMatrix[random] = maxIndex - 1; } else { // ...otherwise copy over the stored number to the current matrix position. tokenMatrix[random] = tokenMatrix[maxIndex - 1]; } // Increment counts super.nextToken(); return value + startFrom; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/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 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 ) external; /** * @dev Transfers `tokenId` token 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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/FemmeVerse.sol // ███████╗███████╗███╗░░░███╗███╗░░░███╗███████╗ ██╗░░░██╗███████╗██████╗░░██████╗███████╗ // ██╔════╝██╔════╝████╗░████║████╗░████║██╔════╝ ██║░░░██║██╔════╝██╔══██╗██╔════╝██╔════╝ // █████╗░░█████╗░░██╔████╔██║██╔████╔██║█████╗░░ ╚██╗░██╔╝█████╗░░██████╔╝╚█████╗░█████╗░░ // ██╔══╝░░██╔══╝░░██║╚██╔╝██║██║╚██╔╝██║██╔══╝░░ ░╚████╔╝░██╔══╝░░██╔══██╗░╚═══██╗██╔══╝░░ // ██║░░░░░███████╗██║░╚═╝░██║██║░╚═╝░██║███████╗ ░░╚██╔╝░░███████╗██║░░██║██████╔╝███████╗ // ╚═╝░░░░░╚══════╝╚═╝░░░░░╚═╝╚═╝░░░░░╚═╝╚══════╝ ░░░╚═╝░░░╚══════╝╚═╝░░╚═╝╚═════╝░╚══════╝ pragma solidity ^0.8.0; //SPDX-License-Identifier: MIT //FemmeVerse is the a generative NFT collection featuring 10,000 hand-painted female portraits from NonFungible Lady (me❤️) //To reward my genesis collectors, Whitelist minting is open to Les Non Fongible Femmes holders for 2 free mints per Genesis Femme and 20 raffle winners with two free mints per person. //Public minting will be after Whitelist minting and at 0.05eth per VFemme, max 5 VFemmes per transaction. //I'm an artist by passion, went to art school (BFA) but has to take on a job at an office front-desk to make a living, NFT offers me hope and chance to pursue my career as a full-time artist. //I learnt Javascript and Solidity every day after my day job and this is only my fifth week of coding, I apologize for the rudimentary web minting front-end and I will keep learning. //Please go to my twitter @NonFungibleLady to see some test portraits from FemmeVerse, I'm shy in person but confident in my art. //Thank you for being here, I hope FemmeVerse will be a fun journey ahead for the global NFT art community. contract FemmeVerse is ERC721Enumerable, Ownable, IERC2981, RandomlyAssigned { using SafeMath for uint256; using Strings for uint256; string public baseExtension = ".json"; uint256 public cost = 0.05 ether; uint256 public maxVFemme = 10000; uint256 public maxPresaleVFemmeMintAmount = 2; uint256 public maxVFemmeMintAmount = 5; int256 public VFemme_RESERVE = 1000; bool public preSaleIsActive = false; bool public saleIsActive = false; bool public paused = false; mapping(address => bool) public whitelist; mapping(address => uint256) public presalePurchases; // uint16 internal royalty = 600; // base 10000, 6% uint16 public constant BASE = 10000; // string public baseURI = "https://ipfs.io/ipfs/QmT3km4L5shRBjQhaHPufuWoGeu5STenFiiU1xvgzt1Quw/"; constructor() ERC721("FemmeVerse", "VFemme") RandomlyAssigned(10000, 1) {} // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintPreSaleVFemmes(uint256 _PresaleVFemmeMintAmount) public payable { require(!paused); require(whitelist[msg.sender], 'Whitelist required for pre sale'); require(preSaleIsActive, 'Pre sale must be active to mint VFemmes'); require(presalePurchases[msg.sender].add(_PresaleVFemmeMintAmount) <= maxPresaleVFemmeMintAmount, 'Can only mint maxPresale_VFemme_Mint tokens during the presale'); require(msg.value >= 0 * _PresaleVFemmeMintAmount); presalePurchases[msg.sender] = presalePurchases[msg.sender].add( _PresaleVFemmeMintAmount ); require(_PresaleVFemmeMintAmount > 0); require(totalSupply() + _PresaleVFemmeMintAmount <= maxVFemme); for (uint256 i = 1; i <= _PresaleVFemmeMintAmount; i++) { uint256 mintIndex = nextToken(); if (totalSupply() < maxVFemme) { _safeMint(_msgSender(), mintIndex); } } } function mintPublicSaleVFemmes(uint256 _VFemmeMintAmount) public payable { require(!paused); require(_VFemmeMintAmount > 0); require(_VFemmeMintAmount <= maxVFemmeMintAmount); require(totalSupply() + _VFemmeMintAmount <= maxVFemme); require(msg.value >= cost * _VFemmeMintAmount); for (uint256 i = 1; i <= _VFemmeMintAmount; i++) { uint256 mintIndex = nextToken(); if (totalSupply() < maxVFemme) { _safeMint(_msgSender(), mintIndex); } } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function whitelistAddresses(address[] memory addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = true; } } function removeWhitelistAddresses(address[] memory addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = false; } } function flipPreSaleState() external onlyOwner { preSaleIsActive = !preSaleIsActive; } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } /// @notice Calculate the royalty payment /// @param _salePrice the sale price of the token function royaltyInfo(uint256, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (address(this), (_salePrice * royalty) / BASE); } /// @dev set the royalty /// @param _royalty the royalty in base 10000, 500 = 5% function setRoyalty(uint16 _royalty) public virtual onlyOwner { require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.'); royalty = _royalty; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VFemme_RESERVE","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleVFemmeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVFemme","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVFemmeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PresaleVFemmeMintAmount","type":"uint256"}],"name":"mintPreSaleVFemmes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_VFemmeMintAmount","type":"uint256"}],"name":"mintPublicSaleVFemmes","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalePurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","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":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600f919062000191565b5066b1a2bc2ec50000601055612710601155600260125560056013556103e86014556015805462ffffff191690556018805461ffff19166102581790556040805160808101909152604480825262002c5d60208301398051620000949160199160209091019062000191565b50348015620000a257600080fd5b50604080518082018252600a81526946656d6d65566572736560b01b6020808301918252835180850190945260068452655646656d6d6560d01b9084015281516127109360019385939092620000fb9160009162000191565b5080516200011190600190602084019062000191565b5050506200012e620001286200013b60201b60201c565b6200013f565b600c55600e555062000274565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019f9062000237565b90600052602060002090601f016020900481019282620001c357600085556200020e565b82601f10620001de57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020e578251825591602001919060010190620001f1565b506200021c92915062000220565b5090565b5b808211156200021c576000815560010162000221565b600181811c908216806200024c57607f821691505b602082108114156200026e57634e487b7160e01b600052602260045260246000fd5b50919050565b6129d980620002846000396000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063e14ca3531161007a578063e14ca3531461071b578063e985e9c514610730578063eb8d244414610779578063ec342ad014610798578063f0325549146107c1578063f2fde38b146107d657600080fd5b8063b88d4fde14610685578063c6682862146106a5578063c75e0592146106ba578063c87b56dd146106d0578063ccf2e6fe146106f0578063d5abeb011461070657600080fd5b806399f5de0c1161011357806399f5de0c146105c05780639b19251a146105d35780639f181b5e14610603578063a22cb46514610618578063a68574d314610638578063b83921a61461066557600080fd5b80636c0360eb1461054357806370a0823114610558578063715018a6146105785780638da5cb5b1461058d57806395d89b41146105ab57600080fd5b80632f5c52e1116101e857806342842e0e116101ac57806342842e0e14610480578063438b6300146104a05780634f6ccce7146104cd5780635c975abb146104ed5780636352211e1461050d5780636a323f2a1461052d57600080fd5b80632f5c52e11461040d5780632f745c591461042357806334918dfd1461044357806336e79a5a146104585780633ccfd60b1461047857600080fd5b806313faede61161023a57806313faede61461033b57806318160ddd1461035f5780631f0234d81461037457806323b872dd1461038e5780632a55205a146103ae5780632bf04304146103ed57600080fd5b8063013934b41461027757806301ffc9a71461028c57806306fdde03146102c1578063081812fc146102e3578063095ea7b31461031b575b600080fd5b61028a61028536600461255f565b6107f6565b005b34801561029857600080fd5b506102ac6102a7366004612501565b610a1a565b60405190151581526020015b60405180910390f35b3480156102cd57600080fd5b506102d6610a45565b6040516102b8919061270b565b3480156102ef57600080fd5b506103036102fe36600461255f565b610ad7565b6040516001600160a01b0390911681526020016102b8565b34801561032757600080fd5b5061028a610336366004612423565b610b6c565b34801561034757600080fd5b5061035160105481565b6040519081526020016102b8565b34801561036b57600080fd5b50600854610351565b34801561038057600080fd5b506015546102ac9060ff1681565b34801561039a57600080fd5b5061028a6103a93660046122eb565b610c82565b3480156103ba57600080fd5b506103ce6103c9366004612578565b610cb3565b604080516001600160a01b0390931683526020830191909152016102b8565b3480156103f957600080fd5b5061028a61040836600461244d565b610ce4565b34801561041957600080fd5b5061035160145481565b34801561042f57600080fd5b5061035161043e366004612423565b610d76565b34801561044f57600080fd5b5061028a610e0c565b34801561046457600080fd5b5061028a61047336600461253b565b610e53565b61028a610ef7565b34801561048c57600080fd5b5061028a61049b3660046122eb565b610f47565b3480156104ac57600080fd5b506104c06104bb36600461229d565b610f62565b6040516102b891906126c7565b3480156104d957600080fd5b506103516104e836600461255f565b611004565b3480156104f957600080fd5b506015546102ac9062010000900460ff1681565b34801561051957600080fd5b5061030361052836600461255f565b611097565b34801561053957600080fd5b5061035160125481565b34801561054f57600080fd5b506102d661110e565b34801561056457600080fd5b5061035161057336600461229d565b61119c565b34801561058457600080fd5b5061028a611223565b34801561059957600080fd5b50600a546001600160a01b0316610303565b3480156105b757600080fd5b506102d6611257565b61028a6105ce36600461255f565b611266565b3480156105df57600080fd5b506102ac6105ee36600461229d565b60166020526000908152604090205460ff1681565b34801561060f57600080fd5b50610351611318565b34801561062457600080fd5b5061028a6106333660046123e7565b611328565b34801561064457600080fd5b5061035161065336600461229d565b60176020526000908152604090205481565b34801561067157600080fd5b5061028a61068036600461244d565b6113ed565b34801561069157600080fd5b5061028a6106a0366004612327565b61147f565b3480156106b157600080fd5b506102d66114b7565b3480156106c657600080fd5b5061035160135481565b3480156106dc57600080fd5b506102d66106eb36600461255f565b6114c4565b3480156106fc57600080fd5b5061035160115481565b34801561071257600080fd5b50600c54610351565b34801561072757600080fd5b506103516115a2565b34801561073c57600080fd5b506102ac61074b3660046122b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078557600080fd5b506015546102ac90610100900460ff1681565b3480156107a457600080fd5b506107ae61271081565b60405161ffff90911681526020016102b8565b3480156107cd57600080fd5b5061028a6115b9565b3480156107e257600080fd5b5061028a6107f136600461229d565b6115f7565b60155462010000900460ff161561080c57600080fd5b3360009081526016602052604090205460ff166108705760405162461bcd60e51b815260206004820152601f60248201527f57686974656c69737420726571756972656420666f72207072652073616c650060448201526064015b60405180910390fd5b60155460ff166108d25760405162461bcd60e51b815260206004820152602760248201527f5072652073616c65206d7573742062652061637469766520746f206d696e74206044820152665646656d6d657360c81b6064820152608401610867565b601254336000908152601760205260409020546108ef9083611692565b11156109635760405162461bcd60e51b815260206004820152603e60248201527f43616e206f6e6c79206d696e74206d617850726573616c655f5646656d6d655f60448201527f4d696e7420746f6b656e7320647572696e67207468652070726573616c6500006064820152608401610867565b61096e816000612853565b34101561097a57600080fd5b336000908152601760205260409020546109949082611692565b33600090815260176020526040902055806109ae57600080fd5b601154816109bb60085490565b6109c59190612827565b11156109d057600080fd5b60015b818111610a165760006109e461169e565b90506011546109f260085490565b1015610a0357610a03335b82611831565b5080610a0e816128f0565b9150506109d3565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610a3f5750610a3f8261184b565b92915050565b606060008054610a54906128b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906128b5565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b506000908152600460205260409020546001600160a01b031690565b6000610b7782611097565b9050806001600160a01b0316836001600160a01b03161415610be55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610867565b336001600160a01b0382161480610c015750610c01813361074b565b610c735760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610867565b610c7d838361189b565b505050565b610c8c3382611909565b610ca85760405162461bcd60e51b8152600401610867906127a5565b610c7d838383611a00565b6018546000908190309061271090610ccf9061ffff1686612853565b610cd9919061283f565b915091509250929050565b600a546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161086790612770565b60005b8151811015610a1657600160166000848481518110610d3257610d32612961565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d6e816128f0565b915050610d11565b6000610d818361119c565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610867565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e365760405162461bcd60e51b815260040161086790612770565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161086790612770565b6103e88161ffff161115610edf5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b6064820152608401610867565b6018805461ffff191661ffff92909216919091179055565b600a546001600160a01b03163314610f215760405162461bcd60e51b815260040161086790612770565b60405133904780156108fc02916000818181858888f19350505050610f4557600080fd5b565b610c7d8383836040518060200160405280600081525061147f565b60606000610f6f8361119c565b905060008167ffffffffffffffff811115610f8c57610f8c612977565b604051908082528060200260200182016040528015610fb5578160200160208202803683370190505b50905060005b82811015610ffc57610fcd8582610d76565b828281518110610fdf57610fdf612961565b602090810291909101015280610ff4816128f0565b915050610fbb565b509392505050565b600061100f60085490565b82106110725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610867565b6008828154811061108557611085612961565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a3f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610867565b6019805461111b906128b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611147906128b5565b80156111945780601f1061116957610100808354040283529160200191611194565b820191906000526020600020905b81548152906001019060200180831161117757829003601f168201915b505050505081565b60006001600160a01b0382166112075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610867565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461124d5760405162461bcd60e51b815260040161086790612770565b610f456000611bab565b606060018054610a54906128b5565b60155462010000900460ff161561127c57600080fd5b6000811161128957600080fd5b60135481111561129857600080fd5b601154816112a560085490565b6112af9190612827565b11156112ba57600080fd5b806010546112c89190612853565b3410156112d457600080fd5b60015b818111610a165760006112e861169e565b90506011546112f660085490565b101561130557611305336109fd565b5080611310816128f0565b9150506112d7565b6000611323600b5490565b905090565b6001600160a01b0382163314156113815760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610867565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114175760405162461bcd60e51b815260040161086790612770565b60005b8151811015610a165760006016600084848151811061143b5761143b612961565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611477816128f0565b91505061141a565b6114893383611909565b6114a55760405162461bcd60e51b8152600401610867906127a5565b6114b184848484611bfd565b50505050565b600f805461111b906128b5565b6000818152600260205260409020546060906001600160a01b03166115435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610867565b600061154d611c30565b9050600081511161156d576040518060200160405280600081525061159b565b8061157784611c3f565b600f60405160200161158b939291906125c6565b6040516020818303038152906040525b9392505050565b60006115ac611318565b600c546113239190612872565b600a546001600160a01b031633146115e35760405162461bcd60e51b815260040161086790612770565b6015805460ff19811660ff90911615179055565b600a546001600160a01b031633146116215760405162461bcd60e51b815260040161086790612770565b6001600160a01b0381166116865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b61168f81611bab565b50565b600061159b8284612827565b6000806116a96115a2565b116116f15760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b6044820152606401610867565b60006116fb611318565b600c546117089190612872565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c61176f919061290b565b6000818152600d60205260408120549192509061178d57508061179e565b506000818152600d60205260409020545b600d60006117ad600186612872565b815260200190815260200160002054600014156117e3576117cf600184612872565b6000838152600d6020526040902055611813565b600d60006117f2600186612872565b81526020808201929092526040908101600090812054858252600d90935220555b61181b611d3d565b50600e546118299082612827565b935050505090565b610a16828260405180602001604052806000815250611dab565b60006001600160e01b031982166380ac58cd60e01b148061187c57506001600160e01b03198216635b5e139f60e01b145b80610a3f57506301ffc9a760e01b6001600160e01b0319831614610a3f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d082611097565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b600061198d83611097565b9050806001600160a01b0316846001600160a01b031614806119c85750836001600160a01b03166119bd84610ad7565b6001600160a01b0316145b806119f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a1382611097565b6001600160a01b031614611a7b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610867565b6001600160a01b038216611add5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b611ae8838383611dde565b611af360008261189b565b6001600160a01b0383166000908152600360205260408120805460019290611b1c908490612872565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b4a908490612827565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c08848484611a00565b611c1484848484611e96565b6114b15760405162461bcd60e51b81526004016108679061271e565b606060198054610a54906128b5565b606081611c635750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8d5780611c77816128f0565b9150611c869050600a8361283f565b9150611c67565b60008167ffffffffffffffff811115611ca857611ca8612977565b6040519080825280601f01601f191660200182016040528015611cd2576020820181803683370190505b5090505b84156119f857611ce7600183612872565b9150611cf4600a8661290b565b611cff906030612827565b60f81b818381518110611d1457611d14612961565b60200101906001600160f81b031916908160001a905350611d36600a8661283f565b9450611cd6565b600080611d486115a2565b11611d905760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b6044820152606401610867565b6000611d9b600b5490565b9050611323600b80546001019055565b611db58383611fa3565b611dc26000848484611e96565b610c7d5760405162461bcd60e51b81526004016108679061271e565b6001600160a01b038316611e3957611e3481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e5c565b816001600160a01b0316836001600160a01b031614611e5c57611e5c83826120f1565b6001600160a01b038216611e7357610c7d8161218e565b826001600160a01b0316826001600160a01b031614610c7d57610c7d828261223d565b60006001600160a01b0384163b15611f9857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eda90339089908890889060040161268a565b602060405180830381600087803b158015611ef457600080fd5b505af1925050508015611f24575060408051601f3d908101601f19168201909252611f219181019061251e565b60015b611f7e573d808015611f52576040519150601f19603f3d011682016040523d82523d6000602084013e611f57565b606091505b508051611f765760405162461bcd60e51b81526004016108679061271e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119f8565b506001949350505050565b6001600160a01b038216611ff95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610867565b6000818152600260205260409020546001600160a01b03161561205e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610867565b61206a60008383611dde565b6001600160a01b0382166000908152600360205260408120805460019290612093908490612827565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016120fe8461119c565b6121089190612872565b60008381526007602052604090205490915080821461215b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121a090600190612872565b600083815260096020526040812054600880549394509092849081106121c8576121c8612961565b9060005260206000200154905080600883815481106121e9576121e9612961565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122215761222161294b565b6001900381819060005260206000200160009055905550505050565b60006122488361119c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b038116811461229857600080fd5b919050565b6000602082840312156122af57600080fd5b61159b82612281565b600080604083850312156122cb57600080fd5b6122d483612281565b91506122e260208401612281565b90509250929050565b60008060006060848603121561230057600080fd5b61230984612281565b925061231760208501612281565b9150604084013590509250925092565b6000806000806080858703121561233d57600080fd5b61234685612281565b93506020612355818701612281565b935060408601359250606086013567ffffffffffffffff8082111561237957600080fd5b818801915088601f83011261238d57600080fd5b81358181111561239f5761239f612977565b6123b1601f8201601f191685016127f6565b915080825289848285010111156123c757600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156123fa57600080fd5b61240383612281565b91506020830135801515811461241857600080fd5b809150509250929050565b6000806040838503121561243657600080fd5b61243f83612281565b946020939093013593505050565b6000602080838503121561246057600080fd5b823567ffffffffffffffff8082111561247857600080fd5b818501915085601f83011261248c57600080fd5b81358181111561249e5761249e612977565b8060051b91506124af8483016127f6565b8181528481019084860184860187018a10156124ca57600080fd5b600095505b838610156124f4576124e081612281565b8352600195909501949186019186016124cf565b5098975050505050505050565b60006020828403121561251357600080fd5b813561159b8161298d565b60006020828403121561253057600080fd5b815161159b8161298d565b60006020828403121561254d57600080fd5b813561ffff8116811461159b57600080fd5b60006020828403121561257157600080fd5b5035919050565b6000806040838503121561258b57600080fd5b50508035926020909101359150565b600081518084526125b2816020860160208601612889565b601f01601f19169290920160200192915050565b6000845160206125d98285838a01612889565b8551918401916125ec8184848a01612889565b8554920191600090600181811c908083168061260957607f831692505b85831081141561262757634e487b7160e01b85526022600452602485fd5b80801561263b576001811461264c57612679565b60ff19851688528388019550612679565b60008b81526020902060005b858110156126715781548a820152908401908801612658565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bd9083018461259a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126ff578351835292840192918401916001016126e3565b50909695505050505050565b60208152600061159b602083018461259a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561281f5761281f612977565b604052919050565b6000821982111561283a5761283a61291f565b500190565b60008261284e5761284e612935565b500490565b600081600019048311821515161561286d5761286d61291f565b500290565b6000828210156128845761288461291f565b500390565b60005b838110156128a457818101518382015260200161288c565b838111156114b15750506000910152565b600181811c908216806128c957607f821691505b602082108114156128ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129045761290461291f565b5060010190565b60008261291a5761291a612935565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461168f57600080fdfea264697066735822122023a1eddc153a8cbbfa2499315d855bf485565bec63980da22cf5b1ea8902fdf264736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d54336b6d344c35736852426a5168614850756675576f476575355354656e46696955317876677a74315175772f
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063e14ca3531161007a578063e14ca3531461071b578063e985e9c514610730578063eb8d244414610779578063ec342ad014610798578063f0325549146107c1578063f2fde38b146107d657600080fd5b8063b88d4fde14610685578063c6682862146106a5578063c75e0592146106ba578063c87b56dd146106d0578063ccf2e6fe146106f0578063d5abeb011461070657600080fd5b806399f5de0c1161011357806399f5de0c146105c05780639b19251a146105d35780639f181b5e14610603578063a22cb46514610618578063a68574d314610638578063b83921a61461066557600080fd5b80636c0360eb1461054357806370a0823114610558578063715018a6146105785780638da5cb5b1461058d57806395d89b41146105ab57600080fd5b80632f5c52e1116101e857806342842e0e116101ac57806342842e0e14610480578063438b6300146104a05780634f6ccce7146104cd5780635c975abb146104ed5780636352211e1461050d5780636a323f2a1461052d57600080fd5b80632f5c52e11461040d5780632f745c591461042357806334918dfd1461044357806336e79a5a146104585780633ccfd60b1461047857600080fd5b806313faede61161023a57806313faede61461033b57806318160ddd1461035f5780631f0234d81461037457806323b872dd1461038e5780632a55205a146103ae5780632bf04304146103ed57600080fd5b8063013934b41461027757806301ffc9a71461028c57806306fdde03146102c1578063081812fc146102e3578063095ea7b31461031b575b600080fd5b61028a61028536600461255f565b6107f6565b005b34801561029857600080fd5b506102ac6102a7366004612501565b610a1a565b60405190151581526020015b60405180910390f35b3480156102cd57600080fd5b506102d6610a45565b6040516102b8919061270b565b3480156102ef57600080fd5b506103036102fe36600461255f565b610ad7565b6040516001600160a01b0390911681526020016102b8565b34801561032757600080fd5b5061028a610336366004612423565b610b6c565b34801561034757600080fd5b5061035160105481565b6040519081526020016102b8565b34801561036b57600080fd5b50600854610351565b34801561038057600080fd5b506015546102ac9060ff1681565b34801561039a57600080fd5b5061028a6103a93660046122eb565b610c82565b3480156103ba57600080fd5b506103ce6103c9366004612578565b610cb3565b604080516001600160a01b0390931683526020830191909152016102b8565b3480156103f957600080fd5b5061028a61040836600461244d565b610ce4565b34801561041957600080fd5b5061035160145481565b34801561042f57600080fd5b5061035161043e366004612423565b610d76565b34801561044f57600080fd5b5061028a610e0c565b34801561046457600080fd5b5061028a61047336600461253b565b610e53565b61028a610ef7565b34801561048c57600080fd5b5061028a61049b3660046122eb565b610f47565b3480156104ac57600080fd5b506104c06104bb36600461229d565b610f62565b6040516102b891906126c7565b3480156104d957600080fd5b506103516104e836600461255f565b611004565b3480156104f957600080fd5b506015546102ac9062010000900460ff1681565b34801561051957600080fd5b5061030361052836600461255f565b611097565b34801561053957600080fd5b5061035160125481565b34801561054f57600080fd5b506102d661110e565b34801561056457600080fd5b5061035161057336600461229d565b61119c565b34801561058457600080fd5b5061028a611223565b34801561059957600080fd5b50600a546001600160a01b0316610303565b3480156105b757600080fd5b506102d6611257565b61028a6105ce36600461255f565b611266565b3480156105df57600080fd5b506102ac6105ee36600461229d565b60166020526000908152604090205460ff1681565b34801561060f57600080fd5b50610351611318565b34801561062457600080fd5b5061028a6106333660046123e7565b611328565b34801561064457600080fd5b5061035161065336600461229d565b60176020526000908152604090205481565b34801561067157600080fd5b5061028a61068036600461244d565b6113ed565b34801561069157600080fd5b5061028a6106a0366004612327565b61147f565b3480156106b157600080fd5b506102d66114b7565b3480156106c657600080fd5b5061035160135481565b3480156106dc57600080fd5b506102d66106eb36600461255f565b6114c4565b3480156106fc57600080fd5b5061035160115481565b34801561071257600080fd5b50600c54610351565b34801561072757600080fd5b506103516115a2565b34801561073c57600080fd5b506102ac61074b3660046122b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078557600080fd5b506015546102ac90610100900460ff1681565b3480156107a457600080fd5b506107ae61271081565b60405161ffff90911681526020016102b8565b3480156107cd57600080fd5b5061028a6115b9565b3480156107e257600080fd5b5061028a6107f136600461229d565b6115f7565b60155462010000900460ff161561080c57600080fd5b3360009081526016602052604090205460ff166108705760405162461bcd60e51b815260206004820152601f60248201527f57686974656c69737420726571756972656420666f72207072652073616c650060448201526064015b60405180910390fd5b60155460ff166108d25760405162461bcd60e51b815260206004820152602760248201527f5072652073616c65206d7573742062652061637469766520746f206d696e74206044820152665646656d6d657360c81b6064820152608401610867565b601254336000908152601760205260409020546108ef9083611692565b11156109635760405162461bcd60e51b815260206004820152603e60248201527f43616e206f6e6c79206d696e74206d617850726573616c655f5646656d6d655f60448201527f4d696e7420746f6b656e7320647572696e67207468652070726573616c6500006064820152608401610867565b61096e816000612853565b34101561097a57600080fd5b336000908152601760205260409020546109949082611692565b33600090815260176020526040902055806109ae57600080fd5b601154816109bb60085490565b6109c59190612827565b11156109d057600080fd5b60015b818111610a165760006109e461169e565b90506011546109f260085490565b1015610a0357610a03335b82611831565b5080610a0e816128f0565b9150506109d3565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610a3f5750610a3f8261184b565b92915050565b606060008054610a54906128b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906128b5565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b506000908152600460205260409020546001600160a01b031690565b6000610b7782611097565b9050806001600160a01b0316836001600160a01b03161415610be55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610867565b336001600160a01b0382161480610c015750610c01813361074b565b610c735760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610867565b610c7d838361189b565b505050565b610c8c3382611909565b610ca85760405162461bcd60e51b8152600401610867906127a5565b610c7d838383611a00565b6018546000908190309061271090610ccf9061ffff1686612853565b610cd9919061283f565b915091509250929050565b600a546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161086790612770565b60005b8151811015610a1657600160166000848481518110610d3257610d32612961565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d6e816128f0565b915050610d11565b6000610d818361119c565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610867565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e365760405162461bcd60e51b815260040161086790612770565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161086790612770565b6103e88161ffff161115610edf5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b6064820152608401610867565b6018805461ffff191661ffff92909216919091179055565b600a546001600160a01b03163314610f215760405162461bcd60e51b815260040161086790612770565b60405133904780156108fc02916000818181858888f19350505050610f4557600080fd5b565b610c7d8383836040518060200160405280600081525061147f565b60606000610f6f8361119c565b905060008167ffffffffffffffff811115610f8c57610f8c612977565b604051908082528060200260200182016040528015610fb5578160200160208202803683370190505b50905060005b82811015610ffc57610fcd8582610d76565b828281518110610fdf57610fdf612961565b602090810291909101015280610ff4816128f0565b915050610fbb565b509392505050565b600061100f60085490565b82106110725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610867565b6008828154811061108557611085612961565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a3f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610867565b6019805461111b906128b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611147906128b5565b80156111945780601f1061116957610100808354040283529160200191611194565b820191906000526020600020905b81548152906001019060200180831161117757829003601f168201915b505050505081565b60006001600160a01b0382166112075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610867565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461124d5760405162461bcd60e51b815260040161086790612770565b610f456000611bab565b606060018054610a54906128b5565b60155462010000900460ff161561127c57600080fd5b6000811161128957600080fd5b60135481111561129857600080fd5b601154816112a560085490565b6112af9190612827565b11156112ba57600080fd5b806010546112c89190612853565b3410156112d457600080fd5b60015b818111610a165760006112e861169e565b90506011546112f660085490565b101561130557611305336109fd565b5080611310816128f0565b9150506112d7565b6000611323600b5490565b905090565b6001600160a01b0382163314156113815760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610867565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114175760405162461bcd60e51b815260040161086790612770565b60005b8151811015610a165760006016600084848151811061143b5761143b612961565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611477816128f0565b91505061141a565b6114893383611909565b6114a55760405162461bcd60e51b8152600401610867906127a5565b6114b184848484611bfd565b50505050565b600f805461111b906128b5565b6000818152600260205260409020546060906001600160a01b03166115435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610867565b600061154d611c30565b9050600081511161156d576040518060200160405280600081525061159b565b8061157784611c3f565b600f60405160200161158b939291906125c6565b6040516020818303038152906040525b9392505050565b60006115ac611318565b600c546113239190612872565b600a546001600160a01b031633146115e35760405162461bcd60e51b815260040161086790612770565b6015805460ff19811660ff90911615179055565b600a546001600160a01b031633146116215760405162461bcd60e51b815260040161086790612770565b6001600160a01b0381166116865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b61168f81611bab565b50565b600061159b8284612827565b6000806116a96115a2565b116116f15760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b6044820152606401610867565b60006116fb611318565b600c546117089190612872565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c61176f919061290b565b6000818152600d60205260408120549192509061178d57508061179e565b506000818152600d60205260409020545b600d60006117ad600186612872565b815260200190815260200160002054600014156117e3576117cf600184612872565b6000838152600d6020526040902055611813565b600d60006117f2600186612872565b81526020808201929092526040908101600090812054858252600d90935220555b61181b611d3d565b50600e546118299082612827565b935050505090565b610a16828260405180602001604052806000815250611dab565b60006001600160e01b031982166380ac58cd60e01b148061187c57506001600160e01b03198216635b5e139f60e01b145b80610a3f57506301ffc9a760e01b6001600160e01b0319831614610a3f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d082611097565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b600061198d83611097565b9050806001600160a01b0316846001600160a01b031614806119c85750836001600160a01b03166119bd84610ad7565b6001600160a01b0316145b806119f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a1382611097565b6001600160a01b031614611a7b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610867565b6001600160a01b038216611add5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b611ae8838383611dde565b611af360008261189b565b6001600160a01b0383166000908152600360205260408120805460019290611b1c908490612872565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b4a908490612827565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c08848484611a00565b611c1484848484611e96565b6114b15760405162461bcd60e51b81526004016108679061271e565b606060198054610a54906128b5565b606081611c635750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8d5780611c77816128f0565b9150611c869050600a8361283f565b9150611c67565b60008167ffffffffffffffff811115611ca857611ca8612977565b6040519080825280601f01601f191660200182016040528015611cd2576020820181803683370190505b5090505b84156119f857611ce7600183612872565b9150611cf4600a8661290b565b611cff906030612827565b60f81b818381518110611d1457611d14612961565b60200101906001600160f81b031916908160001a905350611d36600a8661283f565b9450611cd6565b600080611d486115a2565b11611d905760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b6044820152606401610867565b6000611d9b600b5490565b9050611323600b80546001019055565b611db58383611fa3565b611dc26000848484611e96565b610c7d5760405162461bcd60e51b81526004016108679061271e565b6001600160a01b038316611e3957611e3481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e5c565b816001600160a01b0316836001600160a01b031614611e5c57611e5c83826120f1565b6001600160a01b038216611e7357610c7d8161218e565b826001600160a01b0316826001600160a01b031614610c7d57610c7d828261223d565b60006001600160a01b0384163b15611f9857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eda90339089908890889060040161268a565b602060405180830381600087803b158015611ef457600080fd5b505af1925050508015611f24575060408051601f3d908101601f19168201909252611f219181019061251e565b60015b611f7e573d808015611f52576040519150601f19603f3d011682016040523d82523d6000602084013e611f57565b606091505b508051611f765760405162461bcd60e51b81526004016108679061271e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119f8565b506001949350505050565b6001600160a01b038216611ff95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610867565b6000818152600260205260409020546001600160a01b03161561205e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610867565b61206a60008383611dde565b6001600160a01b0382166000908152600360205260408120805460019290612093908490612827565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016120fe8461119c565b6121089190612872565b60008381526007602052604090205490915080821461215b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121a090600190612872565b600083815260096020526040812054600880549394509092849081106121c8576121c8612961565b9060005260206000200154905080600883815481106121e9576121e9612961565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122215761222161294b565b6001900381819060005260206000200160009055905550505050565b60006122488361119c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b038116811461229857600080fd5b919050565b6000602082840312156122af57600080fd5b61159b82612281565b600080604083850312156122cb57600080fd5b6122d483612281565b91506122e260208401612281565b90509250929050565b60008060006060848603121561230057600080fd5b61230984612281565b925061231760208501612281565b9150604084013590509250925092565b6000806000806080858703121561233d57600080fd5b61234685612281565b93506020612355818701612281565b935060408601359250606086013567ffffffffffffffff8082111561237957600080fd5b818801915088601f83011261238d57600080fd5b81358181111561239f5761239f612977565b6123b1601f8201601f191685016127f6565b915080825289848285010111156123c757600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156123fa57600080fd5b61240383612281565b91506020830135801515811461241857600080fd5b809150509250929050565b6000806040838503121561243657600080fd5b61243f83612281565b946020939093013593505050565b6000602080838503121561246057600080fd5b823567ffffffffffffffff8082111561247857600080fd5b818501915085601f83011261248c57600080fd5b81358181111561249e5761249e612977565b8060051b91506124af8483016127f6565b8181528481019084860184860187018a10156124ca57600080fd5b600095505b838610156124f4576124e081612281565b8352600195909501949186019186016124cf565b5098975050505050505050565b60006020828403121561251357600080fd5b813561159b8161298d565b60006020828403121561253057600080fd5b815161159b8161298d565b60006020828403121561254d57600080fd5b813561ffff8116811461159b57600080fd5b60006020828403121561257157600080fd5b5035919050565b6000806040838503121561258b57600080fd5b50508035926020909101359150565b600081518084526125b2816020860160208601612889565b601f01601f19169290920160200192915050565b6000845160206125d98285838a01612889565b8551918401916125ec8184848a01612889565b8554920191600090600181811c908083168061260957607f831692505b85831081141561262757634e487b7160e01b85526022600452602485fd5b80801561263b576001811461264c57612679565b60ff19851688528388019550612679565b60008b81526020902060005b858110156126715781548a820152908401908801612658565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bd9083018461259a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126ff578351835292840192918401916001016126e3565b50909695505050505050565b60208152600061159b602083018461259a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561281f5761281f612977565b604052919050565b6000821982111561283a5761283a61291f565b500190565b60008261284e5761284e612935565b500490565b600081600019048311821515161561286d5761286d61291f565b500290565b6000828210156128845761288461291f565b500390565b60005b838110156128a457818101518382015260200161288c565b838111156114b15750506000910152565b600181811c908216806128c957607f821691505b602082108114156128ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129045761290461291f565b5060010190565b60008261291a5761291a612935565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461168f57600080fdfea264697066735822122023a1eddc153a8cbbfa2499315d855bf485565bec63980da22cf5b1ea8902fdf264736f6c63430008070033
Deployed Bytecode Sourcemap
62033:4774:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63097:962;;;;;;:::i;:::-;;:::i;:::-;;53107:224;;;;;;;;;;-1:-1:-1;53107:224:0;;;;;:::i;:::-;;:::i;:::-;;;8891:14:1;;8884:22;8866:41;;8854:2;8839:18;53107:224:0;;;;;;;;40999:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42558:221::-;;;;;;;;;;-1:-1:-1;42558:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7273:32:1;;;7255:51;;7243:2;7228:18;42558:221:0;7109:203:1;42081:411:0;;;;;;;;;;-1:-1:-1;42081:411:0;;;;;:::i;:::-;;:::i;62220:32::-;;;;;;;;;;;;;;;;;;;9062:25:1;;;9050:2;9035:18;62220:32:0;8918:175:1;53747:113:0;;;;;;;;;;-1:-1:-1;53835:10:0;:17;53747:113;;62432:35;;;;;;;;;;-1:-1:-1;62432:35:0;;;;;;;;43448:339;;;;;;;;;;-1:-1:-1;43448:339:0;;;;;:::i;:::-;;:::i;66154:236::-;;;;;;;;;;-1:-1:-1;66154:236:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8002:32:1;;;7984:51;;8066:2;8051:18;;8044:34;;;;7957:18;66154:236:0;7810:274:1;65399:197:0;;;;;;;;;;-1:-1:-1;65399:197:0;;;;;:::i;:::-;;:::i;62387:36::-;;;;;;;;;;;;;;;;53415:256;;;;;;;;;;-1:-1:-1;53415:256:0;;;;;:::i;:::-;;:::i;65949:91::-;;;;;;;;;;;;;:::i;66489:193::-;;;;;;;;;;-1:-1:-1;66489:193:0;;;;;:::i;:::-;;:::i;66690:114::-;;;:::i;43858:185::-;;;;;;;;;;-1:-1:-1;43858:185:0;;;;;:::i;:::-;;:::i;64592:348::-;;;;;;;;;;-1:-1:-1;64592:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53937:233::-;;;;;;;;;;-1:-1:-1;53937:233:0;;;;;:::i;:::-;;:::i;62513:26::-;;;;;;;;;;-1:-1:-1;62513:26:0;;;;;;;;;;;40693:239;;;;;;;;;;-1:-1:-1;40693:239:0;;;;;:::i;:::-;;:::i;62294:45::-;;;;;;;;;;;;;;;;62776:94;;;;;;;;;;;;;:::i;40423:208::-;;;;;;;;;;-1:-1:-1;40423:208:0;;;;;:::i;:::-;;:::i;19849:94::-;;;;;;;;;;;;;:::i;19198:87::-;;;;;;;;;;-1:-1:-1;19271:6:0;;-1:-1:-1;;;;;19271:6:0;19198:87;;41168:104;;;;;;;;;;;;;:::i;64069:515::-;;;;;;:::i;:::-;;:::i;62546:41::-;;;;;;;;;;-1:-1:-1;62546:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;5081:99;;;;;;;;;;;;;:::i;42851:295::-;;;;;;;;;;-1:-1:-1;42851:295:0;;;;;:::i;:::-;;:::i;62594:51::-;;;;;;;;;;-1:-1:-1;62594:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;65604:227;;;;;;;;;;-1:-1:-1;65604:227:0;;;;;:::i;:::-;;:::i;44114:328::-;;;;;;;;;;-1:-1:-1;44114:328:0;;;;;:::i;:::-;;:::i;62178:37::-;;;;;;;;;;;;;:::i;62344:38::-;;;;;;;;;;;;;;;;64948:423;;;;;;;;;;-1:-1:-1;64948:423:0;;;;;:::i;:::-;;:::i;62257:32::-;;;;;;;;;;;;;;;;4903:87;;;;;;;;;;-1:-1:-1;4972:10:0;;4903:87;;5286:113;;;;;;;;;;;;;:::i;43217:164::-;;;;;;;;;;-1:-1:-1;43217:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43338:25:0;;;43314:4;43338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43217:164;62474:32;;;;;;;;;;-1:-1:-1;62474:32:0;;;;;;;;;;;62720:35;;;;;;;;;;;;62750:5;62720:35;;;;;18659:6:1;18647:19;;;18629:38;;18617:2;18602:18;62720:35:0;18485:188:1;65841:100:0;;;;;;;;;;;;;:::i;20098:192::-;;;;;;;;;;-1:-1:-1;20098:192:0;;;;;:::i;:::-;;:::i;63097:962::-;63190:6;;;;;;;63189:7;63181:16;;;;;;63222:10;63212:21;;;;:9;:21;;;;;;;;63204:65;;;;-1:-1:-1;;;63204:65:0;;18327:2:1;63204:65:0;;;18309:21:1;18366:2;18346:18;;;18339:30;18405:33;18385:18;;;18378:61;18456:18;;63204:65:0;;;;;;;;;63284:15;;;;63276:67;;;;-1:-1:-1;;;63276:67:0;;17088:2:1;63276:67:0;;;17070:21:1;17127:2;17107:18;;;17100:30;17166:34;17146:18;;;17139:62;-1:-1:-1;;;17217:18:1;;;17210:37;17264:19;;63276:67:0;16886:403:1;63276:67:0;63437:26;;63375:10;63358:28;;;;:16;:28;;;;;;:58;;63391:24;63358:32;:58::i;:::-;:105;;63350:193;;;;-1:-1:-1;;;63350:193:0;;11119:2:1;63350:193:0;;;11101:21:1;11158:2;11138:18;;;11131:30;11197:34;11177:18;;;11170:62;11268:32;11248:18;;;11241:60;11318:19;;63350:193:0;10917:426:1;63350:193:0;63571:28;63575:24;63571:1;:28;:::i;:::-;63558:9;:41;;63550:50;;;;;;63663:10;63646:28;;;;:16;:28;;;;;;:82;;63693:24;63646:32;:82::i;:::-;63632:10;63615:28;;;;:16;:28;;;;;:113;63743:28;63735:37;;;;;;63831:9;;63803:24;63787:13;53835:10;:17;;53747:113;63787:13;:40;;;;:::i;:::-;:53;;63779:62;;;;;;63867:1;63850:204;63875:24;63870:1;:29;63850:204;;63917:17;63937:11;:9;:11::i;:::-;63917:31;;63976:9;;63960:13;53835:10;:17;;53747:113;63960:13;:25;63956:92;;;64006:34;18066:10;64016:12;64030:9;64006;:34::i;:::-;-1:-1:-1;63901:3:0;;;;:::i;:::-;;;;63850:204;;;;63097:962;:::o;53107:224::-;53209:4;-1:-1:-1;;;;;;53233:50:0;;-1:-1:-1;;;53233:50:0;;:90;;;53287:36;53311:11;53287:23;:36::i;:::-;53226:97;53107:224;-1:-1:-1;;53107:224:0:o;40999:100::-;41053:13;41086:5;41079:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40999:100;:::o;42558:221::-;42634:7;46041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46041:16:0;42654:73;;;;-1:-1:-1;;;42654:73:0;;15086:2:1;42654:73:0;;;15068:21:1;15125:2;15105:18;;;15098:30;15164:34;15144:18;;;15137:62;-1:-1:-1;;;15215:18:1;;;15208:42;15267:19;;42654:73:0;14884:408:1;42654:73:0;-1:-1:-1;42747:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42747:24:0;;42558:221::o;42081:411::-;42162:13;42178:23;42193:7;42178:14;:23::i;:::-;42162:39;;42226:5;-1:-1:-1;;;;;42220:11:0;:2;-1:-1:-1;;;;;42220:11:0;;;42212:57;;;;-1:-1:-1;;;42212:57:0;;16686:2:1;42212:57:0;;;16668:21:1;16725:2;16705:18;;;16698:30;16764:34;16744:18;;;16737:62;-1:-1:-1;;;16815:18:1;;;16808:31;16856:19;;42212:57:0;16484:397:1;42212:57:0;18066:10;-1:-1:-1;;;;;42304:21:0;;;;:62;;-1:-1:-1;42329:37:0;42346:5;18066:10;43217:164;:::i;42329:37::-;42282:168;;;;-1:-1:-1;;;42282:168:0;;13479:2:1;42282:168:0;;;13461:21:1;13518:2;13498:18;;;13491:30;13557:34;13537:18;;;13530:62;13628:26;13608:18;;;13601:54;13672:19;;42282:168:0;13277:420:1;42282:168:0;42463:21;42472:2;42476:7;42463:8;:21::i;:::-;42151:341;42081:411;;:::o;43448:339::-;43643:41;18066:10;43676:7;43643:18;:41::i;:::-;43635:103;;;;-1:-1:-1;;;43635:103:0;;;;;;;:::i;:::-;43751:28;43761:4;43767:2;43771:7;43751:9;:28::i;66154:236::-;66366:7;;66272:16;;;;66345:4;;62750:5;;66353:20;;66352:29;66366:7;66353:10;:20;:::i;:::-;66352:29;;;;:::i;:::-;66329:53;;;;66154:236;;;;;:::o;65399:197::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;65490:9:::1;65485:104;65509:9;:16;65505:1;:20;65485:104;;;65573:4;65547:9;:23;65557:9;65567:1;65557:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;65547:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;65547:23:0;:30;;-1:-1:-1;;65547:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65527:3;::::1;::::0;::::1;:::i;:::-;;;;65485:104;;53415:256:::0;53512:7;53548:23;53565:5;53548:16;:23::i;:::-;53540:5;:31;53532:87;;;;-1:-1:-1;;;53532:87:0;;9524:2:1;53532:87:0;;;9506:21:1;9563:2;9543:18;;;9536:30;9602:34;9582:18;;;9575:62;-1:-1:-1;;;9653:18:1;;;9646:41;9704:19;;53532:87:0;9322:407:1;53532:87:0;-1:-1:-1;;;;;;53637:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;53415:256::o;65949:91::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;66020:12:::1;::::0;;-1:-1:-1;;66004:28:0;::::1;66020:12;::::0;;;::::1;;;66019:13;66004:28:::0;;::::1;;::::0;;65949:91::o;66489:193::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;66599:4:::1;66587:8;:16;;;;66562:81;;;::::0;-1:-1:-1;;;66562:81:0;;13075:2:1;66562:81:0::1;::::0;::::1;13057:21:1::0;13114:2;13094:18;;;13087:30;13153:34;13133:18;;;13126:62;-1:-1:-1;;;13204:18:1;;;13197:33;13247:19;;66562:81:0::1;12873:399:1::0;66562:81:0::1;66656:7;:18:::0;;-1:-1:-1;;66656:18:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;66489:193::o;66690:114::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;66750:47:::1;::::0;66758:10:::1;::::0;66775:21:::1;66750:47:::0;::::1;;;::::0;::::1;::::0;;;66775:21;66758:10;66750:47;::::1;;;;;;66742:56;;;::::0;::::1;;66690:114::o:0;43858:185::-;43996:39;44013:4;44019:2;44023:7;43996:39;;;;;;;;;;;;:16;:39::i;64592:348::-;64667:16;64695:23;64721:17;64731:6;64721:9;:17::i;:::-;64695:43;;64745:25;64787:15;64773:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64773:30:0;;64745:58;;64815:9;64810:103;64830:15;64826:1;:19;64810:103;;;64875:30;64895:6;64903:1;64875:19;:30::i;:::-;64861:8;64870:1;64861:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;64847:3;;;;:::i;:::-;;;;64810:103;;;-1:-1:-1;64926:8:0;64592:348;-1:-1:-1;;;64592:348:0:o;53937:233::-;54012:7;54048:30;53835:10;:17;;53747:113;54048:30;54040:5;:38;54032:95;;;;-1:-1:-1;;;54032:95:0;;17914:2:1;54032:95:0;;;17896:21:1;17953:2;17933:18;;;17926:30;17992:34;17972:18;;;17965:62;-1:-1:-1;;;18043:18:1;;;18036:42;18095:19;;54032:95:0;17712:408:1;54032:95:0;54145:10;54156:5;54145:17;;;;;;;;:::i;:::-;;;;;;;;;54138:24;;53937:233;;;:::o;40693:239::-;40765:7;40801:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40801:16:0;40836:19;40828:73;;;;-1:-1:-1;;;40828:73:0;;14315:2:1;40828:73:0;;;14297:21:1;14354:2;14334:18;;;14327:30;14393:34;14373:18;;;14366:62;-1:-1:-1;;;14444:18:1;;;14437:39;14493:19;;40828:73:0;14113:405:1;62776:94:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40423:208::-;40495:7;-1:-1:-1;;;;;40523:19:0;;40515:74;;;;-1:-1:-1;;;40515:74:0;;13904:2:1;40515:74:0;;;13886:21:1;13943:2;13923:18;;;13916:30;13982:34;13962:18;;;13955:62;-1:-1:-1;;;14033:18:1;;;14026:40;14083:19;;40515:74:0;13702:406:1;40515:74:0;-1:-1:-1;;;;;;40607:16:0;;;;;:9;:16;;;;;;;40423:208::o;19849:94::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;19914:21:::1;19932:1;19914:9;:21::i;41168:104::-:0;41224:13;41257:7;41250:14;;;;;:::i;64069:515::-;64158:6;;;;;;;64157:7;64149:16;;;;;;64200:1;64180:17;:21;64172:30;;;;;;64238:19;;64217:17;:40;;64209:49;;;;;;64310:9;;64289:17;64273:13;53835:10;:17;;53747:113;64273:13;:33;;;;:::i;:::-;:46;;64265:55;;;;;;64355:17;64348:4;;:24;;;;:::i;:::-;64335:9;:37;;64327:46;;;;;;64399:1;64382:197;64407:17;64402:1;:22;64382:197;;64442:17;64462:11;:9;:11::i;:::-;64442:31;;64501:9;;64485:13;53835:10;:17;;53747:113;64485:13;:25;64481:92;;;64531:34;18066:10;64541:12;17986:98;64531:34;-1:-1:-1;64426:3:0;;;;:::i;:::-;;;;64382:197;;5081:99;5124:7;5151:21;:11;3646:14;;3554:114;5151:21;5144:28;;5081:99;:::o;42851:295::-;-1:-1:-1;;;;;42954:24:0;;18066:10;42954:24;;42946:62;;;;-1:-1:-1;;;42946:62:0;;11955:2:1;42946:62:0;;;11937:21:1;11994:2;11974:18;;;11967:30;12033:27;12013:18;;;12006:55;12078:18;;42946:62:0;11753:349:1;42946:62:0;18066:10;43021:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43021:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43021:53:0;;;;;;;;;;43090:48;;8866:41:1;;;43021:42:0;;18066:10;43090:48;;8839:18:1;43090:48:0;;;;;;;42851:295;;:::o;65604:227::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;65724:9:::1;65719:105;65743:9;:16;65739:1;:20;65719:105;;;65807:5;65781:9;:23;65791:9;65801:1;65791:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;65781:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;65781:23:0;:31;;-1:-1:-1;;65781:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65761:3;::::1;::::0;::::1;:::i;:::-;;;;65719:105;;44114:328:::0;44289:41;18066:10;44322:7;44289:18;:41::i;:::-;44281:103;;;;-1:-1:-1;;;44281:103:0;;;;;;;:::i;:::-;44395:39;44409:4;44415:2;44419:7;44428:5;44395:13;:39::i;:::-;44114:328;;;;:::o;62178:37::-;;;;;;;:::i;64948:423::-;46017:4;46041:16;;;:7;:16;;;;;;65046:13;;-1:-1:-1;;;;;46041:16:0;65071:97;;;;-1:-1:-1;;;65071:97:0;;16270:2:1;65071:97:0;;;16252:21:1;16309:2;16289:18;;;16282:30;16348:34;16328:18;;;16321:62;-1:-1:-1;;;16399:18:1;;;16392:45;16454:19;;65071:97:0;16068:411:1;65071:97:0;65177:28;65208:10;:8;:10::i;:::-;65177:41;;65263:1;65238:14;65232:28;:32;:133;;;;;;;;;;;;;;;;;65300:14;65316:18;:7;:16;:18::i;:::-;65336:13;65283:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65232:133;65225:140;64948:423;-1:-1:-1;;;64948:423:0:o;5286:113::-;5338:7;5379:12;:10;:12::i;:::-;4972:10;;5365:26;;;;:::i;65841:100::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;65918:15:::1;::::0;;-1:-1:-1;;65899:34:0;::::1;65918:15;::::0;;::::1;65917:16;65899:34;::::0;;65841:100::o;20098:192::-;19271:6;;-1:-1:-1;;;;;19271:6:0;18066:10;19418:23;19410:68;;;;-1:-1:-1;;;19410:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20187:22:0;::::1;20179:73;;;::::0;-1:-1:-1;;;20179:73:0;;10355:2:1;20179:73:0::1;::::0;::::1;10337:21:1::0;10394:2;10374:18;;;10367:30;10433:34;10413:18;;;10406:62;-1:-1:-1;;;10484:18:1;;;10477:36;10530:19;;20179:73:0::1;10153:402:1::0;20179:73:0::1;20263:19;20273:8;20263:9;:19::i;:::-;20098:192:::0;:::o;11126:98::-;11184:7;11211:5;11215:1;11211;:5;:::i;7067:1262::-;7134:7;5843:1;5819:21;:19;:21::i;:::-;:25;5811:62;;;;-1:-1:-1;;;5811:62:0;;12309:2:1;5811:62:0;;;12291:21:1;12348:2;12328:18;;;12321:30;-1:-1:-1;;;12367:18:1;;;12360:54;12431:18;;5811:62:0;12107:348:1;5811:62:0;7154:16:::1;7187:12;:10;:12::i;:::-;4972:10:::0;;7173:26:::1;;;;:::i;:::-;7259:195;::::0;-1:-1:-1;;7294:10:0::1;5353:2:1::0;5349:15;;;5345:24;;7259:195:0::1;::::0;::::1;5333:37:1::0;7323:14:0::1;5404:15:1::0;;5400:24;5386:12;;;5379:46;7356:16:0::1;5441:12:1::0;;;5434:28;7391:14:0::1;5478:12:1::0;;;5471:28;7424:15:0::1;5515:13:1::0;;;5508:29;7154:45:0;;-1:-1:-1;7210:14:0::1;::::0;7154:45;;5553:13:1;;7259:195:0::1;;;;;;;;;;;;7235:230;;;;;;7227:239;;:250;;;;:::i;:::-;7490:13;7522:19:::0;;;:11:::1;:19;::::0;;;;;7210:267;;-1:-1:-1;7490:13:0;7518:304:::1;;-1:-1:-1::0;7667:6:0;7518:304:::1;;;-1:-1:-1::0;7791:19:0::1;::::0;;;:11:::1;:19;::::0;;;;;7518:304:::1;7899:11;:25;7911:12;7922:1;7911:8:::0;:12:::1;:::i;:::-;7899:25;;;;;;;;;;;;7928:1;7899:30;7895:331;;;8033:12;8044:1;8033:8:::0;:12:::1;:::i;:::-;8011:19;::::0;;;:11:::1;:19;::::0;;;;:34;7895:331:::1;;;8189:11;:25;8201:12;8212:1;8201:8:::0;:12:::1;:::i;:::-;8189:25:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;8189:25:0;;;;8167:19;;;:11:::1;:19:::0;;;;:47;7895:331:::1;8267:17;:15;:17::i;:::-;-1:-1:-1::0;8312:9:0::1;::::0;8304:17:::1;::::0;:5;:17:::1;:::i;:::-;8297:24;;;;;7067:1262:::0;:::o;46936:110::-;47012:26;47022:2;47026:7;47012:26;;;;;;;;;;;;:9;:26::i;40054:305::-;40156:4;-1:-1:-1;;;;;;40193:40:0;;-1:-1:-1;;;40193:40:0;;:105;;-1:-1:-1;;;;;;;40250:48:0;;-1:-1:-1;;;40250:48:0;40193:105;:158;;;-1:-1:-1;;;;;;;;;;32142:40:0;;;40315:36;32033:157;49934:174;50009:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50009:29:0;-1:-1:-1;;;;;50009:29:0;;;;;;;;:24;;50063:23;50009:24;50063:14;:23::i;:::-;-1:-1:-1;;;;;50054:46:0;;;;;;;;;;;49934:174;;:::o;46246:348::-;46339:4;46041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46041:16:0;46356:73;;;;-1:-1:-1;;;46356:73:0;;12662:2:1;46356:73:0;;;12644:21:1;12701:2;12681:18;;;12674:30;12740:34;12720:18;;;12713:62;-1:-1:-1;;;12791:18:1;;;12784:42;12843:19;;46356:73:0;12460:408:1;46356:73:0;46440:13;46456:23;46471:7;46456:14;:23::i;:::-;46440:39;;46509:5;-1:-1:-1;;;;;46498:16:0;:7;-1:-1:-1;;;;;46498:16:0;;:51;;;;46542:7;-1:-1:-1;;;;;46518:31:0;:20;46530:7;46518:11;:20::i;:::-;-1:-1:-1;;;;;46518:31:0;;46498:51;:87;;;-1:-1:-1;;;;;;43338:25:0;;;43314:4;43338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46553:32;46490:96;46246:348;-1:-1:-1;;;;46246:348:0:o;49238:578::-;49397:4;-1:-1:-1;;;;;49370:31:0;:23;49385:7;49370:14;:23::i;:::-;-1:-1:-1;;;;;49370:31:0;;49362:85;;;;-1:-1:-1;;;49362:85:0;;15860:2:1;49362:85:0;;;15842:21:1;15899:2;15879:18;;;15872:30;15938:34;15918:18;;;15911:62;-1:-1:-1;;;15989:18:1;;;15982:39;16038:19;;49362:85:0;15658:405:1;49362:85:0;-1:-1:-1;;;;;49466:16:0;;49458:65;;;;-1:-1:-1;;;49458:65:0;;11550:2:1;49458:65:0;;;11532:21:1;11589:2;11569:18;;;11562:30;11628:34;11608:18;;;11601:62;-1:-1:-1;;;11679:18:1;;;11672:34;11723:19;;49458:65:0;11348:400:1;49458:65:0;49536:39;49557:4;49563:2;49567:7;49536:20;:39::i;:::-;49640:29;49657:1;49661:7;49640:8;:29::i;:::-;-1:-1:-1;;;;;49682:15:0;;;;;;:9;:15;;;;;:20;;49701:1;;49682:15;:20;;49701:1;;49682:20;:::i;:::-;;;;-1:-1:-1;;;;;;;49713:13:0;;;;;;:9;:13;;;;;:18;;49730:1;;49713:13;:18;;49730:1;;49713:18;:::i;:::-;;;;-1:-1:-1;;49742:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49742:21:0;-1:-1:-1;;;;;49742:21:0;;;;;;;;;49781:27;;49742:16;;49781:27;;;;;;;49238:578;;;:::o;20298:173::-;20373:6;;;-1:-1:-1;;;;;20390:17:0;;;-1:-1:-1;;;;;;20390:17:0;;;;;;;20423:40;;20373:6;;;20390:17;20373:6;;20423:40;;20354:16;;20423:40;20343:128;20298:173;:::o;45324:315::-;45481:28;45491:4;45497:2;45501:7;45481:9;:28::i;:::-;45528:48;45551:4;45557:2;45561:7;45570:5;45528:22;:48::i;:::-;45520:111;;;;-1:-1:-1;;;45520:111:0;;;;;;;:::i;62987:102::-;63047:13;63076:7;63069:14;;;;;:::i;15602:723::-;15658:13;15879:10;15875:53;;-1:-1:-1;;15906:10:0;;;;;;;;;;;;-1:-1:-1;;;15906:10:0;;;;;15602:723::o;15875:53::-;15953:5;15938:12;15994:78;16001:9;;15994:78;;16027:8;;;;:::i;:::-;;-1:-1:-1;16050:10:0;;-1:-1:-1;16058:2:0;16050:10;;:::i;:::-;;;15994:78;;;16082:19;16114:6;16104:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16104:17:0;;16082:39;;16132:154;16139:10;;16132:154;;16166:11;16176:1;16166:11;;:::i;:::-;;-1:-1:-1;16235:10:0;16243:2;16235:5;:10;:::i;:::-;16222:24;;:2;:24;:::i;:::-;16209:39;;16192:6;16199;16192:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16192:56:0;;;;;;;;-1:-1:-1;16263:11:0;16272:2;16263:11;;:::i;:::-;;;16132:154;;5509:192;5575:7;5843:1;5819:21;:19;:21::i;:::-;:25;5811:62;;;;-1:-1:-1;;;5811:62:0;;12309:2:1;5811:62:0;;;12291:21:1;12348:2;12328:18;;;12321:30;-1:-1:-1;;;12367:18:1;;;12360:54;12431:18;;5811:62:0;12107:348:1;5811:62:0;5595:13:::1;5611:21;:11;3646:14:::0;;3554:114;5611:21:::1;5595:37;;5645:23;:11;3765:19:::0;;3783:1;3765:19;;;3676:127;47273:321;47403:18;47409:2;47413:7;47403:5;:18::i;:::-;47454:54;47485:1;47489:2;47493:7;47502:5;47454:22;:54::i;:::-;47432:154;;;;-1:-1:-1;;;47432:154:0;;;;;;;:::i;54783:589::-;-1:-1:-1;;;;;54989:18:0;;54985:187;;55024:40;55056:7;56199:10;:17;;56172:24;;;;:15;:24;;;;;:44;;;56227:24;;;;;;;;;;;;56095:164;55024:40;54985:187;;;55094:2;-1:-1:-1;;;;;55086:10:0;:4;-1:-1:-1;;;;;55086:10:0;;55082:90;;55113:47;55146:4;55152:7;55113:32;:47::i;:::-;-1:-1:-1;;;;;55186:16:0;;55182:183;;55219:45;55256:7;55219:36;:45::i;55182:183::-;55292:4;-1:-1:-1;;;;;55286:10:0;:2;-1:-1:-1;;;;;55286:10:0;;55282:83;;55313:40;55341:2;55345:7;55313:27;:40::i;50673:799::-;50828:4;-1:-1:-1;;;;;50849:13:0;;21567:20;21615:8;50845:620;;50885:72;;-1:-1:-1;;;50885:72:0;;-1:-1:-1;;;;;50885:36:0;;;;;:72;;18066:10;;50936:4;;50942:7;;50951:5;;50885:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50885:72:0;;;;;;;;-1:-1:-1;;50885:72:0;;;;;;;;;;;;:::i;:::-;;;50881:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51127:13:0;;51123:272;;51170:60;;-1:-1:-1;;;51170:60:0;;;;;;;:::i;51123:272::-;51345:6;51339:13;51330:6;51326:2;51322:15;51315:38;50881:529;-1:-1:-1;;;;;;51008:51:0;-1:-1:-1;;;51008:51:0;;-1:-1:-1;51001:58:0;;50845:620;-1:-1:-1;51449:4:0;50673:799;;;;;;:::o;47930:382::-;-1:-1:-1;;;;;48010:16:0;;48002:61;;;;-1:-1:-1;;;48002:61:0;;14725:2:1;48002:61:0;;;14707:21:1;;;14744:18;;;14737:30;14803:34;14783:18;;;14776:62;14855:18;;48002:61:0;14523:356:1;48002:61:0;46017:4;46041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46041:16:0;:30;48074:58;;;;-1:-1:-1;;;48074:58:0;;10762:2:1;48074:58:0;;;10744:21:1;10801:2;10781:18;;;10774:30;10840;10820:18;;;10813:58;10888:18;;48074:58:0;10560:352:1;48074:58:0;48145:45;48174:1;48178:2;48182:7;48145:20;:45::i;:::-;-1:-1:-1;;;;;48203:13:0;;;;;;:9;:13;;;;;:18;;48220:1;;48203:13;:18;;48220:1;;48203:18;:::i;:::-;;;;-1:-1:-1;;48232:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48232:21:0;-1:-1:-1;;;;;48232:21:0;;;;;;;;48271:33;;48232:16;;;48271:33;;48232:16;;48271:33;47930:382;;:::o;56886:988::-;57152:22;57202:1;57177:22;57194:4;57177:16;:22::i;:::-;:26;;;;:::i;:::-;57214:18;57235:26;;;:17;:26;;;;;;57152:51;;-1:-1:-1;57368:28:0;;;57364:328;;-1:-1:-1;;;;;57435:18:0;;57413:19;57435:18;;;:12;:18;;;;;;;;:34;;;;;;;;;57486:30;;;;;;:44;;;57603:30;;:17;:30;;;;;:43;;;57364:328;-1:-1:-1;57788:26:0;;;;:17;:26;;;;;;;;57781:33;;;-1:-1:-1;;;;;57832:18:0;;;;;:12;:18;;;;;:34;;;;;;;57825:41;56886:988::o;58169:1079::-;58447:10;:17;58422:22;;58447:21;;58467:1;;58447:21;:::i;:::-;58479:18;58500:24;;;:15;:24;;;;;;58873:10;:26;;58422:46;;-1:-1:-1;58500:24:0;;58422:46;;58873:26;;;;;;:::i;:::-;;;;;;;;;58851:48;;58937:11;58912:10;58923;58912:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;59017:28;;;:15;:28;;;;;;;:41;;;59189:24;;;;;59182:31;59224:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;58240:1008;;;58169:1079;:::o;55673:221::-;55758:14;55775:20;55792:2;55775:16;:20::i;:::-;-1:-1:-1;;;;;55806:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;55851:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;55673:221:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:980::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:2;1262:38;1296:2;1285:9;1281:18;1262:38;:::i;:::-;1252:48;;1347:2;1336:9;1332:18;1319:32;1309:42;;1402:2;1391:9;1387:18;1374:32;1425:18;1466:2;1458:6;1455:14;1452:34;;;1482:1;1479;1472:12;1452:34;1520:6;1509:9;1505:22;1495:32;;1565:7;1558:4;1554:2;1550:13;1546:27;1536:55;;1587:1;1584;1577:12;1536:55;1623:2;1610:16;1645:2;1641;1638:10;1635:36;;;1651:18;;:::i;:::-;1693:53;1736:2;1717:13;;-1:-1:-1;;1713:27:1;1709:36;;1693:53;:::i;:::-;1680:66;;1769:2;1762:5;1755:17;1809:7;1804:2;1799;1795;1791:11;1787:20;1784:33;1781:53;;;1830:1;1827;1820:12;1781:53;1885:2;1880;1876;1872:11;1867:2;1860:5;1856:14;1843:45;1929:1;1924:2;1919;1912:5;1908:14;1904:23;1897:34;;1950:5;1940:15;;;;;981:980;;;;;;;:::o;1966:347::-;2031:6;2039;2092:2;2080:9;2071:7;2067:23;2063:32;2060:52;;;2108:1;2105;2098:12;2060:52;2131:29;2150:9;2131:29;:::i;:::-;2121:39;;2210:2;2199:9;2195:18;2182:32;2257:5;2250:13;2243:21;2236:5;2233:32;2223:60;;2279:1;2276;2269:12;2223:60;2302:5;2292:15;;;1966:347;;;;;:::o;2318:254::-;2386:6;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:29;2505:9;2486:29;:::i;:::-;2476:39;2562:2;2547:18;;;;2534:32;;-1:-1:-1;;;2318:254:1:o;2577:963::-;2661:6;2692:2;2735;2723:9;2714:7;2710:23;2706:32;2703:52;;;2751:1;2748;2741:12;2703:52;2791:9;2778:23;2820:18;2861:2;2853:6;2850:14;2847:34;;;2877:1;2874;2867:12;2847:34;2915:6;2904:9;2900:22;2890:32;;2960:7;2953:4;2949:2;2945:13;2941:27;2931:55;;2982:1;2979;2972:12;2931:55;3018:2;3005:16;3040:2;3036;3033:10;3030:36;;;3046:18;;:::i;:::-;3092:2;3089:1;3085:10;3075:20;;3115:28;3139:2;3135;3131:11;3115:28;:::i;:::-;3177:15;;;3208:12;;;;3240:11;;;3270;;;3266:20;;3263:33;-1:-1:-1;3260:53:1;;;3309:1;3306;3299:12;3260:53;3331:1;3322:10;;3341:169;3355:2;3352:1;3349:9;3341:169;;;3412:23;3431:3;3412:23;:::i;:::-;3400:36;;3373:1;3366:9;;;;;3456:12;;;;3488;;3341:169;;;-1:-1:-1;3529:5:1;2577:963;-1:-1:-1;;;;;;;;2577:963:1:o;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:272::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4265:6;4258:5;4254:18;4247:5;4244:29;4234:57;;4287:1;4284;4277:12;4326:180;4385:6;4438:2;4426:9;4417:7;4413:23;4409:32;4406:52;;;4454:1;4451;4444:12;4406:52;-1:-1:-1;4477:23:1;;4326:180;-1:-1:-1;4326:180:1:o;4511:248::-;4579:6;4587;4640:2;4628:9;4619:7;4615:23;4611:32;4608:52;;;4656:1;4653;4646:12;4608:52;-1:-1:-1;;4679:23:1;;;4749:2;4734:18;;;4721:32;;-1:-1:-1;4511:248:1:o;4764:257::-;4805:3;4843:5;4837:12;4870:6;4865:3;4858:19;4886:63;4942:6;4935:4;4930:3;4926:14;4919:4;4912:5;4908:16;4886:63;:::i;:::-;5003:2;4982:15;-1:-1:-1;;4978:29:1;4969:39;;;;5010:4;4965:50;;4764:257;-1:-1:-1;;4764:257:1:o;5577:1527::-;5801:3;5839:6;5833:13;5865:4;5878:51;5922:6;5917:3;5912:2;5904:6;5900:15;5878:51;:::i;:::-;5992:13;;5951:16;;;;6014:55;5992:13;5951:16;6036:15;;;6014:55;:::i;:::-;6158:13;;6091:20;;;6131:1;;6218;6240:18;;;;6293;;;;6320:93;;6398:4;6388:8;6384:19;6372:31;;6320:93;6461:2;6451:8;6448:16;6428:18;6425:40;6422:167;;;-1:-1:-1;;;6488:33:1;;6544:4;6541:1;6534:15;6574:4;6495:3;6562:17;6422:167;6605:18;6632:110;;;;6756:1;6751:328;;;;6598:481;;6632:110;-1:-1:-1;;6667:24:1;;6653:39;;6712:20;;;;-1:-1:-1;6632:110:1;;6751:328;19213:1;19206:14;;;19250:4;19237:18;;6846:1;6860:169;6874:8;6871:1;6868:15;6860:169;;;6956:14;;6941:13;;;6934:37;6999:16;;;;6891:10;;6860:169;;;6864:3;;7060:8;7053:5;7049:20;7042:27;;6598:481;-1:-1:-1;7095:3:1;;5577:1527;-1:-1:-1;;;;;;;;;;;5577:1527:1:o;7317:488::-;-1:-1:-1;;;;;7586:15:1;;;7568:34;;7638:15;;7633:2;7618:18;;7611:43;7685:2;7670:18;;7663:34;;;7733:3;7728:2;7713:18;;7706:31;;;7511:4;;7754:45;;7779:19;;7771:6;7754:45;:::i;:::-;7746:53;7317:488;-1:-1:-1;;;;;;7317:488:1:o;8089:632::-;8260:2;8312:21;;;8382:13;;8285:18;;;8404:22;;;8231:4;;8260:2;8483:15;;;;8457:2;8442:18;;;8231:4;8526:169;8540:6;8537:1;8534:13;8526:169;;;8601:13;;8589:26;;8670:15;;;;8635:12;;;;8562:1;8555:9;8526:169;;;-1:-1:-1;8712:3:1;;8089:632;-1:-1:-1;;;;;;8089:632:1:o;9098:219::-;9247:2;9236:9;9229:21;9210:4;9267:44;9307:2;9296:9;9292:18;9284:6;9267:44;:::i;9734:414::-;9936:2;9918:21;;;9975:2;9955:18;;;9948:30;10014:34;10009:2;9994:18;;9987:62;-1:-1:-1;;;10080:2:1;10065:18;;10058:48;10138:3;10123:19;;9734:414::o;15297:356::-;15499:2;15481:21;;;15518:18;;;15511:30;15577:34;15572:2;15557:18;;15550:62;15644:2;15629:18;;15297:356::o;17294:413::-;17496:2;17478:21;;;17535:2;17515:18;;;17508:30;17574:34;17569:2;17554:18;;17547:62;-1:-1:-1;;;17640:2:1;17625:18;;17618:47;17697:3;17682:19;;17294:413::o;18860:275::-;18931:2;18925:9;18996:2;18977:13;;-1:-1:-1;;18973:27:1;18961:40;;19031:18;19016:34;;19052:22;;;19013:62;19010:88;;;19078:18;;:::i;:::-;19114:2;19107:22;18860:275;;-1:-1:-1;18860:275:1:o;19266:128::-;19306:3;19337:1;19333:6;19330:1;19327:13;19324:39;;;19343:18;;:::i;:::-;-1:-1:-1;19379:9:1;;19266:128::o;19399:120::-;19439:1;19465;19455:35;;19470:18;;:::i;:::-;-1:-1:-1;19504:9:1;;19399:120::o;19524:168::-;19564:7;19630:1;19626;19622:6;19618:14;19615:1;19612:21;19607:1;19600:9;19593:17;19589:45;19586:71;;;19637:18;;:::i;:::-;-1:-1:-1;19677:9:1;;19524:168::o;19697:125::-;19737:4;19765:1;19762;19759:8;19756:34;;;19770:18;;:::i;:::-;-1:-1:-1;19807:9:1;;19697:125::o;19827:258::-;19899:1;19909:113;19923:6;19920:1;19917:13;19909:113;;;19999:11;;;19993:18;19980:11;;;19973:39;19945:2;19938:10;19909:113;;;20040:6;20037:1;20034:13;20031:48;;;-1:-1:-1;;20075:1:1;20057:16;;20050:27;19827:258::o;20090:380::-;20169:1;20165:12;;;;20212;;;20233:61;;20287:4;20279:6;20275:17;20265:27;;20233:61;20340:2;20332:6;20329:14;20309:18;20306:38;20303:161;;;20386:10;20381:3;20377:20;20374:1;20367:31;20421:4;20418:1;20411:15;20449:4;20446:1;20439:15;20303:161;;20090:380;;;:::o;20475:135::-;20514:3;-1:-1:-1;;20535:17:1;;20532:43;;;20555:18;;:::i;:::-;-1:-1:-1;20602:1:1;20591:13;;20475:135::o;20615:112::-;20647:1;20673;20663:35;;20678:18;;:::i;:::-;-1:-1:-1;20712:9:1;;20615:112::o;20732:127::-;20793:10;20788:3;20784:20;20781:1;20774:31;20824:4;20821:1;20814:15;20848:4;20845:1;20838:15;20864:127;20925:10;20920:3;20916:20;20913:1;20906:31;20956:4;20953:1;20946:15;20980:4;20977:1;20970:15;20996:127;21057:10;21052:3;21048:20;21045:1;21038:31;21088:4;21085:1;21078:15;21112:4;21109:1;21102:15;21128:127;21189:10;21184:3;21180:20;21177:1;21170:31;21220:4;21217:1;21210:15;21244:4;21241:1;21234:15;21260:127;21321:10;21316:3;21312:20;21309:1;21302:31;21352:4;21349:1;21342:15;21376:4;21373:1;21366:15;21392:131;-1:-1:-1;;;;;;21466:32:1;;21456:43;;21446:71;;21513:1;21510;21503:12
Swarm Source
ipfs://23a1eddc153a8cbbfa2499315d855bf485565bec63980da22cf5b1ea8902fdf2
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.