ERC-721
Overview
Max Total Supply
96 FLUFFYWORLD
Holders
54
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 FLUFFYWORLDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FluffyWorld
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-26 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /* * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // 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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(account); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(token, account); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } contract FluffyWorld is Ownable, ERC721A, PaymentSplitter { using ECDSA for bytes32; using Strings for uint; address private signerAddressWL; enum Step { Before, PublicSale, WhitelistSale, SoldOut, Reveal } string public baseURI; Step public sellingStep; uint private constant MAX_PUBLIC = 444; uint private constant MAX_WL = 444; uint public publicSalePrice = 0.0088 ether; mapping(address => uint) public mintedAmountNFTsperWalletWhitelistSale; mapping(address => uint) public mintedAmountNFTsperWalletPublicSale; uint public maxMintAmountPerWhitelist = 1; uint public maxAmountPerTxnPublic = 2; uint private teamLength; constructor(address[] memory _team, uint[] memory _teamShares, address _signerAddressWL, string memory _baseURI) ERC721A("Fluffy World", "FLUFFYWORLD") PaymentSplitter(_team, _teamShares) { signerAddressWL = _signerAddressWL; baseURI = _baseURI; teamLength = _team.length; } function mintForOpensea() external onlyOwner{ if(totalSupply() != 0) revert("Only one mint for deployer"); _mint(msg.sender, 1); } function publicSaleMint(uint _quantity) external payable { uint price = publicSalePrice; if(price <= 0) revert("Price is 0"); if(_quantity > maxAmountPerTxnPublic) revert("Max amount per txn exceeded"); if(sellingStep != Step.PublicSale) revert("Public Mint not live."); if(totalSupply() + _quantity > (MAX_PUBLIC)) revert("Max supply exceeded for public exceeded"); if(msg.value < price * _quantity) revert("Not enough funds"); mintedAmountNFTsperWalletPublicSale[msg.sender] += _quantity; _mint(msg.sender, _quantity); } function WLMint(uint _quantity, bytes calldata signature) external { if(sellingStep != Step.WhitelistSale) revert("WL Mint not live."); if(totalSupply() + _quantity > (MAX_PUBLIC + MAX_WL)) revert("Max supply exceeded for WL exceeded"); if(signerAddressWL != keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", bytes32(uint256(uint160(msg.sender))) ) ).recover(signature)) revert("You are not in WL whitelist"); if(mintedAmountNFTsperWalletWhitelistSale[msg.sender] + _quantity > maxMintAmountPerWhitelist) revert("Max Whitelist Sale exceeded for user"); mintedAmountNFTsperWalletWhitelistSale[msg.sender] += _quantity; _mint(msg.sender, _quantity); } function currentState() external view returns (Step, uint, uint, uint) { return (sellingStep, publicSalePrice, maxMintAmountPerWhitelist, maxAmountPerTxnPublic); } function changePublicSalePrice(uint256 new_price) external onlyOwner{ publicSalePrice = new_price; } function setBaseUri(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setStep(uint _step) external onlyOwner { sellingStep = Step(_step); } function setMaxMintPerWhitelist(uint amount) external onlyOwner{ maxMintAmountPerWhitelist = amount; } function setMaxTxnPublic(uint amount) external onlyOwner{ maxAmountPerTxnPublic = amount; } function getNumberMinted(address account) external view returns (uint256) { return _numberMinted(account); } function getNumberWLMinted(address account) external view returns (uint256) { return mintedAmountNFTsperWalletWhitelistSale[account]; } function getNumberPublicMinted(address account) external view returns (uint256) { return mintedAmountNFTsperWalletPublicSale[account]; } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); return string(abi.encodePacked(baseURI, _toString(_tokenId), ".json")); } function releaseAll() external { for(uint i = 0 ; i < teamLength ; i++) { release(payable(payee(i))); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"address","name":"_signerAddressWL","type":"address"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"WLMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"changePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"enum FluffyWorld.Step","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberPublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberWLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxAmountPerTxnPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintForOpensea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountNFTsperWalletPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountNFTsperWalletWhitelistSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum FluffyWorld.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxnPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052661f438daa060000601355600160165560026017553480156200002657600080fd5b50604051620034c4380380620034c483398101604081905262000049916200060d565b83836040518060400160405280600c81526020016b119b1d59999e4815dbdc9b1960a21b8152506040518060400160405280600b81526020016a11931551919655d3d4931160aa1b815250620000ae620000a86200023f60201b60201c565b62000243565b6003620000bc8382620007a6565b506004620000cb8282620007a6565b506001805550508051825114620001445760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001975760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200013b565b60005b82518110156200020357620001ee838281518110620001bd57620001bd62000872565b6020026020010151838381518110620001da57620001da62000872565b60200260200101516200029360201b60201c565b80620001fa816200089e565b9150506200019a565b5050601080546001600160a01b0319166001600160a01b0385161790555060116200022f8282620007a6565b5050915160185550620008d69050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003005760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200013b565b60008111620003525760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200013b565b6001600160a01b0382166000908152600b602052604090205415620003ce5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200013b565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b6020526040902081905560095462000438908290620008ba565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004c257620004c262000481565b604052919050565b60006001600160401b03821115620004e657620004e662000481565b5060051b60200190565b80516001600160a01b03811681146200050857600080fd5b919050565b600082601f8301126200051f57600080fd5b81516020620005386200053283620004ca565b62000497565b82815260059290921b840181019181810190868411156200055857600080fd5b8286015b848110156200057557805183529183019183016200055c565b509695505050505050565b600082601f8301126200059257600080fd5b81516001600160401b03811115620005ae57620005ae62000481565b6020620005c4601f8301601f1916820162000497565b8281528582848701011115620005d957600080fd5b60005b83811015620005f9578581018301518282018401528201620005dc565b506000928101909101919091529392505050565b600080600080608085870312156200062457600080fd5b84516001600160401b03808211156200063c57600080fd5b818701915087601f8301126200065157600080fd5b81516020620006646200053283620004ca565b82815260059290921b8401810191818101908b8411156200068457600080fd5b948201945b83861015620006ad576200069d86620004f0565b8252948201949082019062000689565b918a0151919850909350505080821115620006c757600080fd5b620006d5888389016200050d565b9450620006e560408801620004f0565b93506060870151915080821115620006fc57600080fd5b506200070b8782880162000580565b91505092959194509250565b600181811c908216806200072c57607f821691505b6020821081036200074d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007a157600081815260208120601f850160051c810160208610156200077c5750805b601f850160051c820191505b818110156200079d5782815560010162000788565b5050505b505050565b81516001600160401b03811115620007c257620007c262000481565b620007da81620007d3845462000717565b8462000753565b602080601f831160018114620008125760008415620007f95750858301515b600019600386901b1c1916600185901b1785556200079d565b600085815260208120601f198616915b82811015620008435788860151825594840194600190910190840162000822565b5085821015620008625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620008b357620008b362000888565b5060010190565b80820180821115620008d057620008d062000888565b92915050565b612bde80620008e66000396000f3fe6080604052600436106102965760003560e01c80638b83209b1161015a578063c87b56dd116100c1578063e33b7de31161007a578063e33b7de3146108a7578063e985e9c5146108bc578063ea90047514610905578063ee70c7cb1461093b578063f2fde38b14610951578063f8dcbddb1461097157600080fd5b8063c87b56dd146107b2578063c893575a146107d2578063cbccefb2146107e7578063ce7c2ac21461080e578063d0cd8e6914610844578063d79779b21461087157600080fd5b8063a22cb46511610113578063a22cb465146106f2578063a3f8eace14610712578063b3ab66b014610732578063b88d4fde14610745578063b9bbe00a14610765578063c45ac0501461079257600080fd5b80638b83209b146106335780638da5cb5b1461065357806395d89b41146106715780639852595c146106865780639b6860c8146106bc578063a0bcfc7f146106d257600080fd5b806342842e0e116101fe5780636c0360eb116101b75780636c0360eb1461057357806370a0823114610588578063715018a6146105a85780637f16053a146105bd5780638a02e3b9146105f35780638a59a7fd1461061357600080fd5b806342842e0e146104be57806348b75044146104de5780634fda7285146104fe5780635b2fda671461051e5780635be7fde81461053e5780636352211e1461055357600080fd5b806318160ddd1161025057806318160ddd146103e1578063191655871461040d57806323b872dd1461042d5780632cefffa71461044d5780633a98ef3914610463578063406072a91461047857600080fd5b8062eb7013146102e457806301ffc9a71461030657806306fdde031461033b578063081812fc1461035d578063095ea7b3146103955780630c3f6acf146103b557600080fd5b366102df577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102f057600080fd5b506103046102ff3660046123ed565b610991565b005b34801561031257600080fd5b5061032661032136600461241c565b61099e565b60405190151581526020015b60405180910390f35b34801561034757600080fd5b506103506109f0565b6040516103329190612489565b34801561036957600080fd5b5061037d6103783660046123ed565b610a82565b6040516001600160a01b039091168152602001610332565b3480156103a157600080fd5b506103046103b03660046124b1565b610ac6565b3480156103c157600080fd5b506012546013546016546017546040516103329460ff1693929190612515565b3480156103ed57600080fd5b506103ff600254600154036000190190565b604051908152602001610332565b34801561041957600080fd5b5061030461042836600461253e565b610b66565b34801561043957600080fd5b5061030461044836600461255b565b610c68565b34801561045957600080fd5b506103ff60165481565b34801561046f57600080fd5b506009546103ff565b34801561048457600080fd5b506103ff61049336600461259c565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156104ca57600080fd5b506103046104d936600461255b565b610e01565b3480156104ea57600080fd5b506103046104f936600461259c565b610e21565b34801561050a57600080fd5b506103046105193660046123ed565b610f44565b34801561052a57600080fd5b506103046105393660046125d5565b610f51565b34801561054a57600080fd5b506103046111c7565b34801561055f57600080fd5b5061037d61056e3660046123ed565b6111f5565b34801561057f57600080fd5b50610350611200565b34801561059457600080fd5b506103ff6105a336600461253e565b61128e565b3480156105b457600080fd5b506103046112dd565b3480156105c957600080fd5b506103ff6105d836600461253e565b6001600160a01b031660009081526015602052604090205490565b3480156105ff57600080fd5b5061030461060e3660046123ed565b6112f1565b34801561061f57600080fd5b506103ff61062e36600461253e565b6112fe565b34801561063f57600080fd5b5061037d61064e3660046123ed565b611329565b34801561065f57600080fd5b506000546001600160a01b031661037d565b34801561067d57600080fd5b50610350611359565b34801561069257600080fd5b506103ff6106a136600461253e565b6001600160a01b03166000908152600c602052604090205490565b3480156106c857600080fd5b506103ff60135481565b3480156106de57600080fd5b506103046106ed3660046126dd565b611368565b3480156106fe57600080fd5b5061030461070d366004612734565b611380565b34801561071e57600080fd5b506103ff61072d36600461253e565b611415565b6103046107403660046123ed565b61145d565b34801561075157600080fd5b50610304610760366004612762565b611642565b34801561077157600080fd5b506103ff61078036600461253e565b60156020526000908152604090205481565b34801561079e57600080fd5b506103ff6107ad36600461259c565b61168c565b3480156107be57600080fd5b506103506107cd3660046123ed565b611757565b3480156107de57600080fd5b506103046117e0565b3480156107f357600080fd5b506012546108019060ff1681565b60405161033291906127e2565b34801561081a57600080fd5b506103ff61082936600461253e565b6001600160a01b03166000908152600b602052604090205490565b34801561085057600080fd5b506103ff61085f36600461253e565b60146020526000908152604090205481565b34801561087d57600080fd5b506103ff61088c36600461253e565b6001600160a01b03166000908152600e602052604090205490565b3480156108b357600080fd5b50600a546103ff565b3480156108c857600080fd5b506103266108d736600461259c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561091157600080fd5b506103ff61092036600461253e565b6001600160a01b031660009081526014602052604090205490565b34801561094757600080fd5b506103ff60175481565b34801561095d57600080fd5b5061030461096c36600461253e565b611851565b34801561097d57600080fd5b5061030461098c3660046123ed565b6118c7565b610999611905565b601655565b60006301ffc9a760e01b6001600160e01b0319831614806109cf57506380ac58cd60e01b6001600160e01b03198316145b806109ea5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546109ff906127f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2b906127f0565b8015610a785780601f10610a4d57610100808354040283529160200191610a78565b820191906000526020600020905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b6000610a8d8261195f565b610aaa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ad1826111f5565b9050336001600160a01b03821614610b0a57610aed81336108d7565b610b0a576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600b6020526040902054610ba45760405162461bcd60e51b8152600401610b9b9061282a565b60405180910390fd5b6000610baf82611415565b905080600003610bd15760405162461bcd60e51b8152600401610b9b90612870565b6001600160a01b0382166000908152600c602052604081208054839290610bf99084906128d1565b9250508190555080600a6000828254610c1291906128d1565b90915550610c2290508282611994565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610c7382611aad565b9050836001600160a01b0316816001600160a01b031614610ca65760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610cf357610cd686336108d7565b610cf357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d1a57604051633a954ecd60e21b815260040160405180910390fd5b8015610d2557600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610db757600184016000818152600560205260408120549003610db5576001548114610db55760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610e1c83838360405180602001604052806000815250611642565b505050565b6001600160a01b0381166000908152600b6020526040902054610e565760405162461bcd60e51b8152600401610b9b9061282a565b6000610e62838361168c565b905080600003610e845760405162461bcd60e51b8152600401610b9b90612870565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290610ebb9084906128d1565b90915550506001600160a01b0383166000908152600e602052604081208054839290610ee89084906128d1565b90915550610ef99050838383611b1c565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b610f4c611905565b601355565b600260125460ff166004811115610f6a57610f6a6124dd565b14610fab5760405162461bcd60e51b81526020600482015260116024820152702ba61026b4b73a103737ba103634bb329760791b6044820152606401610b9b565b610fb76101bc806128d1565b83610fc9600254600154036000190190565b610fd391906128d1565b111561102d5760405162461bcd60e51b815260206004820152602360248201527f4d617820737570706c7920657863656564656420666f7220574c20657863656560448201526219195960ea1b6064820152608401610b9b565b6110c382828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c01915061109f9050565b60405160208183030381529060405280519060200120611b6e90919063ffffffff16565b6010546001600160a01b039081169116146111205760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f7420696e20574c2077686974656c69737400000000006044820152606401610b9b565b6016543360009081526014602052604090205461113e9085906128d1565b11156111985760405162461bcd60e51b8152602060048201526024808201527f4d61782057686974656c6973742053616c6520657863656564656420666f72206044820152633ab9b2b960e11b6064820152608401610b9b565b33600090815260146020526040812080548592906111b79084906128d1565b90915550610e1c90503384611b92565b60005b6018548110156111f2576111e061042882611329565b806111ea816128e4565b9150506111ca565b50565b60006109ea82611aad565b6011805461120d906127f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611239906127f0565b80156112865780601f1061125b57610100808354040283529160200191611286565b820191906000526020600020905b81548152906001019060200180831161126957829003601f168201915b505050505081565b60006001600160a01b0382166112b7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6112e5611905565b6112ef6000611c90565b565b6112f9611905565b601755565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166109ea565b6000600d828154811061133e5761133e6128fd565b6000918252602090912001546001600160a01b031692915050565b6060600480546109ff906127f0565b611370611905565b601161137c8282612959565b5050565b336001600160a01b038316036113a95760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080611421600a5490565b61142b90476128d1565b90506114568382611451866001600160a01b03166000908152600c602052604090205490565b611ce0565b9392505050565b6013548061149a5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610b9b565b6017548211156114ec5760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74207065722074786e20657863656564656400000000006044820152606401610b9b565b600160125460ff166004811115611505576115056124dd565b1461154a5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610b9b565b6101bc8261155f600254600154036000190190565b61156991906128d1565b11156115c75760405162461bcd60e51b815260206004820152602760248201527f4d617820737570706c7920657863656564656420666f72207075626c696320656044820152661e18d95959195960ca1b6064820152608401610b9b565b6115d18282612a19565b3410156116135760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610b9b565b33600090815260156020526040812080548492906116329084906128d1565b9091555061137c90503383611b92565b61164d848484610c68565b6001600160a01b0383163b156116865761166984848484611d1e565b611686576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156116eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170f9190612a30565b61171991906128d1565b6001600160a01b038086166000908152600f602090815260408083209388168352929052205490915061174f9084908390611ce0565b949350505050565b60606117628261195f565b6117ae5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b9b565b60116117b983611e09565b6040516020016117ca929190612a49565b6040516020818303038152906040529050919050565b6117e8611905565b6117f9600254600154036000190190565b156118465760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c79206f6e65206d696e7420666f72206465706c6f7965720000000000006044820152606401610b9b565b6112ef336001611b92565b611859611905565b6001600160a01b0381166118be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9b565b6111f281611c90565b6118cf611905565b8060048111156118e1576118e16124dd565b6012805460ff191660018360048111156118fd576118fd6124dd565b021790555050565b6000546001600160a01b031633146112ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b9b565b600081600111158015611973575060015482105b80156109ea575050600090815260056020526040902054600160e01b161590565b804710156119e45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b9b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a31576040519150601f19603f3d011682016040523d82523d6000602084013e611a36565b606091505b5050905080610e1c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b9b565b60008180600111611b0357600154811015611b035760008181526005602052604081205490600160e01b82169003611b01575b80600003611456575060001901600081815260056020526040902054611ae0565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e1c908490611e58565b6000806000611b7d8585611f2a565b91509150611b8a81611f98565b509392505050565b6001546000829003611bb75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611c6657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611c2e565b5081600003611c8757604051622e076360e81b815260040160405180910390fd5b60015550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391611d0a9086612a19565b611d149190612ae0565b61174f9190612b02565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d53903390899088908890600401612b15565b6020604051808303816000875af1925050508015611d8e575060408051601f3d908101601f19168201909252611d8b91810190612b52565b60015b611dec573d808015611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b508051600003611de4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611e4657600183039250600a81066030018353600a9004611e28565b50819003601f19909101908152919050565b6000611ead826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661214e9092919063ffffffff16565b805190915015610e1c5780806020019051810190611ecb9190612b6f565b610e1c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b9b565b6000808251604103611f605760208301516040840151606085015160001a611f548782858561215d565b94509450505050611f91565b8251604003611f895760208301516040840151611f7e86838361224a565b935093505050611f91565b506000905060025b9250929050565b6000816004811115611fac57611fac6124dd565b03611fb45750565b6001816004811115611fc857611fc86124dd565b036120155760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b9b565b6002816004811115612029576120296124dd565b036120765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b9b565b600381600481111561208a5761208a6124dd565b036120e25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b9b565b60048160048111156120f6576120f66124dd565b036111f25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b9b565b606061174f8484600085612283565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121945750600090506003612241565b8460ff16601b141580156121ac57508460ff16601c14155b156121bd5750600090506004612241565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612211573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661223a57600060019250925050612241565b9150600090505b94509492505050565b6000806001600160ff1b0383168161226760ff86901c601b6128d1565b90506122758782888561215d565b935093505050935093915050565b6060824710156122e45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b9b565b6001600160a01b0385163b61233b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b9b565b600080866001600160a01b031685876040516123579190612b8c565b60006040518083038185875af1925050503d8060008114612394576040519150601f19603f3d011682016040523d82523d6000602084013e612399565b606091505b50915091506123a98282866123b4565b979650505050505050565b606083156123c3575081611456565b8251156123d35782518084602001fd5b8160405162461bcd60e51b8152600401610b9b9190612489565b6000602082840312156123ff57600080fd5b5035919050565b6001600160e01b0319811681146111f257600080fd5b60006020828403121561242e57600080fd5b813561145681612406565b60005b8381101561245457818101518382015260200161243c565b50506000910152565b60008151808452612475816020860160208601612439565b601f01601f19169290920160200192915050565b602081526000611456602083018461245d565b6001600160a01b03811681146111f257600080fd5b600080604083850312156124c457600080fd5b82356124cf8161249c565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6005811061251157634e487b7160e01b600052602160045260246000fd5b9052565b6080810161252382876124f3565b84602083015283604083015282606083015295945050505050565b60006020828403121561255057600080fd5b81356114568161249c565b60008060006060848603121561257057600080fd5b833561257b8161249c565b9250602084013561258b8161249c565b929592945050506040919091013590565b600080604083850312156125af57600080fd5b82356125ba8161249c565b915060208301356125ca8161249c565b809150509250929050565b6000806000604084860312156125ea57600080fd5b83359250602084013567ffffffffffffffff8082111561260957600080fd5b818601915086601f83011261261d57600080fd5b81358181111561262c57600080fd5b87602082850101111561263e57600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561268257612682612651565b604051601f8501601f19908116603f011681019082821181831017156126aa576126aa612651565b816040528093508581528686860111156126c357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126ef57600080fd5b813567ffffffffffffffff81111561270657600080fd5b8201601f8101841361271757600080fd5b61174f84823560208401612667565b80151581146111f257600080fd5b6000806040838503121561274757600080fd5b82356127528161249c565b915060208301356125ca81612726565b6000806000806080858703121561277857600080fd5b84356127838161249c565b935060208501356127938161249c565b925060408501359150606085013567ffffffffffffffff8111156127b657600080fd5b8501601f810187136127c757600080fd5b6127d687823560208401612667565b91505092959194509250565b602081016109ea82846124f3565b600181811c9082168061280457607f821691505b60208210810361282457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109ea576109ea6128bb565b6000600182016128f6576128f66128bb565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610e1c57600081815260208120601f850160051c8101602086101561293a5750805b601f850160051c820191505b81811015610df957828155600101612946565b815167ffffffffffffffff81111561297357612973612651565b6129878161298184546127f0565b84612913565b602080601f8311600181146129bc57600084156129a45750858301515b600019600386901b1c1916600185901b178555610df9565b600085815260208120601f198616915b828110156129eb578886015182559484019460019091019084016129cc565b5085821015612a095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176109ea576109ea6128bb565b600060208284031215612a4257600080fd5b5051919050565b6000808454612a57816127f0565b60018281168015612a6f5760018114612a8457612ab3565b60ff1984168752821515830287019450612ab3565b8860005260208060002060005b85811015612aaa5781548a820152908401908201612a91565b50505082870194505b505050508351612ac7818360208801612439565b64173539b7b760d91b9101908152600501949350505050565b600082612afd57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109ea576109ea6128bb565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b489083018461245d565b9695505050505050565b600060208284031215612b6457600080fd5b815161145681612406565b600060208284031215612b8157600080fd5b815161145681612726565b60008251612b9e818460208701612439565b919091019291505056fea2646970667358221220790539d5dfa495379c24f342701618806a4f9cfe9ac39cf312f381a9f4eaf0fa64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000006d5cffbcbef82b9e7e302a195ffdb282c188addb00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fb0c20c4375fa9bc0bf4d87728ee334ed12e3dc0000000000000000000000000f16c08b48d45f013b7ad3b4e76f9d5e5c2ce0415000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000aa000000000000000000000000000000000000000000000000000000000000033e0000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102965760003560e01c80638b83209b1161015a578063c87b56dd116100c1578063e33b7de31161007a578063e33b7de3146108a7578063e985e9c5146108bc578063ea90047514610905578063ee70c7cb1461093b578063f2fde38b14610951578063f8dcbddb1461097157600080fd5b8063c87b56dd146107b2578063c893575a146107d2578063cbccefb2146107e7578063ce7c2ac21461080e578063d0cd8e6914610844578063d79779b21461087157600080fd5b8063a22cb46511610113578063a22cb465146106f2578063a3f8eace14610712578063b3ab66b014610732578063b88d4fde14610745578063b9bbe00a14610765578063c45ac0501461079257600080fd5b80638b83209b146106335780638da5cb5b1461065357806395d89b41146106715780639852595c146106865780639b6860c8146106bc578063a0bcfc7f146106d257600080fd5b806342842e0e116101fe5780636c0360eb116101b75780636c0360eb1461057357806370a0823114610588578063715018a6146105a85780637f16053a146105bd5780638a02e3b9146105f35780638a59a7fd1461061357600080fd5b806342842e0e146104be57806348b75044146104de5780634fda7285146104fe5780635b2fda671461051e5780635be7fde81461053e5780636352211e1461055357600080fd5b806318160ddd1161025057806318160ddd146103e1578063191655871461040d57806323b872dd1461042d5780632cefffa71461044d5780633a98ef3914610463578063406072a91461047857600080fd5b8062eb7013146102e457806301ffc9a71461030657806306fdde031461033b578063081812fc1461035d578063095ea7b3146103955780630c3f6acf146103b557600080fd5b366102df577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102f057600080fd5b506103046102ff3660046123ed565b610991565b005b34801561031257600080fd5b5061032661032136600461241c565b61099e565b60405190151581526020015b60405180910390f35b34801561034757600080fd5b506103506109f0565b6040516103329190612489565b34801561036957600080fd5b5061037d6103783660046123ed565b610a82565b6040516001600160a01b039091168152602001610332565b3480156103a157600080fd5b506103046103b03660046124b1565b610ac6565b3480156103c157600080fd5b506012546013546016546017546040516103329460ff1693929190612515565b3480156103ed57600080fd5b506103ff600254600154036000190190565b604051908152602001610332565b34801561041957600080fd5b5061030461042836600461253e565b610b66565b34801561043957600080fd5b5061030461044836600461255b565b610c68565b34801561045957600080fd5b506103ff60165481565b34801561046f57600080fd5b506009546103ff565b34801561048457600080fd5b506103ff61049336600461259c565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156104ca57600080fd5b506103046104d936600461255b565b610e01565b3480156104ea57600080fd5b506103046104f936600461259c565b610e21565b34801561050a57600080fd5b506103046105193660046123ed565b610f44565b34801561052a57600080fd5b506103046105393660046125d5565b610f51565b34801561054a57600080fd5b506103046111c7565b34801561055f57600080fd5b5061037d61056e3660046123ed565b6111f5565b34801561057f57600080fd5b50610350611200565b34801561059457600080fd5b506103ff6105a336600461253e565b61128e565b3480156105b457600080fd5b506103046112dd565b3480156105c957600080fd5b506103ff6105d836600461253e565b6001600160a01b031660009081526015602052604090205490565b3480156105ff57600080fd5b5061030461060e3660046123ed565b6112f1565b34801561061f57600080fd5b506103ff61062e36600461253e565b6112fe565b34801561063f57600080fd5b5061037d61064e3660046123ed565b611329565b34801561065f57600080fd5b506000546001600160a01b031661037d565b34801561067d57600080fd5b50610350611359565b34801561069257600080fd5b506103ff6106a136600461253e565b6001600160a01b03166000908152600c602052604090205490565b3480156106c857600080fd5b506103ff60135481565b3480156106de57600080fd5b506103046106ed3660046126dd565b611368565b3480156106fe57600080fd5b5061030461070d366004612734565b611380565b34801561071e57600080fd5b506103ff61072d36600461253e565b611415565b6103046107403660046123ed565b61145d565b34801561075157600080fd5b50610304610760366004612762565b611642565b34801561077157600080fd5b506103ff61078036600461253e565b60156020526000908152604090205481565b34801561079e57600080fd5b506103ff6107ad36600461259c565b61168c565b3480156107be57600080fd5b506103506107cd3660046123ed565b611757565b3480156107de57600080fd5b506103046117e0565b3480156107f357600080fd5b506012546108019060ff1681565b60405161033291906127e2565b34801561081a57600080fd5b506103ff61082936600461253e565b6001600160a01b03166000908152600b602052604090205490565b34801561085057600080fd5b506103ff61085f36600461253e565b60146020526000908152604090205481565b34801561087d57600080fd5b506103ff61088c36600461253e565b6001600160a01b03166000908152600e602052604090205490565b3480156108b357600080fd5b50600a546103ff565b3480156108c857600080fd5b506103266108d736600461259c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561091157600080fd5b506103ff61092036600461253e565b6001600160a01b031660009081526014602052604090205490565b34801561094757600080fd5b506103ff60175481565b34801561095d57600080fd5b5061030461096c36600461253e565b611851565b34801561097d57600080fd5b5061030461098c3660046123ed565b6118c7565b610999611905565b601655565b60006301ffc9a760e01b6001600160e01b0319831614806109cf57506380ac58cd60e01b6001600160e01b03198316145b806109ea5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546109ff906127f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2b906127f0565b8015610a785780601f10610a4d57610100808354040283529160200191610a78565b820191906000526020600020905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b6000610a8d8261195f565b610aaa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ad1826111f5565b9050336001600160a01b03821614610b0a57610aed81336108d7565b610b0a576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600b6020526040902054610ba45760405162461bcd60e51b8152600401610b9b9061282a565b60405180910390fd5b6000610baf82611415565b905080600003610bd15760405162461bcd60e51b8152600401610b9b90612870565b6001600160a01b0382166000908152600c602052604081208054839290610bf99084906128d1565b9250508190555080600a6000828254610c1291906128d1565b90915550610c2290508282611994565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610c7382611aad565b9050836001600160a01b0316816001600160a01b031614610ca65760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610cf357610cd686336108d7565b610cf357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d1a57604051633a954ecd60e21b815260040160405180910390fd5b8015610d2557600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610db757600184016000818152600560205260408120549003610db5576001548114610db55760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610e1c83838360405180602001604052806000815250611642565b505050565b6001600160a01b0381166000908152600b6020526040902054610e565760405162461bcd60e51b8152600401610b9b9061282a565b6000610e62838361168c565b905080600003610e845760405162461bcd60e51b8152600401610b9b90612870565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290610ebb9084906128d1565b90915550506001600160a01b0383166000908152600e602052604081208054839290610ee89084906128d1565b90915550610ef99050838383611b1c565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b610f4c611905565b601355565b600260125460ff166004811115610f6a57610f6a6124dd565b14610fab5760405162461bcd60e51b81526020600482015260116024820152702ba61026b4b73a103737ba103634bb329760791b6044820152606401610b9b565b610fb76101bc806128d1565b83610fc9600254600154036000190190565b610fd391906128d1565b111561102d5760405162461bcd60e51b815260206004820152602360248201527f4d617820737570706c7920657863656564656420666f7220574c20657863656560448201526219195960ea1b6064820152608401610b9b565b6110c382828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c01915061109f9050565b60405160208183030381529060405280519060200120611b6e90919063ffffffff16565b6010546001600160a01b039081169116146111205760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f7420696e20574c2077686974656c69737400000000006044820152606401610b9b565b6016543360009081526014602052604090205461113e9085906128d1565b11156111985760405162461bcd60e51b8152602060048201526024808201527f4d61782057686974656c6973742053616c6520657863656564656420666f72206044820152633ab9b2b960e11b6064820152608401610b9b565b33600090815260146020526040812080548592906111b79084906128d1565b90915550610e1c90503384611b92565b60005b6018548110156111f2576111e061042882611329565b806111ea816128e4565b9150506111ca565b50565b60006109ea82611aad565b6011805461120d906127f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611239906127f0565b80156112865780601f1061125b57610100808354040283529160200191611286565b820191906000526020600020905b81548152906001019060200180831161126957829003601f168201915b505050505081565b60006001600160a01b0382166112b7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6112e5611905565b6112ef6000611c90565b565b6112f9611905565b601755565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166109ea565b6000600d828154811061133e5761133e6128fd565b6000918252602090912001546001600160a01b031692915050565b6060600480546109ff906127f0565b611370611905565b601161137c8282612959565b5050565b336001600160a01b038316036113a95760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080611421600a5490565b61142b90476128d1565b90506114568382611451866001600160a01b03166000908152600c602052604090205490565b611ce0565b9392505050565b6013548061149a5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610b9b565b6017548211156114ec5760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74207065722074786e20657863656564656400000000006044820152606401610b9b565b600160125460ff166004811115611505576115056124dd565b1461154a5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610b9b565b6101bc8261155f600254600154036000190190565b61156991906128d1565b11156115c75760405162461bcd60e51b815260206004820152602760248201527f4d617820737570706c7920657863656564656420666f72207075626c696320656044820152661e18d95959195960ca1b6064820152608401610b9b565b6115d18282612a19565b3410156116135760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610b9b565b33600090815260156020526040812080548492906116329084906128d1565b9091555061137c90503383611b92565b61164d848484610c68565b6001600160a01b0383163b156116865761166984848484611d1e565b611686576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156116eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170f9190612a30565b61171991906128d1565b6001600160a01b038086166000908152600f602090815260408083209388168352929052205490915061174f9084908390611ce0565b949350505050565b60606117628261195f565b6117ae5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b9b565b60116117b983611e09565b6040516020016117ca929190612a49565b6040516020818303038152906040529050919050565b6117e8611905565b6117f9600254600154036000190190565b156118465760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c79206f6e65206d696e7420666f72206465706c6f7965720000000000006044820152606401610b9b565b6112ef336001611b92565b611859611905565b6001600160a01b0381166118be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9b565b6111f281611c90565b6118cf611905565b8060048111156118e1576118e16124dd565b6012805460ff191660018360048111156118fd576118fd6124dd565b021790555050565b6000546001600160a01b031633146112ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b9b565b600081600111158015611973575060015482105b80156109ea575050600090815260056020526040902054600160e01b161590565b804710156119e45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b9b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a31576040519150601f19603f3d011682016040523d82523d6000602084013e611a36565b606091505b5050905080610e1c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b9b565b60008180600111611b0357600154811015611b035760008181526005602052604081205490600160e01b82169003611b01575b80600003611456575060001901600081815260056020526040902054611ae0565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e1c908490611e58565b6000806000611b7d8585611f2a565b91509150611b8a81611f98565b509392505050565b6001546000829003611bb75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611c6657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611c2e565b5081600003611c8757604051622e076360e81b815260040160405180910390fd5b60015550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391611d0a9086612a19565b611d149190612ae0565b61174f9190612b02565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d53903390899088908890600401612b15565b6020604051808303816000875af1925050508015611d8e575060408051601f3d908101601f19168201909252611d8b91810190612b52565b60015b611dec573d808015611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b508051600003611de4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611e4657600183039250600a81066030018353600a9004611e28565b50819003601f19909101908152919050565b6000611ead826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661214e9092919063ffffffff16565b805190915015610e1c5780806020019051810190611ecb9190612b6f565b610e1c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b9b565b6000808251604103611f605760208301516040840151606085015160001a611f548782858561215d565b94509450505050611f91565b8251604003611f895760208301516040840151611f7e86838361224a565b935093505050611f91565b506000905060025b9250929050565b6000816004811115611fac57611fac6124dd565b03611fb45750565b6001816004811115611fc857611fc86124dd565b036120155760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b9b565b6002816004811115612029576120296124dd565b036120765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b9b565b600381600481111561208a5761208a6124dd565b036120e25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b9b565b60048160048111156120f6576120f66124dd565b036111f25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b9b565b606061174f8484600085612283565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121945750600090506003612241565b8460ff16601b141580156121ac57508460ff16601c14155b156121bd5750600090506004612241565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612211573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661223a57600060019250925050612241565b9150600090505b94509492505050565b6000806001600160ff1b0383168161226760ff86901c601b6128d1565b90506122758782888561215d565b935093505050935093915050565b6060824710156122e45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b9b565b6001600160a01b0385163b61233b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b9b565b600080866001600160a01b031685876040516123579190612b8c565b60006040518083038185875af1925050503d8060008114612394576040519150601f19603f3d011682016040523d82523d6000602084013e612399565b606091505b50915091506123a98282866123b4565b979650505050505050565b606083156123c3575081611456565b8251156123d35782518084602001fd5b8160405162461bcd60e51b8152600401610b9b9190612489565b6000602082840312156123ff57600080fd5b5035919050565b6001600160e01b0319811681146111f257600080fd5b60006020828403121561242e57600080fd5b813561145681612406565b60005b8381101561245457818101518382015260200161243c565b50506000910152565b60008151808452612475816020860160208601612439565b601f01601f19169290920160200192915050565b602081526000611456602083018461245d565b6001600160a01b03811681146111f257600080fd5b600080604083850312156124c457600080fd5b82356124cf8161249c565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6005811061251157634e487b7160e01b600052602160045260246000fd5b9052565b6080810161252382876124f3565b84602083015283604083015282606083015295945050505050565b60006020828403121561255057600080fd5b81356114568161249c565b60008060006060848603121561257057600080fd5b833561257b8161249c565b9250602084013561258b8161249c565b929592945050506040919091013590565b600080604083850312156125af57600080fd5b82356125ba8161249c565b915060208301356125ca8161249c565b809150509250929050565b6000806000604084860312156125ea57600080fd5b83359250602084013567ffffffffffffffff8082111561260957600080fd5b818601915086601f83011261261d57600080fd5b81358181111561262c57600080fd5b87602082850101111561263e57600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561268257612682612651565b604051601f8501601f19908116603f011681019082821181831017156126aa576126aa612651565b816040528093508581528686860111156126c357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126ef57600080fd5b813567ffffffffffffffff81111561270657600080fd5b8201601f8101841361271757600080fd5b61174f84823560208401612667565b80151581146111f257600080fd5b6000806040838503121561274757600080fd5b82356127528161249c565b915060208301356125ca81612726565b6000806000806080858703121561277857600080fd5b84356127838161249c565b935060208501356127938161249c565b925060408501359150606085013567ffffffffffffffff8111156127b657600080fd5b8501601f810187136127c757600080fd5b6127d687823560208401612667565b91505092959194509250565b602081016109ea82846124f3565b600181811c9082168061280457607f821691505b60208210810361282457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109ea576109ea6128bb565b6000600182016128f6576128f66128bb565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610e1c57600081815260208120601f850160051c8101602086101561293a5750805b601f850160051c820191505b81811015610df957828155600101612946565b815167ffffffffffffffff81111561297357612973612651565b6129878161298184546127f0565b84612913565b602080601f8311600181146129bc57600084156129a45750858301515b600019600386901b1c1916600185901b178555610df9565b600085815260208120601f198616915b828110156129eb578886015182559484019460019091019084016129cc565b5085821015612a095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176109ea576109ea6128bb565b600060208284031215612a4257600080fd5b5051919050565b6000808454612a57816127f0565b60018281168015612a6f5760018114612a8457612ab3565b60ff1984168752821515830287019450612ab3565b8860005260208060002060005b85811015612aaa5781548a820152908401908201612a91565b50505082870194505b505050508351612ac7818360208801612439565b64173539b7b760d91b9101908152600501949350505050565b600082612afd57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109ea576109ea6128bb565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b489083018461245d565b9695505050505050565b600060208284031215612b6457600080fd5b815161145681612406565b600060208284031215612b8157600080fd5b815161145681612726565b60008251612b9e818460208701612439565b919091019291505056fea2646970667358221220790539d5dfa495379c24f342701618806a4f9cfe9ac39cf312f381a9f4eaf0fa64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000006d5cffbcbef82b9e7e302a195ffdb282c188addb00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fb0c20c4375fa9bc0bf4d87728ee334ed12e3dc0000000000000000000000000f16c08b48d45f013b7ad3b4e76f9d5e5c2ce0415000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000aa000000000000000000000000000000000000000000000000000000000000033e0000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _team (address[]): 0xFb0c20c4375FA9bc0BF4D87728eE334Ed12E3dC0,0xF16c08B48D45F013B7ad3b4E76f9D5E5c2Ce0415
Arg [1] : _teamShares (uint256[]): 170,830
Arg [2] : _signerAddressWL (address): 0x6d5cffBcbeF82B9E7E302A195fFDb282C188AddB
Arg [3] : _baseURI (string): ipfs://
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000006d5cffbcbef82b9e7e302a195ffdb282c188addb
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 000000000000000000000000fb0c20c4375fa9bc0bf4d87728ee334ed12e3dc0
Arg [6] : 000000000000000000000000f16c08b48d45f013b7ad3b4e76f9d5e5c2ce0415
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 00000000000000000000000000000000000000000000000000000000000000aa
Arg [9] : 000000000000000000000000000000000000000000000000000000000000033e
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
88240:4300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41350:40;8610:10;41350:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;41380:9:0;270:2:1;255:18;;248:34;161:18;41350:40:0;;;;;;;88240:4300;;;;;91459:116;;;;;;;;;;-1:-1:-1;91459:116:0;;;;;:::i;:::-;;:::i;:::-;;55428:639;;;;;;;;;;-1:-1:-1;55428:639:0;;;;;:::i;:::-;;:::i;:::-;;;1029:14:1;;1022:22;1004:41;;992:2;977:18;55428:639:0;;;;;;;;56330:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62813:218::-;;;;;;;;;;-1:-1:-1;62813:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;62813:218:0;1812:203:1;62254:400:0;;;;;;;;;;-1:-1:-1;62254:400:0;;;;;:::i;:::-;;:::i;90944:177::-;;;;;;;;;;-1:-1:-1;91034:11:0;;91047:15;;91064:25;;91091:21;;90944:177;;;;91034:11;;;91047:15;91064:25;91091:21;90944:177;:::i;52081:323::-;;;;;;;;;;;;52355:12;;51680:1;52339:13;:28;-1:-1:-1;;52339:46:0;;52081:323;;;;3408:25:1;;;3396:2;3381:18;52081:323:0;3262:177:1;43871:453:0;;;;;;;;;;-1:-1:-1;43871:453:0;;;;;:::i;:::-;;:::i;66520:2817::-;;;;;;;;;;-1:-1:-1;66520:2817:0;;;;;:::i;:::-;;:::i;88884:41::-;;;;;;;;;;;;;;;;41481:91;;;;;;;;;;-1:-1:-1;41552:12:0;;41481:91;;42610:135;;;;;;;;;;-1:-1:-1;42610:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;42707:21:0;;;42680:7;42707:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;42610:135;69433:185;;;;;;;;;;-1:-1:-1;69433:185:0;;;;;:::i;:::-;;:::i;44592:514::-;;;;;;;;;;-1:-1:-1;44592:514:0;;;;;:::i;:::-;;:::i;91129:114::-;;;;;;;;;;-1:-1:-1;91129:114:0;;;;;:::i;:::-;;:::i;90119:817::-;;;;;;;;;;-1:-1:-1;90119:817:0;;;;;:::i;:::-;;:::i;92396:141::-;;;;;;;;;;;;;:::i;57723:152::-;;;;;;;;;;-1:-1:-1;57723:152:0;;;;;:::i;:::-;;:::i;88530:21::-;;;;;;;;;;;;;:::i;53265:233::-;;;;;;;;;;-1:-1:-1;53265:233:0;;;;;:::i;:::-;;:::i;29353:103::-;;;;;;;;;;;;;:::i;91983:150::-;;;;;;;;;;-1:-1:-1;91983:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;92081:44:0;92054:7;92081:44;;;:35;:44;;;;;;;91983:150;91583:105;;;;;;;;;;-1:-1:-1;91583:105:0;;;;;:::i;:::-;;:::i;91696:122::-;;;;;;;;;;-1:-1:-1;91696:122:0;;;;;:::i;:::-;;:::i;42836:100::-;;;;;;;;;;-1:-1:-1;42836:100:0;;;;;:::i;:::-;;:::i;28705:87::-;;;;;;;;;;-1:-1:-1;28751:7:0;28778:6;-1:-1:-1;;;;;28778:6:0;28705:87;;56506:104;;;;;;;;;;;;;:::i;42332:109::-;;;;;;;;;;-1:-1:-1;42332:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;42415:18:0;42388:7;42415:18;;;:9;:18;;;;;;;42332:109;88680:42;;;;;;;;;;;;;;;;91251:100;;;;;;;;;;-1:-1:-1;91251:100:0;;;;;:::i;:::-;;:::i;63371:308::-;;;;;;;;;;-1:-1:-1;63371:308:0;;;;;:::i;:::-;;:::i;43026:225::-;;;;;;;;;;-1:-1:-1;43026:225:0;;;;;:::i;:::-;;:::i;89492:619::-;;;;;;:::i;:::-;;:::i;70216:399::-;;;;;;;;;;-1:-1:-1;70216:399:0;;;;;:::i;:::-;;:::i;88808:67::-;;;;;;;;;;-1:-1:-1;88808:67:0;;;;;:::i;:::-;;;;;;;;;;;;;;43411:260;;;;;;;;;;-1:-1:-1;43411:260:0;;;;;:::i;:::-;;:::i;92141:247::-;;;;;;;;;;-1:-1:-1;92141:247:0;;;;;:::i;:::-;;:::i;89331:153::-;;;;;;;;;;;;;:::i;88560:23::-;;;;;;;;;;-1:-1:-1;88560:23:0;;;;;;;;;;;;;;;:::i;42128:105::-;;;;;;;;;;-1:-1:-1;42128:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;42209:16:0;42182:7;42209:16;;;:7;:16;;;;;;;42128:105;88731:70;;;;;;;;;;-1:-1:-1;88731:70:0;;;;;:::i;:::-;;;;;;;;;;;;;;41918:119;;;;;;;;;;-1:-1:-1;41918:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;42003:26:0;41976:7;42003:26;;;:19;:26;;;;;;;41918:119;41666:95;;;;;;;;;;-1:-1:-1;41739:14:0;;41666:95;;63836:164;;;;;;;;;;-1:-1:-1;63836:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;63957:25:0;;;63933:4;63957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;63836:164;91826:149;;;;;;;;;;-1:-1:-1;91826:149:0;;;;;:::i;:::-;-1:-1:-1;;;;;91920:47:0;91893:7;91920:47;;;:38;:47;;;;;;;91826:149;88933:37;;;;;;;;;;;;;;;;29611:201;;;;;;;;;;-1:-1:-1;29611:201:0;;;;;:::i;:::-;;:::i;91359:92::-;;;;;;;;;;-1:-1:-1;91359:92:0;;;;;:::i;:::-;;:::i;91459:116::-;28591:13;:11;:13::i;:::-;91533:25:::1;:34:::0;91459:116::o;55428:639::-;55513:4;-1:-1:-1;;;;;;;;;55837:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;55914:25:0;;;55837:102;:179;;;-1:-1:-1;;;;;;;;;;55991:25:0;;;55837:179;55817:199;55428:639;-1:-1:-1;;55428:639:0:o;56330:100::-;56384:13;56417:5;56410:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56330:100;:::o;62813:218::-;62889:7;62914:16;62922:7;62914;:16::i;:::-;62909:64;;62939:34;;-1:-1:-1;;;62939:34:0;;;;;;;;;;;62909:64;-1:-1:-1;62993:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;62993:30:0;;62813:218::o;62254:400::-;62335:13;62351:16;62359:7;62351;:16::i;:::-;62335:32;-1:-1:-1;8610:10:0;-1:-1:-1;;;;;62384:28:0;;;62380:175;;62432:44;62449:5;8610:10;63836:164;:::i;62432:44::-;62427:128;;62504:35;;-1:-1:-1;;;62504:35:0;;;;;;;;;;;62427:128;62567:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;62567:35:0;-1:-1:-1;;;;;62567:35:0;;;;;;;;;62618:28;;62567:24;;62618:28;;;;;;;62324:330;62254:400;;:::o;43871:453::-;-1:-1:-1;;;;;43947:16:0;;43966:1;43947:16;;;:7;:16;;;;;;43939:71;;;;-1:-1:-1;;;43939:71:0;;;;;;;:::i;:::-;;;;;;;;;44023:15;44041:19;44052:7;44041:10;:19::i;:::-;44023:37;;44081:7;44092:1;44081:12;44073:68;;;;-1:-1:-1;;;44073:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44154:18:0;;;;;;:9;:18;;;;;:29;;44176:7;;44154:18;:29;;44176:7;;44154:29;:::i;:::-;;;;;;;;44212:7;44194:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;44232:35:0;;-1:-1:-1;44250:7:0;44259;44232:17;:35::i;:::-;44283:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;44283:33:0;;161:18:1;44283:33:0;;;;;;;43928:396;43871:453;:::o;66520:2817::-;66654:27;66684;66703:7;66684:18;:27::i;:::-;66654:57;;66769:4;-1:-1:-1;;;;;66728:45:0;66744:19;-1:-1:-1;;;;;66728:45:0;;66724:86;;66782:28;;-1:-1:-1;;;66782:28:0;;;;;;;;;;;66724:86;66824:27;65634:24;;;:15;:24;;;;;65856:26;;8610:10;65259:30;;;-1:-1:-1;;;;;64952:28:0;;65237:20;;;65234:56;67010:180;;67103:43;67120:4;8610:10;63836:164;:::i;67103:43::-;67098:92;;67155:35;;-1:-1:-1;;;67155:35:0;;;;;;;;;;;67098:92;-1:-1:-1;;;;;67207:16:0;;67203:52;;67232:23;;-1:-1:-1;;;67232:23:0;;;;;;;;;;;67203:52;67404:15;67401:160;;;67544:1;67523:19;67516:30;67401:160;-1:-1:-1;;;;;67941:24:0;;;;;;;:18;:24;;;;;;67939:26;;-1:-1:-1;;67939:26:0;;;68010:22;;;;;;;;;68008:24;;-1:-1:-1;68008:24:0;;;61112:11;61087:23;61083:41;61070:63;-1:-1:-1;;;61070:63:0;68303:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;68598:47:0;;:52;;68594:627;;68703:1;68693:11;;68671:19;68826:30;;;:17;:30;;;;;;:35;;68822:384;;68964:13;;68949:11;:28;68945:242;;69111:30;;;;:17;:30;;;;;:52;;;68945:242;68652:569;68594:627;69268:7;69264:2;-1:-1:-1;;;;;69249:27:0;69258:4;-1:-1:-1;;;;;69249:27:0;;;;;;;;;;;69287:42;66643:2694;;;66520:2817;;;:::o;69433:185::-;69571:39;69588:4;69594:2;69598:7;69571:39;;;;;;;;;;;;:16;:39::i;:::-;69433:185;;;:::o;44592:514::-;-1:-1:-1;;;;;44674:16:0;;44693:1;44674:16;;;:7;:16;;;;;;44666:71;;;;-1:-1:-1;;;44666:71:0;;;;;;;:::i;:::-;44750:15;44768:26;44779:5;44786:7;44768:10;:26::i;:::-;44750:44;;44815:7;44826:1;44815:12;44807:68;;;;-1:-1:-1;;;44807:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44888:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;44922:7;;44888:21;:41;;44922:7;;44888:41;:::i;:::-;;;;-1:-1:-1;;;;;;;44940:26:0;;;;;;:19;:26;;;;;:37;;44970:7;;44940:26;:37;;44970:7;;44940:37;:::i;:::-;;;;-1:-1:-1;44990:47:0;;-1:-1:-1;45013:5:0;45020:7;45029;44990:22;:47::i;:::-;45053:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;45053:45:0;;;;;161:18:1;45053:45:0;;;;;;;44655:451;44592:514;;:::o;91129:114::-;28591:13;:11;:13::i;:::-;91208:15:::1;:27:::0;91129:114::o;90119:817::-;90215:18;90200:11;;;;:33;;;;;;;;:::i;:::-;;90197:65;;90235:27;;-1:-1:-1;;;90235:27:0;;10840:2:1;90235:27:0;;;10822:21:1;10879:2;10859:18;;;10852:30;-1:-1:-1;;;10898:18:1;;;10891:47;10955:18;;90235:27:0;10638:341:1;90197:65:0;90305:19;88668:3;;90305:19;:::i;:::-;90292:9;90276:13;52355:12;;51680:1;52339:13;:28;-1:-1:-1;;52339:46:0;;52081:323;90276:13;:25;;;;:::i;:::-;:49;90273:99;;;90327:45;;-1:-1:-1;;;90327:45:0;;11186:2:1;90327:45:0;;;11168:21:1;11225:2;11205:18;;;11198:30;11264:34;11244:18;;;11237:62;-1:-1:-1;;;11315:18:1;;;11308:33;11358:19;;90327:45:0;10984:399:1;90273:99:0;90416:194;90600:9;;90416:194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;90440:140:0;;11630:66:1;90440:140:0;;;11618:79:1;90552:10:0;11713:12:1;;;11706:28;11750:12;;;-1:-1:-1;90440:140:0;;-1:-1:-1;11388:380:1;90440:140:0;;;;;;;;;;;;;90416:175;;;;;;:183;;:194;;;;:::i;:::-;90397:15;;-1:-1:-1;;;;;90397:15:0;;;:213;;;90394:255;;90612:37;;-1:-1:-1;;;90612:37:0;;11975:2:1;90612:37:0;;;11957:21:1;12014:2;11994:18;;;11987:30;12053:29;12033:18;;;12026:57;12100:18;;90612:37:0;11773:351:1;90394:255:0;90728:25;;90702:10;90663:50;;;;:38;:50;;;;;;:62;;90716:9;;90663:62;:::i;:::-;:90;90660:141;;;90755:46;;-1:-1:-1;;;90755:46:0;;12331:2:1;90755:46:0;;;12313:21:1;12370:2;12350:18;;;12343:30;12409:34;12389:18;;;12382:62;-1:-1:-1;;;12460:18:1;;;12453:34;12504:19;;90755:46:0;12129:400:1;90660:141:0;90865:10;90826:50;;;;:38;:50;;;;;:63;;90880:9;;90826:50;:63;;90880:9;;90826:63;:::i;:::-;;;;-1:-1:-1;90900:28:0;;-1:-1:-1;90906:10:0;90918:9;90900:5;:28::i;92396:141::-;92442:6;92438:92;92459:10;;92455:1;:14;92438:92;;;92492:26;92508:8;92514:1;92508:5;:8::i;92492:26::-;92472:3;;;;:::i;:::-;;;;92438:92;;;;92396:141::o;57723:152::-;57795:7;57838:27;57857:7;57838:18;:27::i;88530:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53265:233::-;53337:7;-1:-1:-1;;;;;53361:19:0;;53357:60;;53389:28;;-1:-1:-1;;;53389:28:0;;;;;;;;;;;53357:60;-1:-1:-1;;;;;;53435:25:0;;;;;:18;:25;;;;;;47424:13;53435:55;;53265:233::o;29353:103::-;28591:13;:11;:13::i;:::-;29418:30:::1;29445:1;29418:18;:30::i;:::-;29353:103::o:0;91583:105::-;28591:13;:11;:13::i;:::-;91650:21:::1;:30:::0;91583:105::o;91696:122::-;-1:-1:-1;;;;;53669:25:0;;91761:7;53669:25;;;:18;:25;;47562:2;53669:25;;;;47424:13;53669:50;;53668:82;91788:22;53580:178;42836:100;42887:7;42914;42922:5;42914:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;42914:14:0;;42836:100;-1:-1:-1;;42836:100:0:o;56506:104::-;56562:13;56595:7;56588:14;;;;;:::i;91251:100::-;28591:13;:11;:13::i;:::-;91325:7:::1;:18;91335:8:::0;91325:7;:18:::1;:::i;:::-;;91251:100:::0;:::o;63371:308::-;8610:10;-1:-1:-1;;;;;63470:31:0;;;63466:61;;63510:17;;-1:-1:-1;;;63510:17:0;;;;;;;;;;;63466:61;8610:10;63540:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;63540:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;63540:60:0;;;;;;;;;;63616:55;;1004:41:1;;;63540:49:0;;8610:10;63616:55;;977:18:1;63616:55:0;;;;;;;63371:308;;:::o;43026:225::-;43084:7;43104:21;43152:15;41739:14;;;41666:95;43152:15;43128:39;;:21;:39;:::i;:::-;43104:63;;43185:58;43201:7;43210:13;43225:17;43234:7;-1:-1:-1;;;;;42415:18:0;42388:7;42415:18;;;:9;:18;;;;;;;42332:109;43225:17;43185:15;:58::i;:::-;43178:65;43026:225;-1:-1:-1;;;43026:225:0:o;89492:619::-;89573:15;;89602:10;89599:35;;89614:20;;-1:-1:-1;;;89614:20:0;;15212:2:1;89614:20:0;;;15194:21:1;15251:2;15231:18;;;15224:30;-1:-1:-1;;;15270:18:1;;;15263:40;15320:18;;89614:20:0;15010:334:1;89599:35:0;89662:21;;89650:9;:33;89647:75;;;89685:37;;-1:-1:-1;;;89685:37:0;;15551:2:1;89685:37:0;;;15533:21:1;15590:2;15570:18;;;15563:30;15629:29;15609:18;;;15602:57;15676:18;;89685:37:0;15349:351:1;89647:75:0;89753:15;89738:11;;;;:30;;;;;;;;:::i;:::-;;89735:66;;89770:31;;-1:-1:-1;;;89770:31:0;;15907:2:1;89770:31:0;;;15889:21:1;15946:2;15926:18;;;15919:30;-1:-1:-1;;;15965:18:1;;;15958:51;16026:18;;89770:31:0;15705:345:1;89735:66:0;88627:3;89831:9;89815:13;52355:12;;51680:1;52339:13;:28;-1:-1:-1;;52339:46:0;;52081:323;89815:13;:25;;;;:::i;:::-;:40;89812:94;;;89857:49;;-1:-1:-1;;;89857:49:0;;16257:2:1;89857:49:0;;;16239:21:1;16296:2;16276:18;;;16269:30;16335:34;16315:18;;;16308:62;-1:-1:-1;;;16386:18:1;;;16379:37;16433:19;;89857:49:0;16055:403:1;89812:94:0;89932:17;89940:9;89932:5;:17;:::i;:::-;89920:9;:29;89917:60;;;89951:26;;-1:-1:-1;;;89951:26:0;;16838:2:1;89951:26:0;;;16820:21:1;16877:2;16857:18;;;16850:30;-1:-1:-1;;;16896:18:1;;;16889:46;16952:18;;89951:26:0;16636:340:1;89917:60:0;90038:10;90002:47;;;;:35;:47;;;;;:60;;90053:9;;90002:47;:60;;90053:9;;90002:60;:::i;:::-;;;;-1:-1:-1;90075:28:0;;-1:-1:-1;90081:10:0;90093:9;90075:5;:28::i;70216:399::-;70383:31;70396:4;70402:2;70406:7;70383:12;:31::i;:::-;-1:-1:-1;;;;;70429:14:0;;;:19;70425:183;;70468:56;70499:4;70505:2;70509:7;70518:5;70468:30;:56::i;:::-;70463:145;;70552:40;;-1:-1:-1;;;70552:40:0;;;;;;;;;;;70463:145;70216:399;;;;:::o;43411:260::-;-1:-1:-1;;;;;42003:26:0;;43483:7;42003:26;;;:19;:26;;;;;;43483:7;;43527:30;;-1:-1:-1;;;43527:30:0;;43551:4;43527:30;;;1958:51:1;-1:-1:-1;;;;;43527:15:0;;;;;1931:18:1;;43527:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;42707:21:0;;;42680:7;42707:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;43503:77;;-1:-1:-1;43598:65:0;;43614:7;;43503:77;;43185:15;:58::i;43598:65::-;43591:72;43411:260;-1:-1:-1;;;;43411:260:0:o;92141:247::-;92212:13;92246:17;92254:8;92246:7;:17::i;:::-;92238:61;;;;-1:-1:-1;;;92238:61:0;;17372:2:1;92238:61:0;;;17354:21:1;17411:2;17391:18;;;17384:30;17450:33;17430:18;;;17423:61;17501:18;;92238:61:0;17170:355:1;92238:61:0;92341:7;92350:19;92360:8;92350:9;:19::i;:::-;92324:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92310:70;;92141:247;;;:::o;89331:153::-;28591:13;:11;:13::i;:::-;89389::::1;52355:12:::0;;51680:1;52339:13;:28;-1:-1:-1;;52339:46:0;;52081:323;89389:13:::1;:18:::0;89386:59:::1;;89409:36;::::0;-1:-1:-1;;;89409:36:0;;18924:2:1;89409:36:0::1;::::0;::::1;18906:21:1::0;18963:2;18943:18;;;18936:30;19002:28;18982:18;;;18975:56;19048:18;;89409:36:0::1;18722:350:1::0;89386:59:0::1;89456:20;89462:10;89474:1;89456:5;:20::i;29611:201::-:0;28591:13;:11;:13::i;:::-;-1:-1:-1;;;;;29700:22:0;::::1;29692:73;;;::::0;-1:-1:-1;;;29692:73:0;;19279:2:1;29692:73:0::1;::::0;::::1;19261:21:1::0;19318:2;19298:18;;;19291:30;19357:34;19337:18;;;19330:62;-1:-1:-1;;;19408:18:1;;;19401:36;19454:19;;29692:73:0::1;19077:402:1::0;29692:73:0::1;29776:28;29795:8;29776:18;:28::i;91359:92::-:0;28591:13;:11;:13::i;:::-;91437:5:::1;91432:11;;;;;;;;:::i;:::-;91418;:25:::0;;-1:-1:-1;;91418:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;91359:92:::0;:::o;28870:132::-;28751:7;28778:6;-1:-1:-1;;;;;28778:6:0;8610:10;28934:23;28926:68;;;;-1:-1:-1;;;28926:68:0;;19686:2:1;28926:68:0;;;19668:21:1;;;19705:18;;;19698:30;19764:34;19744:18;;;19737:62;19816:18;;28926:68:0;19484:356:1;64258:282:0;64323:4;64379:7;51680:1;64360:26;;:66;;;;;64413:13;;64403:7;:23;64360:66;:153;;;;-1:-1:-1;;64464:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;64464:44:0;:49;;64258:282::o;2438:317::-;2553:6;2528:21;:31;;2520:73;;;;-1:-1:-1;;;2520:73:0;;20047:2:1;2520:73:0;;;20029:21:1;20086:2;20066:18;;;20059:30;20125:31;20105:18;;;20098:59;20174:18;;2520:73:0;19845:353:1;2520:73:0;2607:12;2625:9;-1:-1:-1;;;;;2625:14:0;2647:6;2625:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2606:52;;;2677:7;2669:78;;;;-1:-1:-1;;;2669:78:0;;20615:2:1;2669:78:0;;;20597:21:1;20654:2;20634:18;;;20627:30;20693:34;20673:18;;;20666:62;20764:28;20744:18;;;20737:56;20810:19;;2669:78:0;20413:422:1;58878:1275:0;58945:7;58980;;51680:1;59029:23;59025:1061;;59082:13;;59075:4;:20;59071:1015;;;59120:14;59137:23;;;:17;:23;;;;;;;-1:-1:-1;;;59226:24:0;;:29;;59222:845;;59891:113;59898:6;59908:1;59898:11;59891:113;;-1:-1:-1;;;59969:6:0;59951:25;;;;:17;:25;;;;;;59891:113;;59222:845;59097:989;59071:1015;60114:31;;-1:-1:-1;;;60114:31:0;;;;;;;;;;;22040:211;22184:58;;;-1:-1:-1;;;;;206:32:1;;22184:58:0;;;188:51:1;255:18;;;;248:34;;;22184:58:0;;;;;;;;;;161:18:1;;;;22184:58:0;;;;;;;;-1:-1:-1;;;;;22184:58:0;-1:-1:-1;;;22184:58:0;;;22157:86;;22177:5;;22157:19;:86::i;34293:231::-;34371:7;34392:17;34411:18;34433:27;34444:4;34450:9;34433:10;:27::i;:::-;34391:69;;;;34471:18;34483:5;34471:11;:18::i;:::-;-1:-1:-1;34507:9:0;34293:231;-1:-1:-1;;;34293:231:0:o;73877:2454::-;73973:13;;73950:20;74001:13;;;73997:44;;74023:18;;-1:-1:-1;;;74023:18:0;;;;;;;;;;;73997:44;-1:-1:-1;;;;;74529:22:0;;;;;;:18;:22;;;;47562:2;74529:22;;;:71;;74567:32;74555:45;;74529:71;;;74843:31;;;:17;:31;;;;;-1:-1:-1;61543:15:0;;61517:24;61513:46;61112:11;61087:23;61083:41;61080:52;61070:63;;74843:173;;75078:23;;;;74843:31;;74529:22;;75577:25;74529:22;;75430:335;75845:1;75831:12;75827:20;75785:346;75886:3;75877:7;75874:16;75785:346;;76104:7;76094:8;76091:1;76064:25;76061:1;76058;76053:59;75939:1;75926:15;75785:346;;;75789:77;76164:8;76176:1;76164:13;76160:45;;76186:19;;-1:-1:-1;;;76186:19:0;;;;;;;;;;;76160:45;76222:13;:19;-1:-1:-1;69433:185:0;;;:::o;29972:191::-;30046:16;30065:6;;-1:-1:-1;;;;;30082:17:0;;;-1:-1:-1;;;;;;30082:17:0;;;;;;30115:40;;30065:6;;;;;;;30115:40;;30046:16;30115:40;30035:128;29972:191;:::o;45284:248::-;45494:12;;-1:-1:-1;;;;;45474:16:0;;45430:7;45474:16;;;:7;:16;;;;;;45430:7;;45509:15;;45458:32;;:13;:32;:::i;:::-;45457:49;;;;:::i;:::-;:67;;;;:::i;72699:716::-;72883:88;;-1:-1:-1;;;72883:88:0;;72862:4;;-1:-1:-1;;;;;72883:45:0;;;;;:88;;8610:10;;72950:4;;72956:7;;72965:5;;72883:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72883:88:0;;;;;;;;-1:-1:-1;;72883:88:0;;;;;;;;;;;;:::i;:::-;;;72879:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73166:6;:13;73183:1;73166:18;73162:235;;73212:40;;-1:-1:-1;;;73212:40:0;;;;;;;;;;;73162:235;73355:6;73349:13;73340:6;73336:2;73332:15;73325:38;72879:529;-1:-1:-1;;;;;;73042:64:0;-1:-1:-1;;;73042:64:0;;-1:-1:-1;72699:716:0;;;;;;:::o;86231:2002::-;86708:4;86702:11;;86715:3;86698:21;;86793:17;;;;87489:11;;;87368:5;87655:2;87669;87659:13;;87651:22;87489:11;87638:36;87710:2;87700:13;;87260:731;87729:4;87260:731;;;87920:1;87915:3;87911:11;87904:18;;87971:2;87965:4;87961:13;87957:2;87953:22;87948:3;87940:36;87824:2;87814:13;;87260:731;;;-1:-1:-1;88021:13:0;;;-1:-1:-1;;88136:12:0;;;88196:19;;;88136:12;86231:2002;-1:-1:-1;86231:2002:0:o;25107:716::-;25531:23;25557:69;25585:4;25557:69;;;;;;;;;;;;;;;;;25565:5;-1:-1:-1;;;;;25557:27:0;;;:69;;;;;:::i;:::-;25641:17;;25531:95;;-1:-1:-1;25641:21:0;25637:179;;25738:10;25727:30;;;;;;;;;;;;:::i;:::-;25719:85;;;;-1:-1:-1;;;25719:85:0;;22395:2:1;25719:85:0;;;22377:21:1;22434:2;22414:18;;;22407:30;22473:34;22453:18;;;22446:62;-1:-1:-1;;;22524:18:1;;;22517:40;22574:19;;25719:85:0;22193:406:1;32087:1404:0;32168:7;32177:12;32402:9;:16;32422:2;32402:22;32398:1086;;32746:4;32731:20;;32725:27;32796:4;32781:20;;32775:27;32854:4;32839:20;;32833:27;32441:9;32825:36;32897:25;32908:4;32825:36;32725:27;32775;32897:10;:25::i;:::-;32890:32;;;;;;;;;32398:1086;32944:9;:16;32964:2;32944:22;32940:544;;33267:4;33252:20;;33246:27;33318:4;33303:20;;33297:27;33360:23;33371:4;33246:27;33297;33360:10;:23::i;:::-;33353:30;;;;;;;;32940:544;-1:-1:-1;33432:1:0;;-1:-1:-1;33436:35:0;32940:544;32087:1404;;;;;:::o;30358:643::-;30436:20;30427:5;:29;;;;;;;;:::i;:::-;;30423:571;;30358:643;:::o;30423:571::-;30534:29;30525:5;:38;;;;;;;;:::i;:::-;;30521:473;;30580:34;;-1:-1:-1;;;30580:34:0;;22806:2:1;30580:34:0;;;22788:21:1;22845:2;22825:18;;;22818:30;22884:26;22864:18;;;22857:54;22928:18;;30580:34:0;22604:348:1;30521:473:0;30645:35;30636:5;:44;;;;;;;;:::i;:::-;;30632:362;;30697:41;;-1:-1:-1;;;30697:41:0;;23159:2:1;30697:41:0;;;23141:21:1;23198:2;23178:18;;;23171:30;23237:33;23217:18;;;23210:61;23288:18;;30697:41:0;22957:355:1;30632:362:0;30769:30;30760:5;:39;;;;;;;;:::i;:::-;;30756:238;;30816:44;;-1:-1:-1;;;30816:44:0;;23519:2:1;30816:44:0;;;23501:21:1;23558:2;23538:18;;;23531:30;23597:34;23577:18;;;23570:62;-1:-1:-1;;;23648:18:1;;;23641:32;23690:19;;30816:44:0;23317:398:1;30756:238:0;30891:30;30882:5;:39;;;;;;;;:::i;:::-;;30878:116;;30938:44;;-1:-1:-1;;;30938:44:0;;23922:2:1;30938:44:0;;;23904:21:1;23961:2;23941:18;;;23934:30;24000:34;23980:18;;;23973:62;-1:-1:-1;;;24051:18:1;;;24044:32;24093:19;;30938:44:0;23720:398:1;3922:229:0;4059:12;4091:52;4113:6;4121:4;4127:1;4130:12;4091:21;:52::i;35745:1632::-;35876:7;;36810:66;36797:79;;36793:163;;;-1:-1:-1;36909:1:0;;-1:-1:-1;36913:30:0;36893:51;;36793:163;36970:1;:7;;36975:2;36970:7;;:18;;;;;36981:1;:7;;36986:2;36981:7;;36970:18;36966:102;;;-1:-1:-1;37021:1:0;;-1:-1:-1;37025:30:0;37005:51;;36966:102;37182:24;;;37165:14;37182:24;;;;;;;;;24350:25:1;;;24423:4;24411:17;;24391:18;;;24384:45;;;;24445:18;;;24438:34;;;24488:18;;;24481:34;;;37182:24:0;;24322:19:1;;37182:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37182:24:0;;-1:-1:-1;;37182:24:0;;;-1:-1:-1;;;;;;;37221:20:0;;37217:103;;37274:1;37278:29;37258:50;;;;;;;37217:103;37340:6;-1:-1:-1;37348:20:0;;-1:-1:-1;35745:1632:0;;;;;;;;:::o;34787:344::-;34901:7;;-1:-1:-1;;;;;34947:80:0;;34901:7;35054:25;35070:3;35055:18;;;35077:2;35054:25;:::i;:::-;35038:42;;35098:25;35109:4;35115:1;35118;35121;35098:10;:25::i;:::-;35091:32;;;;;;34787:344;;;;;;:::o;5042:510::-;5212:12;5270:5;5245:21;:30;;5237:81;;;;-1:-1:-1;;;5237:81:0;;24728:2:1;5237:81:0;;;24710:21:1;24767:2;24747:18;;;24740:30;24806:34;24786:18;;;24779:62;-1:-1:-1;;;24857:18:1;;;24850:36;24903:19;;5237:81:0;24526:402:1;5237:81:0;-1:-1:-1;;;;;1472:19:0;;;5329:60;;;;-1:-1:-1;;;5329:60:0;;25135:2:1;5329:60:0;;;25117:21:1;25174:2;25154:18;;;25147:30;25213:31;25193:18;;;25186:59;25262:18;;5329:60:0;24933:353:1;5329:60:0;5403:12;5417:23;5444:6;-1:-1:-1;;;;;5444:11:0;5463:5;5470:4;5444:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5402:73;;;;5493:51;5510:7;5519:10;5531:12;5493:16;:51::i;:::-;5486:58;5042:510;-1:-1:-1;;;;;;;5042:510:0:o;7728:762::-;7878:12;7907:7;7903:580;;;-1:-1:-1;7938:10:0;7931:17;;7903:580;8052:17;;:21;8048:424;;8300:10;8294:17;8361:15;8348:10;8344:2;8340:19;8333:44;8048:424;8443:12;8436:20;;-1:-1:-1;;;8436:20:0;;;;;;;;:::i;293:180:1:-;352:6;405:2;393:9;384:7;380:23;376:32;373:52;;;421:1;418;411:12;373:52;-1:-1:-1;444:23:1;;293:180;-1:-1:-1;293:180:1:o;478:131::-;-1:-1:-1;;;;;;552:32:1;;542:43;;532:71;;599:1;596;589:12;614:245;672:6;725:2;713:9;704:7;700:23;696:32;693:52;;;741:1;738;731:12;693:52;780:9;767:23;799:30;823:5;799:30;:::i;1056:250::-;1141:1;1151:113;1165:6;1162:1;1159:13;1151:113;;;1241:11;;;1235:18;1222:11;;;1215:39;1187:2;1180:10;1151:113;;;-1:-1:-1;;1298:1:1;1280:16;;1273:27;1056:250::o;1311:271::-;1353:3;1391:5;1385:12;1418:6;1413:3;1406:19;1434:76;1503:6;1496:4;1491:3;1487:14;1480:4;1473:5;1469:16;1434:76;:::i;:::-;1564:2;1543:15;-1:-1:-1;;1539:29:1;1530:39;;;;1571:4;1526:50;;1311:271;-1:-1:-1;;1311:271:1:o;1587:220::-;1736:2;1725:9;1718:21;1699:4;1756:45;1797:2;1786:9;1782:18;1774:6;1756:45;:::i;2020:131::-;-1:-1:-1;;;;;2095:31:1;;2085:42;;2075:70;;2141:1;2138;2131:12;2156:315;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2340:9;2327:23;2359:31;2384:5;2359:31;:::i;:::-;2409:5;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2156:315:1:o;2476:127::-;2537:10;2532:3;2528:20;2525:1;2518:31;2568:4;2565:1;2558:15;2592:4;2589:1;2582:15;2608:232;2684:1;2677:5;2674:12;2664:143;;2729:10;2724:3;2720:20;2717:1;2710:31;2764:4;2761:1;2754:15;2792:4;2789:1;2782:15;2664:143;2816:18;;2608:232::o;2845:412::-;3070:3;3055:19;;3083:39;3059:9;3104:6;3083:39;:::i;:::-;3158:6;3153:2;3142:9;3138:18;3131:34;3201:6;3196:2;3185:9;3181:18;3174:34;3244:6;3239:2;3228:9;3224:18;3217:34;2845:412;;;;;;;:::o;3444:255::-;3511:6;3564:2;3552:9;3543:7;3539:23;3535:32;3532:52;;;3580:1;3577;3570:12;3532:52;3619:9;3606:23;3638:31;3663:5;3638:31;:::i;3704:456::-;3781:6;3789;3797;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3905:9;3892:23;3924:31;3949:5;3924:31;:::i;:::-;3974:5;-1:-1:-1;4031:2:1;4016:18;;4003:32;4044:33;4003:32;4044:33;:::i;:::-;3704:456;;4096:7;;-1:-1:-1;;;4150:2:1;4135:18;;;;4122:32;;3704:456::o;4165:402::-;4247:6;4255;4308:2;4296:9;4287:7;4283:23;4279:32;4276:52;;;4324:1;4321;4314:12;4276:52;4363:9;4350:23;4382:31;4407:5;4382:31;:::i;:::-;4432:5;-1:-1:-1;4489:2:1;4474:18;;4461:32;4502:33;4461:32;4502:33;:::i;:::-;4554:7;4544:17;;;4165:402;;;;;:::o;4572:659::-;4651:6;4659;4667;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;4772:9;4759:23;4749:33;;4833:2;4822:9;4818:18;4805:32;4856:18;4897:2;4889:6;4886:14;4883:34;;;4913:1;4910;4903:12;4883:34;4951:6;4940:9;4936:22;4926:32;;4996:7;4989:4;4985:2;4981:13;4977:27;4967:55;;5018:1;5015;5008:12;4967:55;5058:2;5045:16;5084:2;5076:6;5073:14;5070:34;;;5100:1;5097;5090:12;5070:34;5145:7;5140:2;5131:6;5127:2;5123:15;5119:24;5116:37;5113:57;;;5166:1;5163;5156:12;5113:57;5197:2;5193;5189:11;5179:21;;5219:6;5209:16;;;;;4572:659;;;;;:::o;5488:127::-;5549:10;5544:3;5540:20;5537:1;5530:31;5580:4;5577:1;5570:15;5604:4;5601:1;5594:15;5620:632;5685:5;5715:18;5756:2;5748:6;5745:14;5742:40;;;5762:18;;:::i;:::-;5837:2;5831:9;5805:2;5891:15;;-1:-1:-1;;5887:24:1;;;5913:2;5883:33;5879:42;5867:55;;;5937:18;;;5957:22;;;5934:46;5931:72;;;5983:18;;:::i;:::-;6023:10;6019:2;6012:22;6052:6;6043:15;;6082:6;6074;6067:22;6122:3;6113:6;6108:3;6104:16;6101:25;6098:45;;;6139:1;6136;6129:12;6098:45;6189:6;6184:3;6177:4;6169:6;6165:17;6152:44;6244:1;6237:4;6228:6;6220;6216:19;6212:30;6205:41;;;;5620:632;;;;;:::o;6257:451::-;6326:6;6379:2;6367:9;6358:7;6354:23;6350:32;6347:52;;;6395:1;6392;6385:12;6347:52;6435:9;6422:23;6468:18;6460:6;6457:30;6454:50;;;6500:1;6497;6490:12;6454:50;6523:22;;6576:4;6568:13;;6564:27;-1:-1:-1;6554:55:1;;6605:1;6602;6595:12;6554:55;6628:74;6694:7;6689:2;6676:16;6671:2;6667;6663:11;6628:74;:::i;6713:118::-;6799:5;6792:13;6785:21;6778:5;6775:32;6765:60;;6821:1;6818;6811:12;6836:382;6901:6;6909;6962:2;6950:9;6941:7;6937:23;6933:32;6930:52;;;6978:1;6975;6968:12;6930:52;7017:9;7004:23;7036:31;7061:5;7036:31;:::i;:::-;7086:5;-1:-1:-1;7143:2:1;7128:18;;7115:32;7156:30;7115:32;7156:30;:::i;7223:795::-;7318:6;7326;7334;7342;7395:3;7383:9;7374:7;7370:23;7366:33;7363:53;;;7412:1;7409;7402:12;7363:53;7451:9;7438:23;7470:31;7495:5;7470:31;:::i;:::-;7520:5;-1:-1:-1;7577:2:1;7562:18;;7549:32;7590:33;7549:32;7590:33;:::i;:::-;7642:7;-1:-1:-1;7696:2:1;7681:18;;7668:32;;-1:-1:-1;7751:2:1;7736:18;;7723:32;7778:18;7767:30;;7764:50;;;7810:1;7807;7800:12;7764:50;7833:22;;7886:4;7878:13;;7874:27;-1:-1:-1;7864:55:1;;7915:1;7912;7905:12;7864:55;7938:74;8004:7;7999:2;7986:16;7981:2;7977;7973:11;7938:74;:::i;:::-;7928:84;;;7223:795;;;;;;;:::o;8023:198::-;8164:2;8149:18;;8176:39;8153:9;8197:6;8176:39;:::i;8885:380::-;8964:1;8960:12;;;;9007;;;9028:61;;9082:4;9074:6;9070:17;9060:27;;9028:61;9135:2;9127:6;9124:14;9104:18;9101:38;9098:161;;9181:10;9176:3;9172:20;9169:1;9162:31;9216:4;9213:1;9206:15;9244:4;9241:1;9234:15;9098:161;;8885:380;;;:::o;9270:402::-;9472:2;9454:21;;;9511:2;9491:18;;;9484:30;9550:34;9545:2;9530:18;;9523:62;-1:-1:-1;;;9616:2:1;9601:18;;9594:36;9662:3;9647:19;;9270:402::o;9677:407::-;9879:2;9861:21;;;9918:2;9898:18;;;9891:30;9957:34;9952:2;9937:18;;9930:62;-1:-1:-1;;;10023:2:1;10008:18;;10001:41;10074:3;10059:19;;9677:407::o;10089:127::-;10150:10;10145:3;10141:20;10138:1;10131:31;10181:4;10178:1;10171:15;10205:4;10202:1;10195:15;10221:125;10286:9;;;10307:10;;;10304:36;;;10320:18;;:::i;12534:135::-;12573:3;12594:17;;;12591:43;;12614:18;;:::i;:::-;-1:-1:-1;12661:1:1;12650:13;;12534:135::o;12674:127::-;12735:10;12730:3;12726:20;12723:1;12716:31;12766:4;12763:1;12756:15;12790:4;12787:1;12780:15;12932:545;13034:2;13029:3;13026:11;13023:448;;;13070:1;13095:5;13091:2;13084:17;13140:4;13136:2;13126:19;13210:2;13198:10;13194:19;13191:1;13187:27;13181:4;13177:38;13246:4;13234:10;13231:20;13228:47;;;-1:-1:-1;13269:4:1;13228:47;13324:2;13319:3;13315:12;13312:1;13308:20;13302:4;13298:31;13288:41;;13379:82;13397:2;13390:5;13387:13;13379:82;;;13442:17;;;13423:1;13412:13;13379:82;;13653:1352;13779:3;13773:10;13806:18;13798:6;13795:30;13792:56;;;13828:18;;:::i;:::-;13857:97;13947:6;13907:38;13939:4;13933:11;13907:38;:::i;:::-;13901:4;13857:97;:::i;:::-;14009:4;;14073:2;14062:14;;14090:1;14085:663;;;;14792:1;14809:6;14806:89;;;-1:-1:-1;14861:19:1;;;14855:26;14806:89;-1:-1:-1;;13610:1:1;13606:11;;;13602:24;13598:29;13588:40;13634:1;13630:11;;;13585:57;14908:81;;14055:944;;14085:663;12879:1;12872:14;;;12916:4;12903:18;;-1:-1:-1;;14121:20:1;;;14239:236;14253:7;14250:1;14247:14;14239:236;;;14342:19;;;14336:26;14321:42;;14434:27;;;;14402:1;14390:14;;;;14269:19;;14239:236;;;14243:3;14503:6;14494:7;14491:19;14488:201;;;14564:19;;;14558:26;-1:-1:-1;;14647:1:1;14643:14;;;14659:3;14639:24;14635:37;14631:42;14616:58;14601:74;;14488:201;-1:-1:-1;;;;;14735:1:1;14719:14;;;14715:22;14702:36;;-1:-1:-1;13653:1352:1:o;16463:168::-;16536:9;;;16567;;16584:15;;;16578:22;;16564:37;16554:71;;16605:18;;:::i;16981:184::-;17051:6;17104:2;17092:9;17083:7;17079:23;17075:32;17072:52;;;17120:1;17117;17110:12;17072:52;-1:-1:-1;17143:16:1;;16981:184;-1:-1:-1;16981:184:1:o;17530:1187::-;17807:3;17836:1;17869:6;17863:13;17899:36;17925:9;17899:36;:::i;:::-;17954:1;17971:18;;;17998:133;;;;18145:1;18140:356;;;;17964:532;;17998:133;-1:-1:-1;;18031:24:1;;18019:37;;18104:14;;18097:22;18085:35;;18076:45;;;-1:-1:-1;17998:133:1;;18140:356;18171:6;18168:1;18161:17;18201:4;18246:2;18243:1;18233:16;18271:1;18285:165;18299:6;18296:1;18293:13;18285:165;;;18377:14;;18364:11;;;18357:35;18420:16;;;;18314:10;;18285:165;;;18289:3;;;18479:6;18474:3;18470:16;18463:23;;17964:532;;;;;18527:6;18521:13;18543:68;18602:8;18597:3;18590:4;18582:6;18578:17;18543:68;:::i;:::-;-1:-1:-1;;;18633:18:1;;18660:22;;;18709:1;18698:13;;17530:1187;-1:-1:-1;;;;17530:1187:1:o;20840:217::-;20880:1;20906;20896:132;;20950:10;20945:3;20941:20;20938:1;20931:31;20985:4;20982:1;20975:15;21013:4;21010:1;21003:15;20896:132;-1:-1:-1;21042:9:1;;20840:217::o;21062:128::-;21129:9;;;21150:11;;;21147:37;;;21164:18;;:::i;21195:489::-;-1:-1:-1;;;;;21464:15:1;;;21446:34;;21516:15;;21511:2;21496:18;;21489:43;21563:2;21548:18;;21541:34;;;21611:3;21606:2;21591:18;;21584:31;;;21389:4;;21632:46;;21658:19;;21650:6;21632:46;:::i;:::-;21624:54;21195:489;-1:-1:-1;;;;;;21195:489:1:o;21689:249::-;21758:6;21811:2;21799:9;21790:7;21786:23;21782:32;21779:52;;;21827:1;21824;21817:12;21779:52;21859:9;21853:16;21878:30;21902:5;21878:30;:::i;21943:245::-;22010:6;22063:2;22051:9;22042:7;22038:23;22034:32;22031:52;;;22079:1;22076;22069:12;22031:52;22111:9;22105:16;22130:28;22152:5;22130:28;:::i;25291:287::-;25420:3;25458:6;25452:13;25474:66;25533:6;25528:3;25521:4;25513:6;25509:17;25474:66;:::i;:::-;25556:16;;;;;25291:287;-1:-1:-1;;25291:287:1:o
Swarm Source
ipfs://790539d5dfa495379c24f342701618806a4f9cfe9ac39cf312f381a9f4eaf0fa
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.