Contract Overview
[ Download CSV Export ]
Contract Name:
cpNFT
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at basescan.org on 2023-07-23 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _burn(tokenId); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: contracts/CryptoPoker.sol // Contract based on https://docs.openzeppelin.com/contracts/4.x/erc721 pragma solidity ^0.8.12; // RINKBY: 0x08e9F7743EeD864C1D659eD5c404ecd3F6c56c64 // POLYGON: 0x617d4680a612CAb005223E63cB34F7dc94604C4d // OPTIMISM: 0xF3F2675a4b6d936F53A96ACcca8569de9B35AFdE // ARBITRUM ONE: 0xF70FdE6CdadfD287a0d5AAEBD6Ba02AE7D1b909d // BASE: 0x70d05f50cE755FF24783a6Da9DB85cB9Bd343CC6 contract cpNFT is ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; mapping(string => uint8) public existingURIs; constructor() ERC721("Cryptopoker Hand", "cpNFT") { // address payable contractOwner = payable(msg.sender); } // Function to withdraw all Ether from this contract. function withdraw() external onlyOwner { // require(msg.sender == owner, "You are not the owner of this contract"); address payable contractOwner = payable(msg.sender); contractOwner.transfer(address(this).balance); } function safeMint(address to, string memory uri) public onlyOwner { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); _setTokenURI(tokenId, uri); } function payToMint(address recipient, string memory metadataURI) public payable returns(uint256) { require (existingURIs[metadataURI] != 1, "Token has already been minted!"); // require (existingURIs[metadataURI] != 1, "YOU ALREADY OWN THIS TOKEN."); // NEW require (balanceOf(msg.sender) < 5, "You already hold too many tokens!"); require (msg.value >= 0.000001 ether, "Cost to mint exceeds cost provided. Send more eth"); uint256 newItemId = _tokenIdCounter.current(); // get and increment the counter _tokenIdCounter.increment(); existingURIs[metadataURI] = 1; // assign to 1 for taken _mint(recipient, newItemId); _setTokenURI(newItemId, metadataURI); return newItemId; } function isContentOwned(string memory uri) public view returns (bool) { return existingURIs[uri] == 1; } function count() public view returns (uint256) { return _tokenIdCounter.current(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"existingURIs","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"isContentOwned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"recipient","type":"address"},{"internalType":"string","name":"metadataURI","type":"string"}],"name":"payToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020017f43727970746f706f6b65722048616e64000000000000000000000000000000008152506040518060400160405280600581526020017f63704e4654000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000285565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b60208210811415620002b557620002b462000256565b5b50919050565b6132d080620002cb6000396000f3fe6080604052600436106101355760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde14610419578063c87b56dd14610442578063d204c45e1461047f578063e985e9c5146104a8578063f2fde38b146104e5578063f37971df1461050e57610135565b8063715018a6146103465780638da5cb5b1461035d57806395d89b41146103885780639f1cabc6146103b3578063a22cb465146103f057610135565b806323b872dd116100fd57806323b872dd146102335780633ccfd60b1461025c57806342842e0e14610273578063615fd9e21461029c5780636352211e146102cc57806370a082311461030957610135565b806301ffc9a71461013a57806306661abd1461017757806306fdde03146101a2578063081812fc146101cd578063095ea7b31461020a575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611f7b565b61054b565b60405161016e9190611fc3565b60405180910390f35b34801561018357600080fd5b5061018c61062d565b6040516101999190611ff7565b60405180910390f35b3480156101ae57600080fd5b506101b761063e565b6040516101c491906120ab565b60405180910390f35b3480156101d957600080fd5b506101f460048036038101906101ef91906120f9565b6106d0565b6040516102019190612167565b60405180910390f35b34801561021657600080fd5b50610231600480360381019061022c91906121ae565b610716565b005b34801561023f57600080fd5b5061025a600480360381019061025591906121ee565b61082e565b005b34801561026857600080fd5b5061027161088e565b005b34801561027f57600080fd5b5061029a600480360381019061029591906121ee565b6108e5565b005b6102b660048036038101906102b19190612376565b610905565b6040516102c39190611ff7565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee91906120f9565b610a7a565b6040516103009190612167565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b91906123d2565b610b2c565b60405161033d9190611ff7565b60405180910390f35b34801561035257600080fd5b5061035b610be4565b005b34801561036957600080fd5b50610372610bf8565b60405161037f9190612167565b60405180910390f35b34801561039457600080fd5b5061039d610c22565b6040516103aa91906120ab565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d591906123ff565b610cb4565b6040516103e79190611fc3565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612474565b610cef565b005b34801561042557600080fd5b50610440600480360381019061043b9190612555565b610d05565b005b34801561044e57600080fd5b50610469600480360381019061046491906120f9565b610d67565b60405161047691906120ab565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190612376565b610e7a565b005b3480156104b457600080fd5b506104cf60048036038101906104ca91906125d8565b610eb3565b6040516104dc9190611fc3565b60405180910390f35b3480156104f157600080fd5b5061050c600480360381019061050791906123d2565b610f47565b005b34801561051a57600080fd5b50610535600480360381019061053091906123ff565b610fcb565b6040516105429190612634565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610626575061062582611001565b5b9050919050565b6000610639600861106b565b905090565b60606000805461064d9061267e565b80601f01602080910402602001604051908101604052809291908181526020018280546106799061267e565b80156106c65780601f1061069b576101008083540402835291602001916106c6565b820191906000526020600020905b8154815290600101906020018083116106a957829003601f168201915b5050505050905090565b60006106db82611079565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072182610a7a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078990612722565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107b16110c4565b73ffffffffffffffffffffffffffffffffffffffff1614806107e057506107df816107da6110c4565b610eb3565b5b61081f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610816906127b4565b60405180910390fd5b61082983836110cc565b505050565b61083f6108396110c4565b82611185565b61087e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087590612846565b60405180910390fd5b61088983838361121a565b505050565b610896611481565b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108e1573d6000803e3d6000fd5b5050565b61090083838360405180602001604052806000815250610d05565b505050565b6000600160098360405161091991906128a2565b908152602001604051809103902060009054906101000a900460ff1660ff161415610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090612905565b60405180910390fd5b600561098433610b2c565b106109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90612997565b60405180910390fd5b64e8d4a51000341015610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390612a29565b60405180910390fd5b6000610a18600861106b565b9050610a2460086114ff565b6001600984604051610a3691906128a2565b908152602001604051809103902060006101000a81548160ff021916908360ff160217905550610a668482611515565b610a7081846116ef565b8091505092915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90612a95565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490612b27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bec611481565b610bf66000611763565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c319061267e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5d9061267e565b8015610caa5780601f10610c7f57610100808354040283529160200191610caa565b820191906000526020600020905b815481529060010190602001808311610c8d57829003601f168201915b5050505050905090565b60006001600983604051610cc891906128a2565b908152602001604051809103902060009054906101000a900460ff1660ff16149050919050565b610d01610cfa6110c4565b8383611829565b5050565b610d16610d106110c4565b83611185565b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90612846565b60405180910390fd5b610d6184848484611996565b50505050565b6060610d7282611079565b6000600660008481526020019081526020016000208054610d929061267e565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbe9061267e565b8015610e0b5780601f10610de057610100808354040283529160200191610e0b565b820191906000526020600020905b815481529060010190602001808311610dee57829003601f168201915b505050505090506000610e1c6119f2565b9050600081511415610e32578192505050610e75565b600082511115610e67578082604051602001610e4f929190612b47565b60405160208183030381529060405292505050610e75565b610e7084611a09565b925050505b919050565b610e82611481565b6000610e8e600861106b565b9050610e9a60086114ff565b610ea48382611a71565b610eae81836116ef565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f4f611481565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690612bdd565b60405180910390fd5b610fc881611763565b50565b6009818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b61108281611a8f565b6110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890612a95565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661113f83610a7a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061119183610a7a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111d357506111d28185610eb3565b5b8061121157508373ffffffffffffffffffffffffffffffffffffffff166111f9846106d0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661123a82610a7a565b73ffffffffffffffffffffffffffffffffffffffff1614611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790612c6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790612d01565b60405180910390fd5b61130b838383611afb565b6113166000826110cc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113669190612d50565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113bd9190612d84565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461147c838383611b00565b505050565b6114896110c4565b73ffffffffffffffffffffffffffffffffffffffff166114a7610bf8565b73ffffffffffffffffffffffffffffffffffffffff16146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490612e26565b60405180910390fd5b565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612e92565b60405180910390fd5b61158e81611a8f565b156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590612efe565b60405180910390fd5b6115da60008383611afb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461162a9190612d84565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116eb60008383611b00565b5050565b6116f882611a8f565b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90612f90565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061175e929190611e6c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90612ffc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119899190611fc3565b60405180910390a3505050565b6119a184848461121a565b6119ad84848484611b05565b6119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e39061308e565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611a1482611079565b6000611a1e6119f2565b90506000815111611a3e5760405180602001604052806000815250611a69565b80611a4884611c8d565b604051602001611a59929190612b47565b6040516020818303038152906040525b915050919050565b611a8b828260405180602001604052806000815250611dee565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000611b268473ffffffffffffffffffffffffffffffffffffffff16611e49565b15611c80578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b4f6110c4565b8786866040518563ffffffff1660e01b8152600401611b719493929190613103565b6020604051808303816000875af1925050508015611bad57506040513d601f19601f82011682018060405250810190611baa9190613164565b60015b611c30573d8060008114611bdd576040519150601f19603f3d011682016040523d82523d6000602084013e611be2565b606091505b50600081511415611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061308e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c85565b600190505b949350505050565b60606000821415611cd5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611de9565b600082905060005b60008214611d07578080611cf090613191565b915050600a82611d009190613209565b9150611cdd565b60008167ffffffffffffffff811115611d2357611d2261224b565b5b6040519080825280601f01601f191660200182016040528015611d555781602001600182028036833780820191505090505b5090505b60008514611de257600182611d6e9190612d50565b9150600a85611d7d919061323a565b6030611d899190612d84565b60f81b818381518110611d9f57611d9e61326b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ddb9190613209565b9450611d59565b8093505050505b919050565b611df88383611515565b611e056000848484611b05565b611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b9061308e565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611e789061267e565b90600052602060002090601f016020900481019282611e9a5760008555611ee1565b82601f10611eb357805160ff1916838001178555611ee1565b82800160010185558215611ee1579182015b82811115611ee0578251825591602001919060010190611ec5565b5b509050611eee9190611ef2565b5090565b5b80821115611f0b576000816000905550600101611ef3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f5881611f23565b8114611f6357600080fd5b50565b600081359050611f7581611f4f565b92915050565b600060208284031215611f9157611f90611f19565b5b6000611f9f84828501611f66565b91505092915050565b60008115159050919050565b611fbd81611fa8565b82525050565b6000602082019050611fd86000830184611fb4565b92915050565b6000819050919050565b611ff181611fde565b82525050565b600060208201905061200c6000830184611fe8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204c578082015181840152602081019050612031565b8381111561205b576000848401525b50505050565b6000601f19601f8301169050919050565b600061207d82612012565b612087818561201d565b935061209781856020860161202e565b6120a081612061565b840191505092915050565b600060208201905081810360008301526120c58184612072565b905092915050565b6120d681611fde565b81146120e157600080fd5b50565b6000813590506120f3816120cd565b92915050565b60006020828403121561210f5761210e611f19565b5b600061211d848285016120e4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061215182612126565b9050919050565b61216181612146565b82525050565b600060208201905061217c6000830184612158565b92915050565b61218b81612146565b811461219657600080fd5b50565b6000813590506121a881612182565b92915050565b600080604083850312156121c5576121c4611f19565b5b60006121d385828601612199565b92505060206121e4858286016120e4565b9150509250929050565b60008060006060848603121561220757612206611f19565b5b600061221586828701612199565b935050602061222686828701612199565b9250506040612237868287016120e4565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61228382612061565b810181811067ffffffffffffffff821117156122a2576122a161224b565b5b80604052505050565b60006122b5611f0f565b90506122c1828261227a565b919050565b600067ffffffffffffffff8211156122e1576122e061224b565b5b6122ea82612061565b9050602081019050919050565b82818337600083830152505050565b6000612319612314846122c6565b6122ab565b90508281526020810184848401111561233557612334612246565b5b6123408482856122f7565b509392505050565b600082601f83011261235d5761235c612241565b5b813561236d848260208601612306565b91505092915050565b6000806040838503121561238d5761238c611f19565b5b600061239b85828601612199565b925050602083013567ffffffffffffffff8111156123bc576123bb611f1e565b5b6123c885828601612348565b9150509250929050565b6000602082840312156123e8576123e7611f19565b5b60006123f684828501612199565b91505092915050565b60006020828403121561241557612414611f19565b5b600082013567ffffffffffffffff81111561243357612432611f1e565b5b61243f84828501612348565b91505092915050565b61245181611fa8565b811461245c57600080fd5b50565b60008135905061246e81612448565b92915050565b6000806040838503121561248b5761248a611f19565b5b600061249985828601612199565b92505060206124aa8582860161245f565b9150509250929050565b600067ffffffffffffffff8211156124cf576124ce61224b565b5b6124d882612061565b9050602081019050919050565b60006124f86124f3846124b4565b6122ab565b90508281526020810184848401111561251457612513612246565b5b61251f8482856122f7565b509392505050565b600082601f83011261253c5761253b612241565b5b813561254c8482602086016124e5565b91505092915050565b6000806000806080858703121561256f5761256e611f19565b5b600061257d87828801612199565b945050602061258e87828801612199565b935050604061259f878288016120e4565b925050606085013567ffffffffffffffff8111156125c0576125bf611f1e565b5b6125cc87828801612527565b91505092959194509250565b600080604083850312156125ef576125ee611f19565b5b60006125fd85828601612199565b925050602061260e85828601612199565b9150509250929050565b600060ff82169050919050565b61262e81612618565b82525050565b60006020820190506126496000830184612625565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061269657607f821691505b602082108114156126aa576126a961264f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061270c60218361201d565b9150612717826126b0565b604082019050919050565b6000602082019050818103600083015261273b816126ff565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061279e603e8361201d565b91506127a982612742565b604082019050919050565b600060208201905081810360008301526127cd81612791565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612830602e8361201d565b915061283b826127d4565b604082019050919050565b6000602082019050818103600083015261285f81612823565b9050919050565b600081905092915050565b600061287c82612012565b6128868185612866565b935061289681856020860161202e565b80840191505092915050565b60006128ae8284612871565b915081905092915050565b7f546f6b656e2068617320616c7265616479206265656e206d696e746564210000600082015250565b60006128ef601e8361201d565b91506128fa826128b9565b602082019050919050565b6000602082019050818103600083015261291e816128e2565b9050919050565b7f596f7520616c726561647920686f6c6420746f6f206d616e7920746f6b656e7360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061298160218361201d565b915061298c82612925565b604082019050919050565b600060208201905081810360008301526129b081612974565b9050919050565b7f436f737420746f206d696e74206578636565647320636f73742070726f76696460008201527f65642e2053656e64206d6f726520657468000000000000000000000000000000602082015250565b6000612a1360318361201d565b9150612a1e826129b7565b604082019050919050565b60006020820190508181036000830152612a4281612a06565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612a7f60188361201d565b9150612a8a82612a49565b602082019050919050565b60006020820190508181036000830152612aae81612a72565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612b1160298361201d565b9150612b1c82612ab5565b604082019050919050565b60006020820190508181036000830152612b4081612b04565b9050919050565b6000612b538285612871565b9150612b5f8284612871565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bc760268361201d565b9150612bd282612b6b565b604082019050919050565b60006020820190508181036000830152612bf681612bba565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612c5960258361201d565b9150612c6482612bfd565b604082019050919050565b60006020820190508181036000830152612c8881612c4c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612ceb60248361201d565b9150612cf682612c8f565b604082019050919050565b60006020820190508181036000830152612d1a81612cde565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d5b82611fde565b9150612d6683611fde565b925082821015612d7957612d78612d21565b5b828203905092915050565b6000612d8f82611fde565b9150612d9a83611fde565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dcf57612dce612d21565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e1060208361201d565b9150612e1b82612dda565b602082019050919050565b60006020820190508181036000830152612e3f81612e03565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612e7c60208361201d565b9150612e8782612e46565b602082019050919050565b60006020820190508181036000830152612eab81612e6f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612ee8601c8361201d565b9150612ef382612eb2565b602082019050919050565b60006020820190508181036000830152612f1781612edb565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000612f7a602e8361201d565b9150612f8582612f1e565b604082019050919050565b60006020820190508181036000830152612fa981612f6d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612fe660198361201d565b9150612ff182612fb0565b602082019050919050565b6000602082019050818103600083015261301581612fd9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061307860328361201d565b91506130838261301c565b604082019050919050565b600060208201905081810360008301526130a78161306b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130d5826130ae565b6130df81856130b9565b93506130ef81856020860161202e565b6130f881612061565b840191505092915050565b60006080820190506131186000830187612158565b6131256020830186612158565b6131326040830185611fe8565b818103606083015261314481846130ca565b905095945050505050565b60008151905061315e81611f4f565b92915050565b60006020828403121561317a57613179611f19565b5b60006131888482850161314f565b91505092915050565b600061319c82611fde565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131cf576131ce612d21565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061321482611fde565b915061321f83611fde565b92508261322f5761322e6131da565b5b828204905092915050565b600061324582611fde565b915061325083611fde565b9250826132605761325f6131da565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212205a5a536a568ad88626fd18eb9312ad63e2e2a51e26af95a81b6d1db4c34dcd9c64736f6c634300080c0033
Deployed ByteCode Sourcemap
42568:1829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26202:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44299:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28642:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28159:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29342:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42945:242;;;;;;;;;;;;;:::i;:::-;;29749:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43422:750;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26840:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26571:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6738:103;;;;;;;;;;;;;:::i;:::-;;6090:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27298:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44179:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28885:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30005:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40698:624;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43194:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29111:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6996:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42707:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26202:305;26304:4;26356:25;26341:40;;;:11;:40;;;;:105;;;;26413:33;26398:48;;;:11;:48;;;;26341:105;:158;;;;26463:36;26487:11;26463:23;:36::i;:::-;26341:158;26321:178;;26202:305;;;:::o;44299:93::-;44337:7;44360:25;:15;:23;:25::i;:::-;44353:32;;44299:93;:::o;27129:100::-;27183:13;27216:5;27209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27129:100;:::o;28642:171::-;28718:7;28738:23;28753:7;28738:14;:23::i;:::-;28781:15;:24;28797:7;28781:24;;;;;;;;;;;;;;;;;;;;;28774:31;;28642:171;;;:::o;28159:417::-;28240:13;28256:23;28271:7;28256:14;:23::i;:::-;28240:39;;28304:5;28298:11;;:2;:11;;;;28290:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28398:5;28382:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28407:37;28424:5;28431:12;:10;:12::i;:::-;28407:16;:37::i;:::-;28382:62;28360:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28547:21;28556:2;28560:7;28547:8;:21::i;:::-;28229:347;28159:417;;:::o;29342:336::-;29537:41;29556:12;:10;:12::i;:::-;29570:7;29537:18;:41::i;:::-;29529:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29642:28;29652:4;29658:2;29662:7;29642:9;:28::i;:::-;29342:336;;;:::o;42945:242::-;5976:13;:11;:13::i;:::-;43075:29:::1;43115:10;43075:51;;43135:13;:22;;:45;43158:21;43135:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42984:203;42945:242::o:0;29749:185::-;29887:39;29904:4;29910:2;29914:7;29887:39;;;;;;;;;;;;:16;:39::i;:::-;29749:185;;;:::o;43422:750::-;43510:7;43564:1;43535:12;43548:11;43535:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:30;;;;43526:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43733:1;43709:21;43719:10;43709:9;:21::i;:::-;:25;43700:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;43801:14;43788:9;:27;;43779:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;43878:17;43898:25;:15;:23;:25::i;:::-;43878:45;;43968:27;:15;:25;:27::i;:::-;44030:1;44002:12;44015:11;44002:25;;;;;;:::i;:::-;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44070:27;44076:9;44087;44070:5;:27::i;:::-;44104:36;44117:9;44128:11;44104:12;:36::i;:::-;44156:9;44149:16;;;43422:750;;;;:::o;26840:222::-;26912:7;26932:13;26948:7;:16;26956:7;26948:16;;;;;;;;;;;;;;;;;;;;;26932:32;;27000:1;26983:19;;:5;:19;;;;26975:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27049:5;27042:12;;;26840:222;;;:::o;26571:207::-;26643:7;26688:1;26671:19;;:5;:19;;;;26663:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26754:9;:16;26764:5;26754:16;;;;;;;;;;;;;;;;26747:23;;26571:207;;;:::o;6738:103::-;5976:13;:11;:13::i;:::-;6803:30:::1;6830:1;6803:18;:30::i;:::-;6738:103::o:0;6090:87::-;6136:7;6163:6;;;;;;;;;;;6156:13;;6090:87;:::o;27298:104::-;27354:13;27387:7;27380:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27298:104;:::o;44179:113::-;44243:4;44284:1;44263:12;44276:3;44263:17;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:22;;;44256:29;;44179:113;;;:::o;28885:155::-;28980:52;28999:12;:10;:12::i;:::-;29013:8;29023;28980:18;:52::i;:::-;28885:155;;:::o;30005:323::-;30179:41;30198:12;:10;:12::i;:::-;30212:7;30179:18;:41::i;:::-;30171:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30282:38;30296:4;30302:2;30306:7;30315:4;30282:13;:38::i;:::-;30005:323;;;;:::o;40698:624::-;40771:13;40797:23;40812:7;40797:14;:23::i;:::-;40833;40859:10;:19;40870:7;40859:19;;;;;;;;;;;40833:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40889:18;40910:10;:8;:10::i;:::-;40889:31;;41018:1;41002:4;40996:18;:23;40992:72;;;41043:9;41036:16;;;;;;40992:72;41194:1;41174:9;41168:23;:27;41164:108;;;41243:4;41249:9;41226:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41212:48;;;;;;41164:108;41291:23;41306:7;41291:14;:23::i;:::-;41284:30;;;;40698:624;;;;:::o;43194:221::-;5976:13;:11;:13::i;:::-;43267:15:::1;43285:25;:15;:23;:25::i;:::-;43267:43;;43317:27;:15;:25;:27::i;:::-;43351:22;43361:2;43365:7;43351:9;:22::i;:::-;43380:26;43393:7;43402:3;43380:12;:26::i;:::-;43260:155;43194:221:::0;;:::o;29111:164::-;29208:4;29232:18;:25;29251:5;29232:25;;;;;;;;;;;;;;;:35;29258:8;29232:35;;;;;;;;;;;;;;;;;;;;;;;;;29225:42;;29111:164;;;;:::o;6996:201::-;5976:13;:11;:13::i;:::-;7105:1:::1;7085:22;;:8;:22;;;;7077:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7161:28;7180:8;7161:18;:28::i;:::-;6996:201:::0;:::o;42707:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18944:157::-;19029:4;19068:25;19053:40;;;:11;:40;;;;19046:47;;18944:157;;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;36617:135::-;36699:16;36707:7;36699;:16::i;:::-;36691:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36617:135;:::o;4641:98::-;4694:7;4721:10;4714:17;;4641:98;:::o;35896:174::-;35998:2;35971:15;:24;35987:7;35971:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36054:7;36050:2;36016:46;;36025:23;36040:7;36025:14;:23::i;:::-;36016:46;;;;;;;;;;;;35896:174;;:::o;32129:264::-;32222:4;32239:13;32255:23;32270:7;32255:14;:23::i;:::-;32239:39;;32308:5;32297:16;;:7;:16;;;:52;;;;32317:32;32334:5;32341:7;32317:16;:32::i;:::-;32297:52;:87;;;;32377:7;32353:31;;:20;32365:7;32353:11;:20::i;:::-;:31;;;32297:87;32289:96;;;32129:264;;;;:::o;35152:625::-;35311:4;35284:31;;:23;35299:7;35284:14;:23::i;:::-;:31;;;35276:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35390:1;35376:16;;:2;:16;;;;35368:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35446:39;35467:4;35473:2;35477:7;35446:20;:39::i;:::-;35550:29;35567:1;35571:7;35550:8;:29::i;:::-;35611:1;35592:9;:15;35602:4;35592:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35640:1;35623:9;:13;35633:2;35623:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35671:2;35652:7;:16;35660:7;35652:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35710:7;35706:2;35691:27;;35700:4;35691:27;;;;;;;;;;;;35731:38;35751:4;35757:2;35761:7;35731:19;:38::i;:::-;35152:625;;;:::o;6255:132::-;6330:12;:10;:12::i;:::-;6319:23;;:7;:5;:7::i;:::-;:23;;;6311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6255:132::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;33727:439::-;33821:1;33807:16;;:2;:16;;;;33799:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33880:16;33888:7;33880;:16::i;:::-;33879:17;33871:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33942:45;33971:1;33975:2;33979:7;33942:20;:45::i;:::-;34017:1;34000:9;:13;34010:2;34000:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34048:2;34029:7;:16;34037:7;34029:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34093:7;34089:2;34068:33;;34085:1;34068:33;;;;;;;;;;;;34114:44;34142:1;34146:2;34150:7;34114:19;:44::i;:::-;33727:439;;:::o;41478:217::-;41578:16;41586:7;41578;:16::i;:::-;41570:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41678:9;41656:10;:19;41667:7;41656:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;41478:217;;:::o;7357:191::-;7431:16;7450:6;;;;;;;;;;;7431:25;;7476:8;7467:6;;:17;;;;;;;;;;;;;;;;;;7531:8;7500:40;;7521:8;7500:40;;;;;;;;;;;;7420:128;7357:191;:::o;36213:315::-;36368:8;36359:17;;:5;:17;;;;36351:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36455:8;36417:18;:25;36436:5;36417:25;;;;;;;;;;;;;;;:35;36443:8;36417:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36501:8;36479:41;;36494:5;36479:41;;;36511:8;36479:41;;;;;;:::i;:::-;;;;;;;;36213:315;;;:::o;31209:313::-;31365:28;31375:4;31381:2;31385:7;31365:9;:28::i;:::-;31412:47;31435:4;31441:2;31445:7;31454:4;31412:22;:47::i;:::-;31404:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31209:313;;;;:::o;28003:94::-;28054:13;28080:9;;;;;;;;;;;;;;28003:94;:::o;27473:281::-;27546:13;27572:23;27587:7;27572:14;:23::i;:::-;27608:21;27632:10;:8;:10::i;:::-;27608:34;;27684:1;27666:7;27660:21;:25;:86;;;;;;;;;;;;;;;;;27712:7;27721:18;:7;:16;:18::i;:::-;27695:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27660:86;27653:93;;;27473:281;;;:::o;32735:110::-;32811:26;32821:2;32825:7;32811:26;;;;;;;;;;;;:9;:26::i;:::-;32735:110;;:::o;31835:127::-;31900:4;31952:1;31924:30;;:7;:16;31932:7;31924:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31917:37;;31835:127;;;:::o;38741:126::-;;;;:::o;39252:125::-;;;;:::o;37316:853::-;37470:4;37491:15;:2;:13;;;:15::i;:::-;37487:675;;;37543:2;37527:36;;;37564:12;:10;:12::i;:::-;37578:4;37584:7;37593:4;37527:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37523:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37785:1;37768:6;:13;:18;37764:328;;;37811:60;;;;;;;;;;:::i;:::-;;;;;;;;37764:328;38042:6;38036:13;38027:6;38023:2;38019:15;38012:38;37523:584;37659:41;;;37649:51;;;:6;:51;;;;37642:58;;;;;37487:675;38146:4;38139:11;;37316:853;;;;;;;:::o;1895:723::-;1951:13;2181:1;2172:5;:10;2168:53;;;2199:10;;;;;;;;;;;;;;;;;;;;;2168:53;2231:12;2246:5;2231:20;;2262:14;2287:78;2302:1;2294:4;:9;2287:78;;2320:8;;;;;:::i;:::-;;;;2351:2;2343:10;;;;;:::i;:::-;;;2287:78;;;2375:19;2407:6;2397:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375:39;;2425:154;2441:1;2432:5;:10;2425:154;;2469:1;2459:11;;;;;:::i;:::-;;;2536:2;2528:5;:10;;;;:::i;:::-;2515:2;:24;;;;:::i;:::-;2502:39;;2485:6;2492;2485:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2565:2;2556:11;;;;;:::i;:::-;;;2425:154;;;2603:6;2589:21;;;;;1895:723;;;;:::o;33072:319::-;33201:18;33207:2;33211:7;33201:5;:18::i;:::-;33252:53;33283:1;33287:2;33291:7;33300:4;33252:22;:53::i;:::-;33230:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33072:319;;;:::o;8788:326::-;8848:4;9105:1;9083:7;:19;;;:23;9076:30;;8788:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:654::-;8099:6;8107;8156:2;8144:9;8135:7;8131:23;8127:32;8124:119;;;8162:79;;:::i;:::-;8124:119;8282:1;8307:53;8352:7;8343:6;8332:9;8328:22;8307:53;:::i;:::-;8297:63;;8253:117;8437:2;8426:9;8422:18;8409:32;8468:18;8460:6;8457:30;8454:117;;;8490:79;;:::i;:::-;8454:117;8595:63;8650:7;8641:6;8630:9;8626:22;8595:63;:::i;:::-;8585:73;;8380:288;8021:654;;;;;:::o;8681:329::-;8740:6;8789:2;8777:9;8768:7;8764:23;8760:32;8757:119;;;8795:79;;:::i;:::-;8757:119;8915:1;8940:53;8985:7;8976:6;8965:9;8961:22;8940:53;:::i;:::-;8930:63;;8886:117;8681:329;;;;:::o;9016:509::-;9085:6;9134:2;9122:9;9113:7;9109:23;9105:32;9102:119;;;9140:79;;:::i;:::-;9102:119;9288:1;9277:9;9273:17;9260:31;9318:18;9310:6;9307:30;9304:117;;;9340:79;;:::i;:::-;9304:117;9445:63;9500:7;9491:6;9480:9;9476:22;9445:63;:::i;:::-;9435:73;;9231:287;9016:509;;;;:::o;9531:116::-;9601:21;9616:5;9601:21;:::i;:::-;9594:5;9591:32;9581:60;;9637:1;9634;9627:12;9581:60;9531:116;:::o;9653:133::-;9696:5;9734:6;9721:20;9712:29;;9750:30;9774:5;9750:30;:::i;:::-;9653:133;;;;:::o;9792:468::-;9857:6;9865;9914:2;9902:9;9893:7;9889:23;9885:32;9882:119;;;9920:79;;:::i;:::-;9882:119;10040:1;10065:53;10110:7;10101:6;10090:9;10086:22;10065:53;:::i;:::-;10055:63;;10011:117;10167:2;10193:50;10235:7;10226:6;10215:9;10211:22;10193:50;:::i;:::-;10183:60;;10138:115;9792:468;;;;;:::o;10266:307::-;10327:4;10417:18;10409:6;10406:30;10403:56;;;10439:18;;:::i;:::-;10403:56;10477:29;10499:6;10477:29;:::i;:::-;10469:37;;10561:4;10555;10551:15;10543:23;;10266:307;;;:::o;10579:410::-;10656:5;10681:65;10697:48;10738:6;10697:48;:::i;:::-;10681:65;:::i;:::-;10672:74;;10769:6;10762:5;10755:21;10807:4;10800:5;10796:16;10845:3;10836:6;10831:3;10827:16;10824:25;10821:112;;;10852:79;;:::i;:::-;10821:112;10942:41;10976:6;10971:3;10966;10942:41;:::i;:::-;10662:327;10579:410;;;;;:::o;11008:338::-;11063:5;11112:3;11105:4;11097:6;11093:17;11089:27;11079:122;;11120:79;;:::i;:::-;11079:122;11237:6;11224:20;11262:78;11336:3;11328:6;11321:4;11313:6;11309:17;11262:78;:::i;:::-;11253:87;;11069:277;11008:338;;;;:::o;11352:943::-;11447:6;11455;11463;11471;11520:3;11508:9;11499:7;11495:23;11491:33;11488:120;;;11527:79;;:::i;:::-;11488:120;11647:1;11672:53;11717:7;11708:6;11697:9;11693:22;11672:53;:::i;:::-;11662:63;;11618:117;11774:2;11800:53;11845:7;11836:6;11825:9;11821:22;11800:53;:::i;:::-;11790:63;;11745:118;11902:2;11928:53;11973:7;11964:6;11953:9;11949:22;11928:53;:::i;:::-;11918:63;;11873:118;12058:2;12047:9;12043:18;12030:32;12089:18;12081:6;12078:30;12075:117;;;12111:79;;:::i;:::-;12075:117;12216:62;12270:7;12261:6;12250:9;12246:22;12216:62;:::i;:::-;12206:72;;12001:287;11352:943;;;;;;;:::o;12301:474::-;12369:6;12377;12426:2;12414:9;12405:7;12401:23;12397:32;12394:119;;;12432:79;;:::i;:::-;12394:119;12552:1;12577:53;12622:7;12613:6;12602:9;12598:22;12577:53;:::i;:::-;12567:63;;12523:117;12679:2;12705:53;12750:7;12741:6;12730:9;12726:22;12705:53;:::i;:::-;12695:63;;12650:118;12301:474;;;;;:::o;12781:86::-;12816:7;12856:4;12849:5;12845:16;12834:27;;12781:86;;;:::o;12873:112::-;12956:22;12972:5;12956:22;:::i;:::-;12951:3;12944:35;12873:112;;:::o;12991:214::-;13080:4;13118:2;13107:9;13103:18;13095:26;;13131:67;13195:1;13184:9;13180:17;13171:6;13131:67;:::i;:::-;12991:214;;;;:::o;13211:180::-;13259:77;13256:1;13249:88;13356:4;13353:1;13346:15;13380:4;13377:1;13370:15;13397:320;13441:6;13478:1;13472:4;13468:12;13458:22;;13525:1;13519:4;13515:12;13546:18;13536:81;;13602:4;13594:6;13590:17;13580:27;;13536:81;13664:2;13656:6;13653:14;13633:18;13630:38;13627:84;;;13683:18;;:::i;:::-;13627:84;13448:269;13397:320;;;:::o;13723:220::-;13863:34;13859:1;13851:6;13847:14;13840:58;13932:3;13927:2;13919:6;13915:15;13908:28;13723:220;:::o;13949:366::-;14091:3;14112:67;14176:2;14171:3;14112:67;:::i;:::-;14105:74;;14188:93;14277:3;14188:93;:::i;:::-;14306:2;14301:3;14297:12;14290:19;;13949:366;;;:::o;14321:419::-;14487:4;14525:2;14514:9;14510:18;14502:26;;14574:9;14568:4;14564:20;14560:1;14549:9;14545:17;14538:47;14602:131;14728:4;14602:131;:::i;:::-;14594:139;;14321:419;;;:::o;14746:249::-;14886:34;14882:1;14874:6;14870:14;14863:58;14955:32;14950:2;14942:6;14938:15;14931:57;14746:249;:::o;15001:366::-;15143:3;15164:67;15228:2;15223:3;15164:67;:::i;:::-;15157:74;;15240:93;15329:3;15240:93;:::i;:::-;15358:2;15353:3;15349:12;15342:19;;15001:366;;;:::o;15373:419::-;15539:4;15577:2;15566:9;15562:18;15554:26;;15626:9;15620:4;15616:20;15612:1;15601:9;15597:17;15590:47;15654:131;15780:4;15654:131;:::i;:::-;15646:139;;15373:419;;;:::o;15798:233::-;15938:34;15934:1;15926:6;15922:14;15915:58;16007:16;16002:2;15994:6;15990:15;15983:41;15798:233;:::o;16037:366::-;16179:3;16200:67;16264:2;16259:3;16200:67;:::i;:::-;16193:74;;16276:93;16365:3;16276:93;:::i;:::-;16394:2;16389:3;16385:12;16378:19;;16037:366;;;:::o;16409:419::-;16575:4;16613:2;16602:9;16598:18;16590:26;;16662:9;16656:4;16652:20;16648:1;16637:9;16633:17;16626:47;16690:131;16816:4;16690:131;:::i;:::-;16682:139;;16409:419;;;:::o;16834:148::-;16936:11;16973:3;16958:18;;16834:148;;;;:::o;16988:377::-;17094:3;17122:39;17155:5;17122:39;:::i;:::-;17177:89;17259:6;17254:3;17177:89;:::i;:::-;17170:96;;17275:52;17320:6;17315:3;17308:4;17301:5;17297:16;17275:52;:::i;:::-;17352:6;17347:3;17343:16;17336:23;;17098:267;16988:377;;;;:::o;17371:275::-;17503:3;17525:95;17616:3;17607:6;17525:95;:::i;:::-;17518:102;;17637:3;17630:10;;17371:275;;;;:::o;17652:180::-;17792:32;17788:1;17780:6;17776:14;17769:56;17652:180;:::o;17838:366::-;17980:3;18001:67;18065:2;18060:3;18001:67;:::i;:::-;17994:74;;18077:93;18166:3;18077:93;:::i;:::-;18195:2;18190:3;18186:12;18179:19;;17838:366;;;:::o;18210:419::-;18376:4;18414:2;18403:9;18399:18;18391:26;;18463:9;18457:4;18453:20;18449:1;18438:9;18434:17;18427:47;18491:131;18617:4;18491:131;:::i;:::-;18483:139;;18210:419;;;:::o;18635:220::-;18775:34;18771:1;18763:6;18759:14;18752:58;18844:3;18839:2;18831:6;18827:15;18820:28;18635:220;:::o;18861:366::-;19003:3;19024:67;19088:2;19083:3;19024:67;:::i;:::-;19017:74;;19100:93;19189:3;19100:93;:::i;:::-;19218:2;19213:3;19209:12;19202:19;;18861:366;;;:::o;19233:419::-;19399:4;19437:2;19426:9;19422:18;19414:26;;19486:9;19480:4;19476:20;19472:1;19461:9;19457:17;19450:47;19514:131;19640:4;19514:131;:::i;:::-;19506:139;;19233:419;;;:::o;19658:236::-;19798:34;19794:1;19786:6;19782:14;19775:58;19867:19;19862:2;19854:6;19850:15;19843:44;19658:236;:::o;19900:366::-;20042:3;20063:67;20127:2;20122:3;20063:67;:::i;:::-;20056:74;;20139:93;20228:3;20139:93;:::i;:::-;20257:2;20252:3;20248:12;20241:19;;19900:366;;;:::o;20272:419::-;20438:4;20476:2;20465:9;20461:18;20453:26;;20525:9;20519:4;20515:20;20511:1;20500:9;20496:17;20489:47;20553:131;20679:4;20553:131;:::i;:::-;20545:139;;20272:419;;;:::o;20697:174::-;20837:26;20833:1;20825:6;20821:14;20814:50;20697:174;:::o;20877:366::-;21019:3;21040:67;21104:2;21099:3;21040:67;:::i;:::-;21033:74;;21116:93;21205:3;21116:93;:::i;:::-;21234:2;21229:3;21225:12;21218:19;;20877:366;;;:::o;21249:419::-;21415:4;21453:2;21442:9;21438:18;21430:26;;21502:9;21496:4;21492:20;21488:1;21477:9;21473:17;21466:47;21530:131;21656:4;21530:131;:::i;:::-;21522:139;;21249:419;;;:::o;21674:228::-;21814:34;21810:1;21802:6;21798:14;21791:58;21883:11;21878:2;21870:6;21866:15;21859:36;21674:228;:::o;21908:366::-;22050:3;22071:67;22135:2;22130:3;22071:67;:::i;:::-;22064:74;;22147:93;22236:3;22147:93;:::i;:::-;22265:2;22260:3;22256:12;22249:19;;21908:366;;;:::o;22280:419::-;22446:4;22484:2;22473:9;22469:18;22461:26;;22533:9;22527:4;22523:20;22519:1;22508:9;22504:17;22497:47;22561:131;22687:4;22561:131;:::i;:::-;22553:139;;22280:419;;;:::o;22705:435::-;22885:3;22907:95;22998:3;22989:6;22907:95;:::i;:::-;22900:102;;23019:95;23110:3;23101:6;23019:95;:::i;:::-;23012:102;;23131:3;23124:10;;22705:435;;;;;:::o;23146:225::-;23286:34;23282:1;23274:6;23270:14;23263:58;23355:8;23350:2;23342:6;23338:15;23331:33;23146:225;:::o;23377:366::-;23519:3;23540:67;23604:2;23599:3;23540:67;:::i;:::-;23533:74;;23616:93;23705:3;23616:93;:::i;:::-;23734:2;23729:3;23725:12;23718:19;;23377:366;;;:::o;23749:419::-;23915:4;23953:2;23942:9;23938:18;23930:26;;24002:9;23996:4;23992:20;23988:1;23977:9;23973:17;23966:47;24030:131;24156:4;24030:131;:::i;:::-;24022:139;;23749:419;;;:::o;24174:224::-;24314:34;24310:1;24302:6;24298:14;24291:58;24383:7;24378:2;24370:6;24366:15;24359:32;24174:224;:::o;24404:366::-;24546:3;24567:67;24631:2;24626:3;24567:67;:::i;:::-;24560:74;;24643:93;24732:3;24643:93;:::i;:::-;24761:2;24756:3;24752:12;24745:19;;24404:366;;;:::o;24776:419::-;24942:4;24980:2;24969:9;24965:18;24957:26;;25029:9;25023:4;25019:20;25015:1;25004:9;25000:17;24993:47;25057:131;25183:4;25057:131;:::i;:::-;25049:139;;24776:419;;;:::o;25201:223::-;25341:34;25337:1;25329:6;25325:14;25318:58;25410:6;25405:2;25397:6;25393:15;25386:31;25201:223;:::o;25430:366::-;25572:3;25593:67;25657:2;25652:3;25593:67;:::i;:::-;25586:74;;25669:93;25758:3;25669:93;:::i;:::-;25787:2;25782:3;25778:12;25771:19;;25430:366;;;:::o;25802:419::-;25968:4;26006:2;25995:9;25991:18;25983:26;;26055:9;26049:4;26045:20;26041:1;26030:9;26026:17;26019:47;26083:131;26209:4;26083:131;:::i;:::-;26075:139;;25802:419;;;:::o;26227:180::-;26275:77;26272:1;26265:88;26372:4;26369:1;26362:15;26396:4;26393:1;26386:15;26413:191;26453:4;26473:20;26491:1;26473:20;:::i;:::-;26468:25;;26507:20;26525:1;26507:20;:::i;:::-;26502:25;;26546:1;26543;26540:8;26537:34;;;26551:18;;:::i;:::-;26537:34;26596:1;26593;26589:9;26581:17;;26413:191;;;;:::o;26610:305::-;26650:3;26669:20;26687:1;26669:20;:::i;:::-;26664:25;;26703:20;26721:1;26703:20;:::i;:::-;26698:25;;26857:1;26789:66;26785:74;26782:1;26779:81;26776:107;;;26863:18;;:::i;:::-;26776:107;26907:1;26904;26900:9;26893:16;;26610:305;;;;:::o;26921:182::-;27061:34;27057:1;27049:6;27045:14;27038:58;26921:182;:::o;27109:366::-;27251:3;27272:67;27336:2;27331:3;27272:67;:::i;:::-;27265:74;;27348:93;27437:3;27348:93;:::i;:::-;27466:2;27461:3;27457:12;27450:19;;27109:366;;;:::o;27481:419::-;27647:4;27685:2;27674:9;27670:18;27662:26;;27734:9;27728:4;27724:20;27720:1;27709:9;27705:17;27698:47;27762:131;27888:4;27762:131;:::i;:::-;27754:139;;27481:419;;;:::o;27906:182::-;28046:34;28042:1;28034:6;28030:14;28023:58;27906:182;:::o;28094:366::-;28236:3;28257:67;28321:2;28316:3;28257:67;:::i;:::-;28250:74;;28333:93;28422:3;28333:93;:::i;:::-;28451:2;28446:3;28442:12;28435:19;;28094:366;;;:::o;28466:419::-;28632:4;28670:2;28659:9;28655:18;28647:26;;28719:9;28713:4;28709:20;28705:1;28694:9;28690:17;28683:47;28747:131;28873:4;28747:131;:::i;:::-;28739:139;;28466:419;;;:::o;28891:178::-;29031:30;29027:1;29019:6;29015:14;29008:54;28891:178;:::o;29075:366::-;29217:3;29238:67;29302:2;29297:3;29238:67;:::i;:::-;29231:74;;29314:93;29403:3;29314:93;:::i;:::-;29432:2;29427:3;29423:12;29416:19;;29075:366;;;:::o;29447:419::-;29613:4;29651:2;29640:9;29636:18;29628:26;;29700:9;29694:4;29690:20;29686:1;29675:9;29671:17;29664:47;29728:131;29854:4;29728:131;:::i;:::-;29720:139;;29447:419;;;:::o;29872:233::-;30012:34;30008:1;30000:6;29996:14;29989:58;30081:16;30076:2;30068:6;30064:15;30057:41;29872:233;:::o;30111:366::-;30253:3;30274:67;30338:2;30333:3;30274:67;:::i;:::-;30267:74;;30350:93;30439:3;30350:93;:::i;:::-;30468:2;30463:3;30459:12;30452:19;;30111:366;;;:::o;30483:419::-;30649:4;30687:2;30676:9;30672:18;30664:26;;30736:9;30730:4;30726:20;30722:1;30711:9;30707:17;30700:47;30764:131;30890:4;30764:131;:::i;:::-;30756:139;;30483:419;;;:::o;30908:175::-;31048:27;31044:1;31036:6;31032:14;31025:51;30908:175;:::o;31089:366::-;31231:3;31252:67;31316:2;31311:3;31252:67;:::i;:::-;31245:74;;31328:93;31417:3;31328:93;:::i;:::-;31446:2;31441:3;31437:12;31430:19;;31089:366;;;:::o;31461:419::-;31627:4;31665:2;31654:9;31650:18;31642:26;;31714:9;31708:4;31704:20;31700:1;31689:9;31685:17;31678:47;31742:131;31868:4;31742:131;:::i;:::-;31734:139;;31461:419;;;:::o;31886:237::-;32026:34;32022:1;32014:6;32010:14;32003:58;32095:20;32090:2;32082:6;32078:15;32071:45;31886:237;:::o;32129:366::-;32271:3;32292:67;32356:2;32351:3;32292:67;:::i;:::-;32285:74;;32368:93;32457:3;32368:93;:::i;:::-;32486:2;32481:3;32477:12;32470:19;;32129:366;;;:::o;32501:419::-;32667:4;32705:2;32694:9;32690:18;32682:26;;32754:9;32748:4;32744:20;32740:1;32729:9;32725:17;32718:47;32782:131;32908:4;32782:131;:::i;:::-;32774:139;;32501:419;;;:::o;32926:98::-;32977:6;33011:5;33005:12;32995:22;;32926:98;;;:::o;33030:168::-;33113:11;33147:6;33142:3;33135:19;33187:4;33182:3;33178:14;33163:29;;33030:168;;;;:::o;33204:360::-;33290:3;33318:38;33350:5;33318:38;:::i;:::-;33372:70;33435:6;33430:3;33372:70;:::i;:::-;33365:77;;33451:52;33496:6;33491:3;33484:4;33477:5;33473:16;33451:52;:::i;:::-;33528:29;33550:6;33528:29;:::i;:::-;33523:3;33519:39;33512:46;;33294:270;33204:360;;;;:::o;33570:640::-;33765:4;33803:3;33792:9;33788:19;33780:27;;33817:71;33885:1;33874:9;33870:17;33861:6;33817:71;:::i;:::-;33898:72;33966:2;33955:9;33951:18;33942:6;33898:72;:::i;:::-;33980;34048:2;34037:9;34033:18;34024:6;33980:72;:::i;:::-;34099:9;34093:4;34089:20;34084:2;34073:9;34069:18;34062:48;34127:76;34198:4;34189:6;34127:76;:::i;:::-;34119:84;;33570:640;;;;;;;:::o;34216:141::-;34272:5;34303:6;34297:13;34288:22;;34319:32;34345:5;34319:32;:::i;:::-;34216:141;;;;:::o;34363:349::-;34432:6;34481:2;34469:9;34460:7;34456:23;34452:32;34449:119;;;34487:79;;:::i;:::-;34449:119;34607:1;34632:63;34687:7;34678:6;34667:9;34663:22;34632:63;:::i;:::-;34622:73;;34578:127;34363:349;;;;:::o;34718:233::-;34757:3;34780:24;34798:5;34780:24;:::i;:::-;34771:33;;34826:66;34819:5;34816:77;34813:103;;;34896:18;;:::i;:::-;34813:103;34943:1;34936:5;34932:13;34925:20;;34718:233;;;:::o;34957:180::-;35005:77;35002:1;34995:88;35102:4;35099:1;35092:15;35126:4;35123:1;35116:15;35143:185;35183:1;35200:20;35218:1;35200:20;:::i;:::-;35195:25;;35234:20;35252:1;35234:20;:::i;:::-;35229:25;;35273:1;35263:35;;35278:18;;:::i;:::-;35263:35;35320:1;35317;35313:9;35308:14;;35143:185;;;;:::o;35334:176::-;35366:1;35383:20;35401:1;35383:20;:::i;:::-;35378:25;;35417:20;35435:1;35417:20;:::i;:::-;35412:25;;35456:1;35446:35;;35461:18;;:::i;:::-;35446:35;35502:1;35499;35495:9;35490:14;;35334:176;;;;:::o;35516:180::-;35564:77;35561:1;35554:88;35661:4;35658:1;35651:15;35685:4;35682:1;35675:15
Swarm Source
ipfs://5a5a536a568ad88626fd18eb9312ad63e2e2a51e26af95a81b6d1db4c34dcd9c
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.