Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,111 Potato
Holders
191
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 PotatoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SweetPotatoz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-24 */ // File: contracts/nft.sol // File: contracts/nft.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // 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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // 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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // 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: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract SweetPotatoz is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://QmSLoZ7JfpuwVnjVhoA9hXSQzENW91uX15rqR9nxSh91rZ"; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_MINTS_PER_TX = 5; uint256 public maxSupply = 1500; uint256 public constant PUBLIC_SALE_PRICE = 0.005 ether; uint256 public NUM_FREE_MINTS = 500; bool public isPublicSaleActive = true; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } modifier freeMintsAvailable() { require( totalSupply() <= NUM_FREE_MINTS, "Not enough free mints remain" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { if(totalSupply()>NUM_FREE_MINTS){ require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); } _; } constructor( ) ERC721A("Sweet Potatoz", "Potato", 100, maxSupply) { } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } //A simple free mint function to avoid confusion //The normal mint function with a cost of 0 would work too // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function airdrop(uint256 _NUM) external onlyOwner { maxSupply = _NUM; } // function to disable gasless listings for security in case // opensea ever shuts down or is compromised function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive) external onlyOwner { isOpenSeaProxyActive = _isOpenSeaProxyActive; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setnumfree(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Get a reference to OpenSea's proxy registry contract by instantiating // the contract using the already existing address. ProxyRegistry proxyRegistry = ProxyRegistry( openSeaProxyRegistryAddress ); if ( isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator ) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return baseURI; } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_NUM","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setnumfree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405260008055600060075560405180606001604052806035815260200162004f6a60359139600b90805190602001906200003e92919062000323565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506105dc600d556101f4600e556001600f60006101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280600d81526020017f537765657420506f7461746f7a000000000000000000000000000000000000008152506040518060400160405280600681526020017f506f7461746f00000000000000000000000000000000000000000000000000008152506064600d54600081116200019b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001929062000443565b60405180910390fd5b60008211620001e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d89062000421565b60405180910390fd5b8360019080519060200190620001f992919062000323565b5082600290805190602001906200021292919062000323565b508160a08181525050806080818152505050505050620002476200023b6200025560201b60201c565b6200025d60201b60201c565b600160098190555062000579565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003319062000476565b90600052602060002090601f016020900481019282620003555760008555620003a1565b82601f106200037057805160ff1916838001178555620003a1565b82800160010185558215620003a1579182015b82811115620003a057825182559160200191906001019062000383565b5b509050620003b09190620003b4565b5090565b5b80821115620003cf576000816000905550600101620003b5565b5090565b6000620003e260278362000465565b9150620003ef82620004db565b604082019050919050565b600062000409602e8362000465565b915062000416826200052a565b604082019050919050565b600060208201905081810360008301526200043c81620003d3565b9050919050565b600060208201905081810360008301526200045e81620003fa565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048f57607f821691505b60208210811415620004a657620004a5620004ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516149c0620005aa600039600081816124f20152818161251b0152612ae70152600050506149c06000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461075b578063e43082f714610786578063e985e9c5146107af578063f0ea88ef146107ec578063f2fde38b1461081557610204565b8063b88d4fde1461069f578063c6a91b42146106c8578063c87b56dd146106f3578063d5abeb011461073057610204565b806395d89b41116100e757806395d89b41146105db57806397dc4a1314610606578063982d669e1461062f578063a0712d681461065a578063a22cb4651461067657610204565b806370a0823114610531578063714c53981461056e578063715018a6146105995780638da5cb5b146105b057610204565b806328cad13d1161019b57806342842e0e1161016a57806342842e0e1461043c57806349df728c146104655780634f6ccce71461048e57806355f804b3146104cb5780636352211e146104f457610204565b806328cad13d146103815780632a55205a146103aa5780632f745c59146103e85780633ccfd60b1461042557610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd146103025780631e84c4131461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133af565b61083e565b60405161023d91906139e0565b60405180910390f35b34801561025257600080fd5b5061025b6108b8565b60405161026891906139fb565b60405180910390f35b34801561027d57600080fd5b5061028661094a565b6040516102939190613d3d565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906134ac565b610955565b6040516102d09190613950565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613315565b6109da565b005b34801561030e57600080fd5b50610317610af3565b6040516103249190613d3d565b60405180910390f35b34801561033957600080fd5b50610342610afc565b60405161034f91906139e0565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906131ff565b610b0f565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613355565b610b1f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613506565b610bb8565b6040516103df9291906139b7565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613315565b610c24565b60405161041c9190613d3d565b60405180910390f35b34801561043157600080fd5b5061043a610e22565b005b34801561044857600080fd5b50610463600480360381019061045e91906131ff565b610eed565b005b34801561047157600080fd5b5061048c60048036038101906104879190613409565b610f0d565b005b34801561049a57600080fd5b506104b560048036038101906104b091906134ac565b6110a8565b6040516104c29190613d3d565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613463565b6110fb565b005b34801561050057600080fd5b5061051b600480360381019061051691906134ac565b611191565b6040516105289190613950565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613192565b6111a7565b6040516105659190613d3d565b60405180910390f35b34801561057a57600080fd5b50610583611290565b60405161059091906139fb565b60405180910390f35b3480156105a557600080fd5b506105ae611322565b005b3480156105bc57600080fd5b506105c56113aa565b6040516105d29190613950565b60405180910390f35b3480156105e757600080fd5b506105f06113d4565b6040516105fd91906139fb565b60405180910390f35b34801561061257600080fd5b5061062d600480360381019061062891906134ac565b611466565b005b34801561063b57600080fd5b506106446114ec565b6040516106519190613d3d565b60405180910390f35b610674600480360381019061066f91906134ac565b6114f2565b005b34801561068257600080fd5b5061069d600480360381019061069891906132d5565b6116ad565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613252565b61182e565b005b3480156106d457600080fd5b506106dd61188a565b6040516106ea9190613d3d565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906134ac565b61188f565b60405161072791906139fb565b60405180910390f35b34801561073c57600080fd5b5061074561196b565b6040516107529190613d3d565b60405180910390f35b34801561076757600080fd5b50610770611971565b60405161077d9190613d3d565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613355565b611977565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906131bf565b611a10565b6040516107e391906139e0565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906134ac565b611b2a565b005b34801561082157600080fd5b5061083c60048036038101906108379190613192565b611bb0565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b157506108b082611ca8565b5b9050919050565b6060600180546108c7906140c6565b80601f01602080910402602001604051908101604052809291908181526020018280546108f3906140c6565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b6611c37937e0800081565b600061096082611df2565b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613cfd565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e582611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613bdd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a75611dff565b73ffffffffffffffffffffffffffffffffffffffff161480610aa45750610aa381610a9e611dff565b611a10565b5b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada90613b1d565b60405180910390fd5b610aee838383611e07565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610b1a838383611eb9565b505050565b610b27611dff565b73ffffffffffffffffffffffffffffffffffffffff16610b456113aa565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613b7d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610bc484611df2565b610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613afd565b60405180910390fd5b30610c19610c12856005612472565b6064612488565b915091509250929050565b6000610c2f836111a7565b8210610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613a1d565b60405180910390fd5b6000610c7a610af3565b905060008060005b83811015610de0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc5786841415610dbd578195505050505050610e1c565b8380610dc890614129565b9450505b508080610dd890614129565b915050610c82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613c7d565b60405180910390fd5b92915050565b610e2a611dff565b73ffffffffffffffffffffffffffffffffffffffff16610e486113aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613b7d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ee9573d6000803e3d6000fd5b5050565b610f088383836040518060200160405280600081525061182e565b505050565b610f15611dff565b73ffffffffffffffffffffffffffffffffffffffff16610f336113aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613b7d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fc49190613950565b60206040518083038186803b158015610fdc57600080fd5b505afa158015610ff0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101491906134d9565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110519291906139b7565b602060405180830381600087803b15801561106b57600080fd5b505af115801561107f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a39190613382565b505050565b60006110b2610af3565b82106110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613a7d565b60405180910390fd5b819050919050565b611103611dff565b73ffffffffffffffffffffffffffffffffffffffff166111216113aa565b73ffffffffffffffffffffffffffffffffffffffff1614611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613b7d565b60405180910390fd5b80600b908051906020019061118d929190612f18565b5050565b600061119c8261249e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90613b3d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461129f906140c6565b80601f01602080910402602001604051908101604052809291908181526020018280546112cb906140c6565b80156113185780601f106112ed57610100808354040283529160200191611318565b820191906000526020600020905b8154815290600101906020018083116112fb57829003601f168201915b5050505050905090565b61132a611dff565b73ffffffffffffffffffffffffffffffffffffffff166113486113aa565b73ffffffffffffffffffffffffffffffffffffffff161461139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613b7d565b60405180910390fd5b6113a860006126a1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113e3906140c6565b80601f016020809104026020016040519081016040528092919081815260200182805461140f906140c6565b801561145c5780601f106114315761010080835404028352916020019161145c565b820191906000526020600020905b81548152906001019060200180831161143f57829003601f168201915b5050505050905090565b61146e611dff565b73ffffffffffffffffffffffffffffffffffffffff1661148c6113aa565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613b7d565b60405180910390fd5b80600d8190555050565b600e5481565b60026009541415611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613c9d565b60405180910390fd5b60026009819055506611c37937e0800081600e54611554610af3565b11156115a8573481836115679190613ee4565b146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613c5d565b60405180910390fd5b5b600f60009054906101000a900460ff166115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613cdd565b60405180910390fd5b82600d5481611604610af3565b61160e9190613e5d565b111561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613a9d565b60405180910390fd5b836005811115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613add565b60405180910390fd5b61169e3386612767565b50505050600160098190555050565b6116b5611dff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613b9d565b60405180910390fd5b8060066000611730611dff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dd611dff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182291906139e0565b60405180910390a35050565b611839848484611eb9565b61184584848484612785565b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613bfd565b60405180910390fd5b50505050565b600581565b606061189a82611df2565b6118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613afd565b60405180910390fd5b600b80546118e6906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611912906140c6565b801561195f5780601f106119345761010080835404028352916020019161195f565b820191906000526020600020905b81548152906001019060200180831161194257829003601f168201915b50505050509050919050565b600d5481565b60075481565b61197f611dff565b73ffffffffffffffffffffffffffffffffffffffff1661199d6113aa565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613b7d565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611b0757508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a9f9190613950565b60206040518083038186803b158015611ab757600080fd5b505afa158015611acb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aef9190613436565b73ffffffffffffffffffffffffffffffffffffffff16145b15611b16576001915050611b24565b611b20848461291c565b9150505b92915050565b611b32611dff565b73ffffffffffffffffffffffffffffffffffffffff16611b506113aa565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613b7d565b60405180910390fd5b80600e8190555050565b611bb8611dff565b73ffffffffffffffffffffffffffffffffffffffff16611bd66113aa565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613b7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613a3d565b60405180910390fd5b611ca5816126a1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ddb57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611deb5750611dea826129b0565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec48261249e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eeb611dff565b73ffffffffffffffffffffffffffffffffffffffff161480611f475750611f10611dff565b73ffffffffffffffffffffffffffffffffffffffff16611f2f84610955565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f635750611f628260000151611f5d611dff565b611a10565b5b905080611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613bbd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613b5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90613abd565b60405180910390fd5b6120948585856001612a1a565b6120a46000848460000151611e07565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121129190613f3e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121b69190613e17565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122bc9190613e5d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124025761233281611df2565b15612401576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246a8686866001612a20565b505050505050565b600081836124809190613ee4565b905092915050565b600081836124969190613eb3565b905092915050565b6124a6612f9e565b6124af82611df2565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613a5d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106125525760017f0000000000000000000000000000000000000000000000000000000000000000846125459190613f72565b61254f9190613e5d565b90505b60008390505b818110612660576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461264c5780935050505061269c565b5080806126589061409c565b915050612558565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390613cbd565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612781828260405180602001604052806000815250612a26565b5050565b60006127a68473ffffffffffffffffffffffffffffffffffffffff16612f05565b1561290f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cf611dff565b8786866040518563ffffffff1660e01b81526004016127f1949392919061396b565b602060405180830381600087803b15801561280b57600080fd5b505af192505050801561283c57506040513d601f19601f8201168201806040525081019061283991906133dc565b60015b6128bf573d806000811461286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b506000815114156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90613bfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612914565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9390613c3d565b60405180910390fd5b612aa581611df2565b15612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc90613c1d565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90613d1d565b60405180910390fd5b612b556000858386612a1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c529190613e17565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c799190613e17565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ee857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e886000888488612785565b612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613bfd565b60405180910390fd5b8180612ed290614129565b9250508080612ee090614129565b915050612e17565b5080600081905550612efd6000878588612a20565b505050505050565b600080823b905060008111915050919050565b828054612f24906140c6565b90600052602060002090601f016020900481019282612f465760008555612f8d565b82601f10612f5f57805160ff1916838001178555612f8d565b82800160010185558215612f8d579182015b82811115612f8c578251825591602001919060010190612f71565b5b509050612f9a9190612fd8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ff1576000816000905550600101612fd9565b5090565b600061300861300384613d7d565b613d58565b90508281526020810184848401111561302457613023614233565b5b61302f84828561405a565b509392505050565b600061304a61304584613dae565b613d58565b90508281526020810184848401111561306657613065614233565b5b61307184828561405a565b509392505050565b60008135905061308881614900565b92915050565b60008135905061309d81614917565b92915050565b6000815190506130b281614917565b92915050565b6000813590506130c78161492e565b92915050565b6000815190506130dc8161492e565b92915050565b600082601f8301126130f7576130f661422e565b5b8135613107848260208601612ff5565b91505092915050565b60008135905061311f81614945565b92915050565b6000815190506131348161495c565b92915050565b600082601f83011261314f5761314e61422e565b5b813561315f848260208601613037565b91505092915050565b60008135905061317781614973565b92915050565b60008151905061318c81614973565b92915050565b6000602082840312156131a8576131a761423d565b5b60006131b684828501613079565b91505092915050565b600080604083850312156131d6576131d561423d565b5b60006131e485828601613079565b92505060206131f585828601613079565b9150509250929050565b6000806000606084860312156132185761321761423d565b5b600061322686828701613079565b935050602061323786828701613079565b925050604061324886828701613168565b9150509250925092565b6000806000806080858703121561326c5761326b61423d565b5b600061327a87828801613079565b945050602061328b87828801613079565b935050604061329c87828801613168565b925050606085013567ffffffffffffffff8111156132bd576132bc614238565b5b6132c9878288016130e2565b91505092959194509250565b600080604083850312156132ec576132eb61423d565b5b60006132fa85828601613079565b925050602061330b8582860161308e565b9150509250929050565b6000806040838503121561332c5761332b61423d565b5b600061333a85828601613079565b925050602061334b85828601613168565b9150509250929050565b60006020828403121561336b5761336a61423d565b5b60006133798482850161308e565b91505092915050565b6000602082840312156133985761339761423d565b5b60006133a6848285016130a3565b91505092915050565b6000602082840312156133c5576133c461423d565b5b60006133d3848285016130b8565b91505092915050565b6000602082840312156133f2576133f161423d565b5b6000613400848285016130cd565b91505092915050565b60006020828403121561341f5761341e61423d565b5b600061342d84828501613110565b91505092915050565b60006020828403121561344c5761344b61423d565b5b600061345a84828501613125565b91505092915050565b6000602082840312156134795761347861423d565b5b600082013567ffffffffffffffff81111561349757613496614238565b5b6134a38482850161313a565b91505092915050565b6000602082840312156134c2576134c161423d565b5b60006134d084828501613168565b91505092915050565b6000602082840312156134ef576134ee61423d565b5b60006134fd8482850161317d565b91505092915050565b6000806040838503121561351d5761351c61423d565b5b600061352b85828601613168565b925050602061353c85828601613168565b9150509250929050565b61354f81613fa6565b82525050565b61355e81613fb8565b82525050565b600061356f82613ddf565b6135798185613df5565b9350613589818560208601614069565b61359281614242565b840191505092915050565b60006135a882613dea565b6135b28185613e06565b93506135c2818560208601614069565b6135cb81614242565b840191505092915050565b60006135e3602283613e06565b91506135ee82614253565b604082019050919050565b6000613606602683613e06565b9150613611826142a2565b604082019050919050565b6000613629602a83613e06565b9150613634826142f1565b604082019050919050565b600061364c602383613e06565b915061365782614340565b604082019050919050565b600061366f602283613e06565b915061367a8261438f565b604082019050919050565b6000613692602583613e06565b915061369d826143de565b604082019050919050565b60006136b5602283613e06565b91506136c08261442d565b604082019050919050565b60006136d8601183613e06565b91506136e38261447c565b602082019050919050565b60006136fb603983613e06565b9150613706826144a5565b604082019050919050565b600061371e602b83613e06565b9150613729826144f4565b604082019050919050565b6000613741602683613e06565b915061374c82614543565b604082019050919050565b6000613764602083613e06565b915061376f82614592565b602082019050919050565b6000613787601a83613e06565b9150613792826145bb565b602082019050919050565b60006137aa603283613e06565b91506137b5826145e4565b604082019050919050565b60006137cd602283613e06565b91506137d882614633565b604082019050919050565b60006137f0603383613e06565b91506137fb82614682565b604082019050919050565b6000613813601d83613e06565b915061381e826146d1565b602082019050919050565b6000613836602183613e06565b9150613841826146fa565b604082019050919050565b6000613859601883613e06565b915061386482614749565b602082019050919050565b600061387c602e83613e06565b915061388782614772565b604082019050919050565b600061389f601f83613e06565b91506138aa826147c1565b602082019050919050565b60006138c2602f83613e06565b91506138cd826147ea565b604082019050919050565b60006138e5601783613e06565b91506138f082614839565b602082019050919050565b6000613908602d83613e06565b915061391382614862565b604082019050919050565b600061392b602283613e06565b9150613936826148b1565b604082019050919050565b61394a81614050565b82525050565b60006020820190506139656000830184613546565b92915050565b60006080820190506139806000830187613546565b61398d6020830186613546565b61399a6040830185613941565b81810360608301526139ac8184613564565b905095945050505050565b60006040820190506139cc6000830185613546565b6139d96020830184613941565b9392505050565b60006020820190506139f56000830184613555565b92915050565b60006020820190508181036000830152613a15818461359d565b905092915050565b60006020820190508181036000830152613a36816135d6565b9050919050565b60006020820190508181036000830152613a56816135f9565b9050919050565b60006020820190508181036000830152613a768161361c565b9050919050565b60006020820190508181036000830152613a968161363f565b9050919050565b60006020820190508181036000830152613ab681613662565b9050919050565b60006020820190508181036000830152613ad681613685565b9050919050565b60006020820190508181036000830152613af6816136a8565b9050919050565b60006020820190508181036000830152613b16816136cb565b9050919050565b60006020820190508181036000830152613b36816136ee565b9050919050565b60006020820190508181036000830152613b5681613711565b9050919050565b60006020820190508181036000830152613b7681613734565b9050919050565b60006020820190508181036000830152613b9681613757565b9050919050565b60006020820190508181036000830152613bb68161377a565b9050919050565b60006020820190508181036000830152613bd68161379d565b9050919050565b60006020820190508181036000830152613bf6816137c0565b9050919050565b60006020820190508181036000830152613c16816137e3565b9050919050565b60006020820190508181036000830152613c3681613806565b9050919050565b60006020820190508181036000830152613c5681613829565b9050919050565b60006020820190508181036000830152613c768161384c565b9050919050565b60006020820190508181036000830152613c968161386f565b9050919050565b60006020820190508181036000830152613cb681613892565b9050919050565b60006020820190508181036000830152613cd6816138b5565b9050919050565b60006020820190508181036000830152613cf6816138d8565b9050919050565b60006020820190508181036000830152613d16816138fb565b9050919050565b60006020820190508181036000830152613d368161391e565b9050919050565b6000602082019050613d526000830184613941565b92915050565b6000613d62613d73565b9050613d6e82826140f8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d9857613d976141ff565b5b613da182614242565b9050602081019050919050565b600067ffffffffffffffff821115613dc957613dc86141ff565b5b613dd282614242565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e2282614014565b9150613e2d83614014565b9250826fffffffffffffffffffffffffffffffff03821115613e5257613e51614172565b5b828201905092915050565b6000613e6882614050565b9150613e7383614050565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea857613ea7614172565b5b828201905092915050565b6000613ebe82614050565b9150613ec983614050565b925082613ed957613ed86141a1565b5b828204905092915050565b6000613eef82614050565b9150613efa83614050565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3357613f32614172565b5b828202905092915050565b6000613f4982614014565b9150613f5483614014565b925082821015613f6757613f66614172565b5b828203905092915050565b6000613f7d82614050565b9150613f8883614050565b925082821015613f9b57613f9a614172565b5b828203905092915050565b6000613fb182614030565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613ffb82613fa6565b9050919050565b600061400d82613fa6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561408757808201518184015260208101905061406c565b83811115614096576000848401525b50505050565b60006140a782614050565b915060008214156140bb576140ba614172565b5b600182039050919050565b600060028204905060018216806140de57607f821691505b602082108114156140f2576140f16141d0565b5b50919050565b61410182614242565b810181811067ffffffffffffffff821117156141205761411f6141ff565b5b80604052505050565b600061413482614050565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561416757614166614172565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61490981613fa6565b811461491457600080fd5b50565b61492081613fb8565b811461492b57600080fd5b50565b61493781613fc4565b811461494257600080fd5b50565b61494e81613ff0565b811461495957600080fd5b50565b61496581614002565b811461497057600080fd5b50565b61497c81614050565b811461498757600080fd5b5056fea26469706673582212208aab46e428476ab12fb9981a8cc95b0886b1f8a779008b890239134f28fb344d64736f6c63430008070033697066733a2f2f516d534c6f5a374a66707577566e6a56686f4139685853517a454e57393175583135727152396e7853683931725a
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461075b578063e43082f714610786578063e985e9c5146107af578063f0ea88ef146107ec578063f2fde38b1461081557610204565b8063b88d4fde1461069f578063c6a91b42146106c8578063c87b56dd146106f3578063d5abeb011461073057610204565b806395d89b41116100e757806395d89b41146105db57806397dc4a1314610606578063982d669e1461062f578063a0712d681461065a578063a22cb4651461067657610204565b806370a0823114610531578063714c53981461056e578063715018a6146105995780638da5cb5b146105b057610204565b806328cad13d1161019b57806342842e0e1161016a57806342842e0e1461043c57806349df728c146104655780634f6ccce71461048e57806355f804b3146104cb5780636352211e146104f457610204565b806328cad13d146103815780632a55205a146103aa5780632f745c59146103e85780633ccfd60b1461042557610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd146103025780631e84c4131461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133af565b61083e565b60405161023d91906139e0565b60405180910390f35b34801561025257600080fd5b5061025b6108b8565b60405161026891906139fb565b60405180910390f35b34801561027d57600080fd5b5061028661094a565b6040516102939190613d3d565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906134ac565b610955565b6040516102d09190613950565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613315565b6109da565b005b34801561030e57600080fd5b50610317610af3565b6040516103249190613d3d565b60405180910390f35b34801561033957600080fd5b50610342610afc565b60405161034f91906139e0565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906131ff565b610b0f565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613355565b610b1f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613506565b610bb8565b6040516103df9291906139b7565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613315565b610c24565b60405161041c9190613d3d565b60405180910390f35b34801561043157600080fd5b5061043a610e22565b005b34801561044857600080fd5b50610463600480360381019061045e91906131ff565b610eed565b005b34801561047157600080fd5b5061048c60048036038101906104879190613409565b610f0d565b005b34801561049a57600080fd5b506104b560048036038101906104b091906134ac565b6110a8565b6040516104c29190613d3d565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613463565b6110fb565b005b34801561050057600080fd5b5061051b600480360381019061051691906134ac565b611191565b6040516105289190613950565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613192565b6111a7565b6040516105659190613d3d565b60405180910390f35b34801561057a57600080fd5b50610583611290565b60405161059091906139fb565b60405180910390f35b3480156105a557600080fd5b506105ae611322565b005b3480156105bc57600080fd5b506105c56113aa565b6040516105d29190613950565b60405180910390f35b3480156105e757600080fd5b506105f06113d4565b6040516105fd91906139fb565b60405180910390f35b34801561061257600080fd5b5061062d600480360381019061062891906134ac565b611466565b005b34801561063b57600080fd5b506106446114ec565b6040516106519190613d3d565b60405180910390f35b610674600480360381019061066f91906134ac565b6114f2565b005b34801561068257600080fd5b5061069d600480360381019061069891906132d5565b6116ad565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613252565b61182e565b005b3480156106d457600080fd5b506106dd61188a565b6040516106ea9190613d3d565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906134ac565b61188f565b60405161072791906139fb565b60405180910390f35b34801561073c57600080fd5b5061074561196b565b6040516107529190613d3d565b60405180910390f35b34801561076757600080fd5b50610770611971565b60405161077d9190613d3d565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613355565b611977565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906131bf565b611a10565b6040516107e391906139e0565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906134ac565b611b2a565b005b34801561082157600080fd5b5061083c60048036038101906108379190613192565b611bb0565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b157506108b082611ca8565b5b9050919050565b6060600180546108c7906140c6565b80601f01602080910402602001604051908101604052809291908181526020018280546108f3906140c6565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b6611c37937e0800081565b600061096082611df2565b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613cfd565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e582611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613bdd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a75611dff565b73ffffffffffffffffffffffffffffffffffffffff161480610aa45750610aa381610a9e611dff565b611a10565b5b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada90613b1d565b60405180910390fd5b610aee838383611e07565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610b1a838383611eb9565b505050565b610b27611dff565b73ffffffffffffffffffffffffffffffffffffffff16610b456113aa565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613b7d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610bc484611df2565b610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613afd565b60405180910390fd5b30610c19610c12856005612472565b6064612488565b915091509250929050565b6000610c2f836111a7565b8210610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613a1d565b60405180910390fd5b6000610c7a610af3565b905060008060005b83811015610de0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc5786841415610dbd578195505050505050610e1c565b8380610dc890614129565b9450505b508080610dd890614129565b915050610c82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613c7d565b60405180910390fd5b92915050565b610e2a611dff565b73ffffffffffffffffffffffffffffffffffffffff16610e486113aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613b7d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ee9573d6000803e3d6000fd5b5050565b610f088383836040518060200160405280600081525061182e565b505050565b610f15611dff565b73ffffffffffffffffffffffffffffffffffffffff16610f336113aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613b7d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fc49190613950565b60206040518083038186803b158015610fdc57600080fd5b505afa158015610ff0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101491906134d9565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110519291906139b7565b602060405180830381600087803b15801561106b57600080fd5b505af115801561107f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a39190613382565b505050565b60006110b2610af3565b82106110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613a7d565b60405180910390fd5b819050919050565b611103611dff565b73ffffffffffffffffffffffffffffffffffffffff166111216113aa565b73ffffffffffffffffffffffffffffffffffffffff1614611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613b7d565b60405180910390fd5b80600b908051906020019061118d929190612f18565b5050565b600061119c8261249e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90613b3d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461129f906140c6565b80601f01602080910402602001604051908101604052809291908181526020018280546112cb906140c6565b80156113185780601f106112ed57610100808354040283529160200191611318565b820191906000526020600020905b8154815290600101906020018083116112fb57829003601f168201915b5050505050905090565b61132a611dff565b73ffffffffffffffffffffffffffffffffffffffff166113486113aa565b73ffffffffffffffffffffffffffffffffffffffff161461139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613b7d565b60405180910390fd5b6113a860006126a1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113e3906140c6565b80601f016020809104026020016040519081016040528092919081815260200182805461140f906140c6565b801561145c5780601f106114315761010080835404028352916020019161145c565b820191906000526020600020905b81548152906001019060200180831161143f57829003601f168201915b5050505050905090565b61146e611dff565b73ffffffffffffffffffffffffffffffffffffffff1661148c6113aa565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613b7d565b60405180910390fd5b80600d8190555050565b600e5481565b60026009541415611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613c9d565b60405180910390fd5b60026009819055506611c37937e0800081600e54611554610af3565b11156115a8573481836115679190613ee4565b146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613c5d565b60405180910390fd5b5b600f60009054906101000a900460ff166115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613cdd565b60405180910390fd5b82600d5481611604610af3565b61160e9190613e5d565b111561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613a9d565b60405180910390fd5b836005811115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613add565b60405180910390fd5b61169e3386612767565b50505050600160098190555050565b6116b5611dff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613b9d565b60405180910390fd5b8060066000611730611dff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dd611dff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182291906139e0565b60405180910390a35050565b611839848484611eb9565b61184584848484612785565b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613bfd565b60405180910390fd5b50505050565b600581565b606061189a82611df2565b6118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613afd565b60405180910390fd5b600b80546118e6906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611912906140c6565b801561195f5780601f106119345761010080835404028352916020019161195f565b820191906000526020600020905b81548152906001019060200180831161194257829003601f168201915b50505050509050919050565b600d5481565b60075481565b61197f611dff565b73ffffffffffffffffffffffffffffffffffffffff1661199d6113aa565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613b7d565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611b0757508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a9f9190613950565b60206040518083038186803b158015611ab757600080fd5b505afa158015611acb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aef9190613436565b73ffffffffffffffffffffffffffffffffffffffff16145b15611b16576001915050611b24565b611b20848461291c565b9150505b92915050565b611b32611dff565b73ffffffffffffffffffffffffffffffffffffffff16611b506113aa565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613b7d565b60405180910390fd5b80600e8190555050565b611bb8611dff565b73ffffffffffffffffffffffffffffffffffffffff16611bd66113aa565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613b7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613a3d565b60405180910390fd5b611ca5816126a1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ddb57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611deb5750611dea826129b0565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec48261249e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eeb611dff565b73ffffffffffffffffffffffffffffffffffffffff161480611f475750611f10611dff565b73ffffffffffffffffffffffffffffffffffffffff16611f2f84610955565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f635750611f628260000151611f5d611dff565b611a10565b5b905080611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613bbd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613b5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90613abd565b60405180910390fd5b6120948585856001612a1a565b6120a46000848460000151611e07565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121129190613f3e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121b69190613e17565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122bc9190613e5d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124025761233281611df2565b15612401576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246a8686866001612a20565b505050505050565b600081836124809190613ee4565b905092915050565b600081836124969190613eb3565b905092915050565b6124a6612f9e565b6124af82611df2565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613a5d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106125525760017f0000000000000000000000000000000000000000000000000000000000000064846125459190613f72565b61254f9190613e5d565b90505b60008390505b818110612660576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461264c5780935050505061269c565b5080806126589061409c565b915050612558565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390613cbd565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612781828260405180602001604052806000815250612a26565b5050565b60006127a68473ffffffffffffffffffffffffffffffffffffffff16612f05565b1561290f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cf611dff565b8786866040518563ffffffff1660e01b81526004016127f1949392919061396b565b602060405180830381600087803b15801561280b57600080fd5b505af192505050801561283c57506040513d601f19601f8201168201806040525081019061283991906133dc565b60015b6128bf573d806000811461286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b506000815114156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90613bfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612914565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9390613c3d565b60405180910390fd5b612aa581611df2565b15612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc90613c1d565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90613d1d565b60405180910390fd5b612b556000858386612a1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c529190613e17565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c799190613e17565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ee857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e886000888488612785565b612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613bfd565b60405180910390fd5b8180612ed290614129565b9250508080612ee090614129565b915050612e17565b5080600081905550612efd6000878588612a20565b505050505050565b600080823b905060008111915050919050565b828054612f24906140c6565b90600052602060002090601f016020900481019282612f465760008555612f8d565b82601f10612f5f57805160ff1916838001178555612f8d565b82800160010185558215612f8d579182015b82811115612f8c578251825591602001919060010190612f71565b5b509050612f9a9190612fd8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ff1576000816000905550600101612fd9565b5090565b600061300861300384613d7d565b613d58565b90508281526020810184848401111561302457613023614233565b5b61302f84828561405a565b509392505050565b600061304a61304584613dae565b613d58565b90508281526020810184848401111561306657613065614233565b5b61307184828561405a565b509392505050565b60008135905061308881614900565b92915050565b60008135905061309d81614917565b92915050565b6000815190506130b281614917565b92915050565b6000813590506130c78161492e565b92915050565b6000815190506130dc8161492e565b92915050565b600082601f8301126130f7576130f661422e565b5b8135613107848260208601612ff5565b91505092915050565b60008135905061311f81614945565b92915050565b6000815190506131348161495c565b92915050565b600082601f83011261314f5761314e61422e565b5b813561315f848260208601613037565b91505092915050565b60008135905061317781614973565b92915050565b60008151905061318c81614973565b92915050565b6000602082840312156131a8576131a761423d565b5b60006131b684828501613079565b91505092915050565b600080604083850312156131d6576131d561423d565b5b60006131e485828601613079565b92505060206131f585828601613079565b9150509250929050565b6000806000606084860312156132185761321761423d565b5b600061322686828701613079565b935050602061323786828701613079565b925050604061324886828701613168565b9150509250925092565b6000806000806080858703121561326c5761326b61423d565b5b600061327a87828801613079565b945050602061328b87828801613079565b935050604061329c87828801613168565b925050606085013567ffffffffffffffff8111156132bd576132bc614238565b5b6132c9878288016130e2565b91505092959194509250565b600080604083850312156132ec576132eb61423d565b5b60006132fa85828601613079565b925050602061330b8582860161308e565b9150509250929050565b6000806040838503121561332c5761332b61423d565b5b600061333a85828601613079565b925050602061334b85828601613168565b9150509250929050565b60006020828403121561336b5761336a61423d565b5b60006133798482850161308e565b91505092915050565b6000602082840312156133985761339761423d565b5b60006133a6848285016130a3565b91505092915050565b6000602082840312156133c5576133c461423d565b5b60006133d3848285016130b8565b91505092915050565b6000602082840312156133f2576133f161423d565b5b6000613400848285016130cd565b91505092915050565b60006020828403121561341f5761341e61423d565b5b600061342d84828501613110565b91505092915050565b60006020828403121561344c5761344b61423d565b5b600061345a84828501613125565b91505092915050565b6000602082840312156134795761347861423d565b5b600082013567ffffffffffffffff81111561349757613496614238565b5b6134a38482850161313a565b91505092915050565b6000602082840312156134c2576134c161423d565b5b60006134d084828501613168565b91505092915050565b6000602082840312156134ef576134ee61423d565b5b60006134fd8482850161317d565b91505092915050565b6000806040838503121561351d5761351c61423d565b5b600061352b85828601613168565b925050602061353c85828601613168565b9150509250929050565b61354f81613fa6565b82525050565b61355e81613fb8565b82525050565b600061356f82613ddf565b6135798185613df5565b9350613589818560208601614069565b61359281614242565b840191505092915050565b60006135a882613dea565b6135b28185613e06565b93506135c2818560208601614069565b6135cb81614242565b840191505092915050565b60006135e3602283613e06565b91506135ee82614253565b604082019050919050565b6000613606602683613e06565b9150613611826142a2565b604082019050919050565b6000613629602a83613e06565b9150613634826142f1565b604082019050919050565b600061364c602383613e06565b915061365782614340565b604082019050919050565b600061366f602283613e06565b915061367a8261438f565b604082019050919050565b6000613692602583613e06565b915061369d826143de565b604082019050919050565b60006136b5602283613e06565b91506136c08261442d565b604082019050919050565b60006136d8601183613e06565b91506136e38261447c565b602082019050919050565b60006136fb603983613e06565b9150613706826144a5565b604082019050919050565b600061371e602b83613e06565b9150613729826144f4565b604082019050919050565b6000613741602683613e06565b915061374c82614543565b604082019050919050565b6000613764602083613e06565b915061376f82614592565b602082019050919050565b6000613787601a83613e06565b9150613792826145bb565b602082019050919050565b60006137aa603283613e06565b91506137b5826145e4565b604082019050919050565b60006137cd602283613e06565b91506137d882614633565b604082019050919050565b60006137f0603383613e06565b91506137fb82614682565b604082019050919050565b6000613813601d83613e06565b915061381e826146d1565b602082019050919050565b6000613836602183613e06565b9150613841826146fa565b604082019050919050565b6000613859601883613e06565b915061386482614749565b602082019050919050565b600061387c602e83613e06565b915061388782614772565b604082019050919050565b600061389f601f83613e06565b91506138aa826147c1565b602082019050919050565b60006138c2602f83613e06565b91506138cd826147ea565b604082019050919050565b60006138e5601783613e06565b91506138f082614839565b602082019050919050565b6000613908602d83613e06565b915061391382614862565b604082019050919050565b600061392b602283613e06565b9150613936826148b1565b604082019050919050565b61394a81614050565b82525050565b60006020820190506139656000830184613546565b92915050565b60006080820190506139806000830187613546565b61398d6020830186613546565b61399a6040830185613941565b81810360608301526139ac8184613564565b905095945050505050565b60006040820190506139cc6000830185613546565b6139d96020830184613941565b9392505050565b60006020820190506139f56000830184613555565b92915050565b60006020820190508181036000830152613a15818461359d565b905092915050565b60006020820190508181036000830152613a36816135d6565b9050919050565b60006020820190508181036000830152613a56816135f9565b9050919050565b60006020820190508181036000830152613a768161361c565b9050919050565b60006020820190508181036000830152613a968161363f565b9050919050565b60006020820190508181036000830152613ab681613662565b9050919050565b60006020820190508181036000830152613ad681613685565b9050919050565b60006020820190508181036000830152613af6816136a8565b9050919050565b60006020820190508181036000830152613b16816136cb565b9050919050565b60006020820190508181036000830152613b36816136ee565b9050919050565b60006020820190508181036000830152613b5681613711565b9050919050565b60006020820190508181036000830152613b7681613734565b9050919050565b60006020820190508181036000830152613b9681613757565b9050919050565b60006020820190508181036000830152613bb68161377a565b9050919050565b60006020820190508181036000830152613bd68161379d565b9050919050565b60006020820190508181036000830152613bf6816137c0565b9050919050565b60006020820190508181036000830152613c16816137e3565b9050919050565b60006020820190508181036000830152613c3681613806565b9050919050565b60006020820190508181036000830152613c5681613829565b9050919050565b60006020820190508181036000830152613c768161384c565b9050919050565b60006020820190508181036000830152613c968161386f565b9050919050565b60006020820190508181036000830152613cb681613892565b9050919050565b60006020820190508181036000830152613cd6816138b5565b9050919050565b60006020820190508181036000830152613cf6816138d8565b9050919050565b60006020820190508181036000830152613d16816138fb565b9050919050565b60006020820190508181036000830152613d368161391e565b9050919050565b6000602082019050613d526000830184613941565b92915050565b6000613d62613d73565b9050613d6e82826140f8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d9857613d976141ff565b5b613da182614242565b9050602081019050919050565b600067ffffffffffffffff821115613dc957613dc86141ff565b5b613dd282614242565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e2282614014565b9150613e2d83614014565b9250826fffffffffffffffffffffffffffffffff03821115613e5257613e51614172565b5b828201905092915050565b6000613e6882614050565b9150613e7383614050565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea857613ea7614172565b5b828201905092915050565b6000613ebe82614050565b9150613ec983614050565b925082613ed957613ed86141a1565b5b828204905092915050565b6000613eef82614050565b9150613efa83614050565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3357613f32614172565b5b828202905092915050565b6000613f4982614014565b9150613f5483614014565b925082821015613f6757613f66614172565b5b828203905092915050565b6000613f7d82614050565b9150613f8883614050565b925082821015613f9b57613f9a614172565b5b828203905092915050565b6000613fb182614030565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613ffb82613fa6565b9050919050565b600061400d82613fa6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561408757808201518184015260208101905061406c565b83811115614096576000848401525b50505050565b60006140a782614050565b915060008214156140bb576140ba614172565b5b600182039050919050565b600060028204905060018216806140de57607f821691505b602082108114156140f2576140f16141d0565b5b50919050565b61410182614242565b810181811067ffffffffffffffff821117156141205761411f6141ff565b5b80604052505050565b600061413482614050565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561416757614166614172565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61490981613fa6565b811461491457600080fd5b50565b61492081613fb8565b811461492b57600080fd5b50565b61493781613fc4565b811461494257600080fd5b50565b61494e81613ff0565b811461495957600080fd5b50565b61496581614002565b811461497057600080fd5b50565b61497c81614050565b811461498757600080fd5b5056fea26469706673582212208aab46e428476ab12fb9981a8cc95b0886b1f8a779008b890239134f28fb344d64736f6c63430008070033
Deployed Bytecode Sourcemap
54885:5759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58897:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44104:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55405:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45629:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45192:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40939:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55509:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46479:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58002:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60323:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41570:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58314:143;;;;;;;;;;;;;:::i;:::-;;46684:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58465:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41102:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57494:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43927:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42804:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57330:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18962:103;;;;;;;;;;;;;:::i;:::-;;18311:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44259:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57602:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55467:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56814:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45897:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46904:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55314:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60014:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55365:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51319:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57828:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59326:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58170:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19220:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58897:292;59045:4;59102:26;59087:41;;;:11;:41;;;;:94;;;;59145:36;59169:11;59145:23;:36::i;:::-;59087:94;59067:114;;58897:292;;;:::o;44104:94::-;44158:13;44187:5;44180:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44104:94;:::o;55405:55::-;55449:11;55405:55;:::o;45629:204::-;45697:7;45721:16;45729:7;45721;:16::i;:::-;45713:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45803:15;:24;45819:7;45803:24;;;;;;;;;;;;;;;;;;;;;45796:31;;45629:204;;;:::o;45192:379::-;45261:13;45277:24;45293:7;45277:15;:24::i;:::-;45261:40;;45322:5;45316:11;;:2;:11;;;;45308:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45407:5;45391:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45416:37;45433:5;45440:12;:10;:12::i;:::-;45416:16;:37::i;:::-;45391:62;45375:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45537:28;45546:2;45550:7;45559:5;45537:8;:28::i;:::-;45254:317;45192:379;;:::o;40939:94::-;40992:7;41015:12;;41008:19;;40939:94;:::o;55509:37::-;;;;;;;;;;;;;:::o;46479:142::-;46587:28;46597:4;46603:2;46607:7;46587:9;:28::i;:::-;46479:142;;;:::o;58002:158::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58133:19:::1;58112:18;;:40;;;;;;;;;;;;;;;;;;58002:158:::0;:::o;60323:318::-;60448:16;60466:21;60513:16;60521:7;60513;:16::i;:::-;60505:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60580:4;60587:45;60600:26;60613:9;60624:1;60600:12;:26::i;:::-;60628:3;60587:12;:45::i;:::-;60564:69;;;;60323:318;;;;;:::o;41570:744::-;41679:7;41714:16;41724:5;41714:9;:16::i;:::-;41706:5;:24;41698:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41776:22;41801:13;:11;:13::i;:::-;41776:38;;41821:19;41851:25;41901:9;41896:350;41920:14;41916:1;:18;41896:350;;;41950:31;41984:11;:14;41996:1;41984:14;;;;;;;;;;;41950:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42037:1;42011:28;;:9;:14;;;:28;;;42007:89;;42072:9;:14;;;42052:34;;42007:89;42129:5;42108:26;;:17;:26;;;42104:135;;;42166:5;42151:11;:20;42147:59;;;42193:1;42186:8;;;;;;;;;42147:59;42216:13;;;;;:::i;:::-;;;;42104:135;41941:305;41936:3;;;;;:::i;:::-;;;;41896:350;;;;42252:56;;;;;;;;;;:::i;:::-;;;;;;;;41570:744;;;;;:::o;58314:143::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58362:15:::1;58380:21;58362:39;;58420:10;58412:28;;:37;58441:7;58412:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58351:106;58314:143::o:0;46684:157::-;46796:39;46813:4;46819:2;46823:7;46796:39;;;;;;;;;;;;:16;:39::i;:::-;46684:157;;;:::o;58465:168::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58531:15:::1;58549:5;:15;;;58573:4;58549:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58531:48;;58590:5;:14;;;58605:10;58617:7;58590:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58520:113;58465:168:::0;:::o;41102:177::-;41169:7;41201:13;:11;:13::i;:::-;41193:5;:21;41185:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41268:5;41261:12;;41102:177;;;:::o;57494:100::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57578:8:::1;57568:7;:18;;;;;;;;;;;;:::i;:::-;;57494:100:::0;:::o;43927:118::-;43991:7;44014:20;44026:7;44014:11;:20::i;:::-;:25;;;44007:32;;43927:118;;;:::o;42804:211::-;42868:7;42909:1;42892:19;;:5;:19;;;;42884:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42981:12;:19;42994:5;42981:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42973:36;;42966:43;;42804:211;;;:::o;57330:93::-;57375:13;57408:7;57401:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57330:93;:::o;18962:103::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19027:30:::1;19054:1;19027:18;:30::i;:::-;18962:103::o:0;18311:87::-;18357:7;18384:6;;;;;;;;;;;18377:13;;18311:87;:::o;44259:98::-;44315:13;44344:7;44337:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44259:98;:::o;57602:102::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57692:4:::1;57680:9;:16;;;;57602:102:::0;:::o;55467:35::-;;;;:::o;56814:321::-;10240:1;10838:7;;:19;;10830:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10240:1;10971:7;:18;;;;55449:11:::1;56954:14;56484;;56470:13;:11;:13::i;:::-;:28;56467:166;;;56560:9;56541:14;56533:5;:22;;;;:::i;:::-;56532:37;56510:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56467:166;55676:18:::2;;;;;;;;;;;55668:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57017:14:::3;56093:9;;56058:14;56042:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56020:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57056:14:::4;55357:1;55840:14;:34;;55818:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57090:37:::5;57100:10;57112:14;57090:9;:37::i;:::-;56175:1:::4;55733::::3;11002::::1;;10196::::0;11150:7;:22;;;;56814:321;:::o;45897:274::-;46000:12;:10;:12::i;:::-;45988:24;;:8;:24;;;;45980:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46097:8;46052:18;:32;46071:12;:10;:12::i;:::-;46052:32;;;;;;;;;;;;;;;:42;46085:8;46052:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46146:8;46117:48;;46132:12;:10;:12::i;:::-;46117:48;;;46156:8;46117:48;;;;;;:::i;:::-;;;;;;;;45897:274;;:::o;46904:311::-;47041:28;47051:4;47057:2;47061:7;47041:9;:28::i;:::-;47092:48;47115:4;47121:2;47125:7;47134:5;47092:22;:48::i;:::-;47076:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;46904:311;;;;:::o;55314:44::-;55357:1;55314:44;:::o;60014:243::-;60132:13;60171:16;60179:7;60171;:16::i;:::-;60163:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60242:7;60222:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60014:243;;;:::o;55365:31::-;;;;:::o;51319:43::-;;;;:::o;57828:166::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57965:21:::1;57942:20;;:44;;;;;;;;;;;;;;;;;;57828:166:::0;:::o;59326:617::-;59451:4;59616:27;59674;;;;;;;;;;;59616:96;;59741:20;;;;;;;;;;;:86;;;;;59819:8;59778:49;;59786:13;:21;;;59808:5;59786:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59778:49;;;59741:86;59723:154;;;59861:4;59854:11;;;;;59723:154;59896:39;59919:5;59926:8;59896:22;:39::i;:::-;59889:46;;;59326:617;;;;;:::o;58170:134::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58283:13:::1;58266:14;:30;;;;58170:134:::0;:::o;19220:201::-;18542:12;:10;:12::i;:::-;18531:23;;:7;:5;:7::i;:::-;:23;;;18523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19329:1:::1;19309:22;;:8;:22;;;;19301:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19385:28;19404:8;19385:18;:28::i;:::-;19220:201:::0;:::o;42378:370::-;42505:4;42550:25;42535:40;;;:11;:40;;;;:99;;;;42601:33;42586:48;;;:11;:48;;;;42535:99;:160;;;;42660:35;42645:50;;;:11;:50;;;;42535:160;:207;;;;42706:36;42730:11;42706:23;:36::i;:::-;42535:207;42521:221;;42378:370;;;:::o;47454:105::-;47511:4;47541:12;;47531:7;:22;47524:29;;47454:105;;;:::o;17035:98::-;17088:7;17115:10;17108:17;;17035:98;:::o;51141:172::-;51265:2;51238:15;:24;51254:7;51238:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51299:7;51295:2;51279:28;;51288:5;51279:28;;;;;;;;;;;;51141:172;;;:::o;49506:1529::-;49603:35;49641:20;49653:7;49641:11;:20::i;:::-;49603:58;;49670:22;49712:13;:18;;;49696:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49765:12;:10;:12::i;:::-;49741:36;;:20;49753:7;49741:11;:20::i;:::-;:36;;;49696:81;:142;;;;49788:50;49805:13;:18;;;49825:12;:10;:12::i;:::-;49788:16;:50::i;:::-;49696:142;49670:169;;49864:17;49848:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;49996:4;49974:26;;:13;:18;;;:26;;;49958:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50085:1;50071:16;;:2;:16;;;;50063:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50138:43;50160:4;50166:2;50170:7;50179:1;50138:21;:43::i;:::-;50238:49;50255:1;50259:7;50268:13;:18;;;50238:8;:49::i;:::-;50326:1;50296:12;:18;50309:4;50296:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50362:1;50334:12;:16;50347:2;50334:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50393:43;;;;;;;;50408:2;50393:43;;;;;;50419:15;50393:43;;;;;50370:11;:20;50382:7;50370:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50664:19;50696:1;50686:7;:11;;;;:::i;:::-;50664:33;;50749:1;50708:43;;:11;:24;50720:11;50708:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50704:236;;;50766:20;50774:11;50766:7;:20::i;:::-;50762:171;;;50826:97;;;;;;;;50853:13;:18;;;50826:97;;;;;;50884:13;:28;;;50826:97;;;;;50799:11;:24;50811:11;50799:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50762:171;50704:236;50972:7;50968:2;50953:27;;50962:4;50953:27;;;;;;;;;;;;50987:42;51008:4;51014:2;51018:7;51027:1;50987:20;:42::i;:::-;49596:1439;;;49506:1529;;;:::o;3536:98::-;3594:7;3625:1;3621;:5;;;;:::i;:::-;3614:12;;3536:98;;;;:::o;3935:::-;3993:7;4024:1;4020;:5;;;;:::i;:::-;4013:12;;3935:98;;;;:::o;43267:606::-;43343:21;;:::i;:::-;43384:16;43392:7;43384;:16::i;:::-;43376:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43456:26;43504:12;43493:7;:23;43489:93;;43573:1;43558:12;43548:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43527:47;;43489:93;43595:12;43610:7;43595:22;;43590:212;43627:18;43619:4;:26;43590:212;;43664:31;43698:11;:17;43710:4;43698:17;;;;;;;;;;;43664:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43754:1;43728:28;;:9;:14;;;:28;;;43724:71;;43776:9;43769:16;;;;;;;43724:71;43655:147;43647:6;;;;;:::i;:::-;;;;43590:212;;;;43810:57;;;;;;;;;;:::i;:::-;;;;;;;;43267:606;;;;:::o;19581:191::-;19655:16;19674:6;;;;;;;;;;;19655:25;;19700:8;19691:6;;:17;;;;;;;;;;;;;;;;;;19755:8;19724:40;;19745:8;19724:40;;;;;;;;;;;;19644:128;19581:191;:::o;47565:98::-;47630:27;47640:2;47644:8;47630:27;;;;;;;;;;;;:9;:27::i;:::-;47565:98;;:::o;52856:690::-;52993:4;53010:15;:2;:13;;;:15::i;:::-;53006:535;;;53065:2;53049:36;;;53086:12;:10;:12::i;:::-;53100:4;53106:7;53115:5;53049:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53036:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53297:1;53280:6;:13;:18;53276:215;;;53313:61;;;;;;;;;;:::i;:::-;;;;;;;;53276:215;53459:6;53453:13;53444:6;53440:2;53436:15;53429:38;53036:464;53181:45;;;53171:55;;;:6;:55;;;;53164:62;;;;;53006:535;53529:4;53522:11;;52856:690;;;;;;;:::o;46234:186::-;46356:4;46379:18;:25;46398:5;46379:25;;;;;;;;;;;;;;;:35;46405:8;46379:35;;;;;;;;;;;;;;;;;;;;;;;;;46372:42;;46234:186;;;;:::o;31711:157::-;31796:4;31835:25;31820:40;;;:11;:40;;;;31813:47;;31711:157;;;:::o;54008:141::-;;;;;:::o;54535:140::-;;;;;:::o;48002:1272::-;48107:20;48130:12;;48107:35;;48171:1;48157:16;;:2;:16;;;;48149:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48348:21;48356:12;48348:7;:21::i;:::-;48347:22;48339:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48430:12;48418:8;:24;;48410:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48490:61;48520:1;48524:2;48528:12;48542:8;48490:21;:61::i;:::-;48560:30;48593:12;:16;48606:2;48593:16;;;;;;;;;;;;;;;48560:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48635:119;;;;;;;;48685:8;48655:11;:19;;;:39;;;;:::i;:::-;48635:119;;;;;;48738:8;48703:11;:24;;;:44;;;;:::i;:::-;48635:119;;;;;48616:12;:16;48629:2;48616:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48789:43;;;;;;;;48804:2;48789:43;;;;;;48815:15;48789:43;;;;;48761:11;:25;48773:12;48761:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48841:20;48864:12;48841:35;;48890:9;48885:281;48909:8;48905:1;:12;48885:281;;;48963:12;48959:2;48938:38;;48955:1;48938:38;;;;;;;;;;;;49003:59;49034:1;49038:2;49042:12;49056:5;49003:22;:59::i;:::-;48985:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49144:14;;;;;:::i;:::-;;;;48919:3;;;;;:::i;:::-;;;;48885:281;;;;49189:12;49174;:27;;;;49208:60;49237:1;49241:2;49245:12;49259:8;49208:20;:60::i;:::-;48100:1174;;;48002:1272;;;:::o;20599:387::-;20659:4;20867:12;20934:7;20922:20;20914:28;;20977:1;20970:4;:8;20963:15;;;20599:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2088:201::-;2174:5;2205:6;2199:13;2190:22;;2221:62;2277:5;2221:62;:::i;:::-;2088:201;;;;:::o;2309:340::-;2365:5;2414:3;2407:4;2399:6;2395:17;2391:27;2381:122;;2422:79;;:::i;:::-;2381:122;2539:6;2526:20;2564:79;2639:3;2631:6;2624:4;2616:6;2612:17;2564:79;:::i;:::-;2555:88;;2371:278;2309:340;;;;:::o;2655:139::-;2701:5;2739:6;2726:20;2717:29;;2755:33;2782:5;2755:33;:::i;:::-;2655:139;;;;:::o;2800:143::-;2857:5;2888:6;2882:13;2873:22;;2904:33;2931:5;2904:33;:::i;:::-;2800:143;;;;:::o;2949:329::-;3008:6;3057:2;3045:9;3036:7;3032:23;3028:32;3025:119;;;3063:79;;:::i;:::-;3025:119;3183:1;3208:53;3253:7;3244:6;3233:9;3229:22;3208:53;:::i;:::-;3198:63;;3154:117;2949:329;;;;:::o;3284:474::-;3352:6;3360;3409:2;3397:9;3388:7;3384:23;3380:32;3377:119;;;3415:79;;:::i;:::-;3377:119;3535:1;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3506:117;3662:2;3688:53;3733:7;3724:6;3713:9;3709:22;3688:53;:::i;:::-;3678:63;;3633:118;3284:474;;;;;:::o;3764:619::-;3841:6;3849;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;3764:619;;;;;:::o;4389:943::-;4484:6;4492;4500;4508;4557:3;4545:9;4536:7;4532:23;4528:33;4525:120;;;4564:79;;:::i;:::-;4525:120;4684:1;4709:53;4754:7;4745:6;4734:9;4730:22;4709:53;:::i;:::-;4699:63;;4655:117;4811:2;4837:53;4882:7;4873:6;4862:9;4858:22;4837:53;:::i;:::-;4827:63;;4782:118;4939:2;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4910:118;5095:2;5084:9;5080:18;5067:32;5126:18;5118:6;5115:30;5112:117;;;5148:79;;:::i;:::-;5112:117;5253:62;5307:7;5298:6;5287:9;5283:22;5253:62;:::i;:::-;5243:72;;5038:287;4389:943;;;;;;;:::o;5338:468::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:50;5781:7;5772:6;5761:9;5757:22;5739:50;:::i;:::-;5729:60;;5684:115;5338:468;;;;;:::o;5812:474::-;5880:6;5888;5937:2;5925:9;5916:7;5912:23;5908:32;5905:119;;;5943:79;;:::i;:::-;5905:119;6063:1;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6034:117;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;5812:474;;;;;:::o;6292:323::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6292:323;;;;:::o;6621:345::-;6688:6;6737:2;6725:9;6716:7;6712:23;6708:32;6705:119;;;6743:79;;:::i;:::-;6705:119;6863:1;6888:61;6941:7;6932:6;6921:9;6917:22;6888:61;:::i;:::-;6878:71;;6834:125;6621:345;;;;:::o;6972:327::-;7030:6;7079:2;7067:9;7058:7;7054:23;7050:32;7047:119;;;7085:79;;:::i;:::-;7047:119;7205:1;7230:52;7274:7;7265:6;7254:9;7250:22;7230:52;:::i;:::-;7220:62;;7176:116;6972:327;;;;:::o;7305:349::-;7374:6;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:63;7629:7;7620:6;7609:9;7605:22;7574:63;:::i;:::-;7564:73;;7520:127;7305:349;;;;:::o;7660:357::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:67;7992:7;7983:6;7972:9;7968:22;7933:67;:::i;:::-;7923:77;;7879:131;7660:357;;;;:::o;8023:409::-;8122:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:119;;;8177:79;;:::i;:::-;8139:119;8297:1;8322:93;8407:7;8398:6;8387:9;8383:22;8322:93;:::i;:::-;8312:103;;8268:157;8023:409;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:329::-;9012:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:53;9257:7;9248:6;9237:9;9233:22;9212:53;:::i;:::-;9202:63;;9158:117;8953:329;;;;:::o;9288:351::-;9358:6;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9533:1;9558:64;9614:7;9605:6;9594:9;9590:22;9558:64;:::i;:::-;9548:74;;9504:128;9288:351;;;;:::o;9645:474::-;9713:6;9721;9770:2;9758:9;9749:7;9745:23;9741:32;9738:119;;;9776:79;;:::i;:::-;9738:119;9896:1;9921:53;9966:7;9957:6;9946:9;9942:22;9921:53;:::i;:::-;9911:63;;9867:117;10023:2;10049:53;10094:7;10085:6;10074:9;10070:22;10049:53;:::i;:::-;10039:63;;9994:118;9645:474;;;;;:::o;10125:118::-;10212:24;10230:5;10212:24;:::i;:::-;10207:3;10200:37;10125:118;;:::o;10249:109::-;10330:21;10345:5;10330:21;:::i;:::-;10325:3;10318:34;10249:109;;:::o;10364:360::-;10450:3;10478:38;10510:5;10478:38;:::i;:::-;10532:70;10595:6;10590:3;10532:70;:::i;:::-;10525:77;;10611:52;10656:6;10651:3;10644:4;10637:5;10633:16;10611:52;:::i;:::-;10688:29;10710:6;10688:29;:::i;:::-;10683:3;10679:39;10672:46;;10454:270;10364:360;;;;:::o;10730:364::-;10818:3;10846:39;10879:5;10846:39;:::i;:::-;10901:71;10965:6;10960:3;10901:71;:::i;:::-;10894:78;;10981:52;11026:6;11021:3;11014:4;11007:5;11003:16;10981:52;:::i;:::-;11058:29;11080:6;11058:29;:::i;:::-;11053:3;11049:39;11042:46;;10822:272;10730:364;;;;:::o;11100:366::-;11242:3;11263:67;11327:2;11322:3;11263:67;:::i;:::-;11256:74;;11339:93;11428:3;11339:93;:::i;:::-;11457:2;11452:3;11448:12;11441:19;;11100:366;;;:::o;11472:::-;11614:3;11635:67;11699:2;11694:3;11635:67;:::i;:::-;11628:74;;11711:93;11800:3;11711:93;:::i;:::-;11829:2;11824:3;11820:12;11813:19;;11472:366;;;:::o;11844:::-;11986:3;12007:67;12071:2;12066:3;12007:67;:::i;:::-;12000:74;;12083:93;12172:3;12083:93;:::i;:::-;12201:2;12196:3;12192:12;12185:19;;11844:366;;;:::o;12216:::-;12358:3;12379:67;12443:2;12438:3;12379:67;:::i;:::-;12372:74;;12455:93;12544:3;12455:93;:::i;:::-;12573:2;12568:3;12564:12;12557:19;;12216:366;;;:::o;12588:::-;12730:3;12751:67;12815:2;12810:3;12751:67;:::i;:::-;12744:74;;12827:93;12916:3;12827:93;:::i;:::-;12945:2;12940:3;12936:12;12929:19;;12588:366;;;:::o;12960:::-;13102:3;13123:67;13187:2;13182:3;13123:67;:::i;:::-;13116:74;;13199:93;13288:3;13199:93;:::i;:::-;13317:2;13312:3;13308:12;13301:19;;12960:366;;;:::o;13332:::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:::-;13846:3;13867:67;13931:2;13926:3;13867:67;:::i;:::-;13860:74;;13943:93;14032:3;13943:93;:::i;:::-;14061:2;14056:3;14052:12;14045:19;;13704:366;;;:::o;14076:::-;14218:3;14239:67;14303:2;14298:3;14239:67;:::i;:::-;14232:74;;14315:93;14404:3;14315:93;:::i;:::-;14433:2;14428:3;14424:12;14417:19;;14076:366;;;:::o;14448:::-;14590:3;14611:67;14675:2;14670:3;14611:67;:::i;:::-;14604:74;;14687:93;14776:3;14687:93;:::i;:::-;14805:2;14800:3;14796:12;14789:19;;14448:366;;;:::o;14820:::-;14962:3;14983:67;15047:2;15042:3;14983:67;:::i;:::-;14976:74;;15059:93;15148:3;15059:93;:::i;:::-;15177:2;15172:3;15168:12;15161:19;;14820:366;;;:::o;15192:::-;15334:3;15355:67;15419:2;15414:3;15355:67;:::i;:::-;15348:74;;15431:93;15520:3;15431:93;:::i;:::-;15549:2;15544:3;15540:12;15533:19;;15192:366;;;:::o;15564:::-;15706:3;15727:67;15791:2;15786:3;15727:67;:::i;:::-;15720:74;;15803:93;15892:3;15803:93;:::i;:::-;15921:2;15916:3;15912:12;15905:19;;15564:366;;;:::o;15936:::-;16078:3;16099:67;16163:2;16158:3;16099:67;:::i;:::-;16092:74;;16175:93;16264:3;16175:93;:::i;:::-;16293:2;16288:3;16284:12;16277:19;;15936:366;;;:::o;16308:::-;16450:3;16471:67;16535:2;16530:3;16471:67;:::i;:::-;16464:74;;16547:93;16636:3;16547:93;:::i;:::-;16665:2;16660:3;16656:12;16649:19;;16308:366;;;:::o;16680:::-;16822:3;16843:67;16907:2;16902:3;16843:67;:::i;:::-;16836:74;;16919:93;17008:3;16919:93;:::i;:::-;17037:2;17032:3;17028:12;17021:19;;16680:366;;;:::o;17052:::-;17194:3;17215:67;17279:2;17274:3;17215:67;:::i;:::-;17208:74;;17291:93;17380:3;17291:93;:::i;:::-;17409:2;17404:3;17400:12;17393:19;;17052:366;;;:::o;17424:::-;17566:3;17587:67;17651:2;17646:3;17587:67;:::i;:::-;17580:74;;17663:93;17752:3;17663:93;:::i;:::-;17781:2;17776:3;17772:12;17765:19;;17424:366;;;:::o;17796:::-;17938:3;17959:67;18023:2;18018:3;17959:67;:::i;:::-;17952:74;;18035:93;18124:3;18035:93;:::i;:::-;18153:2;18148:3;18144:12;18137:19;;17796:366;;;:::o;18168:::-;18310:3;18331:67;18395:2;18390:3;18331:67;:::i;:::-;18324:74;;18407:93;18496:3;18407:93;:::i;:::-;18525:2;18520:3;18516:12;18509:19;;18168:366;;;:::o;18540:::-;18682:3;18703:67;18767:2;18762:3;18703:67;:::i;:::-;18696:74;;18779:93;18868:3;18779:93;:::i;:::-;18897:2;18892:3;18888:12;18881:19;;18540:366;;;:::o;18912:::-;19054:3;19075:67;19139:2;19134:3;19075:67;:::i;:::-;19068:74;;19151:93;19240:3;19151:93;:::i;:::-;19269:2;19264:3;19260:12;19253:19;;18912:366;;;:::o;19284:::-;19426:3;19447:67;19511:2;19506:3;19447:67;:::i;:::-;19440:74;;19523:93;19612:3;19523:93;:::i;:::-;19641:2;19636:3;19632:12;19625:19;;19284:366;;;:::o;19656:::-;19798:3;19819:67;19883:2;19878:3;19819:67;:::i;:::-;19812:74;;19895:93;19984:3;19895:93;:::i;:::-;20013:2;20008:3;20004:12;19997:19;;19656:366;;;:::o;20028:::-;20170:3;20191:67;20255:2;20250:3;20191:67;:::i;:::-;20184:74;;20267:93;20356:3;20267:93;:::i;:::-;20385:2;20380:3;20376:12;20369:19;;20028:366;;;:::o;20400:118::-;20487:24;20505:5;20487:24;:::i;:::-;20482:3;20475:37;20400:118;;:::o;20524:222::-;20617:4;20655:2;20644:9;20640:18;20632:26;;20668:71;20736:1;20725:9;20721:17;20712:6;20668:71;:::i;:::-;20524:222;;;;:::o;20752:640::-;20947:4;20985:3;20974:9;20970:19;20962:27;;20999:71;21067:1;21056:9;21052:17;21043:6;20999:71;:::i;:::-;21080:72;21148:2;21137:9;21133:18;21124:6;21080:72;:::i;:::-;21162;21230:2;21219:9;21215:18;21206:6;21162:72;:::i;:::-;21281:9;21275:4;21271:20;21266:2;21255:9;21251:18;21244:48;21309:76;21380:4;21371:6;21309:76;:::i;:::-;21301:84;;20752:640;;;;;;;:::o;21398:332::-;21519:4;21557:2;21546:9;21542:18;21534:26;;21570:71;21638:1;21627:9;21623:17;21614:6;21570:71;:::i;:::-;21651:72;21719:2;21708:9;21704:18;21695:6;21651:72;:::i;:::-;21398:332;;;;;:::o;21736:210::-;21823:4;21861:2;21850:9;21846:18;21838:26;;21874:65;21936:1;21925:9;21921:17;21912:6;21874:65;:::i;:::-;21736:210;;;;:::o;21952:313::-;22065:4;22103:2;22092:9;22088:18;22080:26;;22152:9;22146:4;22142:20;22138:1;22127:9;22123:17;22116:47;22180:78;22253:4;22244:6;22180:78;:::i;:::-;22172:86;;21952:313;;;;:::o;22271:419::-;22437:4;22475:2;22464:9;22460:18;22452:26;;22524:9;22518:4;22514:20;22510:1;22499:9;22495:17;22488:47;22552:131;22678:4;22552:131;:::i;:::-;22544:139;;22271:419;;;:::o;22696:::-;22862:4;22900:2;22889:9;22885:18;22877:26;;22949:9;22943:4;22939:20;22935:1;22924:9;22920:17;22913:47;22977:131;23103:4;22977:131;:::i;:::-;22969:139;;22696:419;;;:::o;23121:::-;23287:4;23325:2;23314:9;23310:18;23302:26;;23374:9;23368:4;23364:20;23360:1;23349:9;23345:17;23338:47;23402:131;23528:4;23402:131;:::i;:::-;23394:139;;23121:419;;;:::o;23546:::-;23712:4;23750:2;23739:9;23735:18;23727:26;;23799:9;23793:4;23789:20;23785:1;23774:9;23770:17;23763:47;23827:131;23953:4;23827:131;:::i;:::-;23819:139;;23546:419;;;:::o;23971:::-;24137:4;24175:2;24164:9;24160:18;24152:26;;24224:9;24218:4;24214:20;24210:1;24199:9;24195:17;24188:47;24252:131;24378:4;24252:131;:::i;:::-;24244:139;;23971:419;;;:::o;24396:::-;24562:4;24600:2;24589:9;24585:18;24577:26;;24649:9;24643:4;24639:20;24635:1;24624:9;24620:17;24613:47;24677:131;24803:4;24677:131;:::i;:::-;24669:139;;24396:419;;;:::o;24821:::-;24987:4;25025:2;25014:9;25010:18;25002:26;;25074:9;25068:4;25064:20;25060:1;25049:9;25045:17;25038:47;25102:131;25228:4;25102:131;:::i;:::-;25094:139;;24821:419;;;:::o;25246:::-;25412:4;25450:2;25439:9;25435:18;25427:26;;25499:9;25493:4;25489:20;25485:1;25474:9;25470:17;25463:47;25527:131;25653:4;25527:131;:::i;:::-;25519:139;;25246:419;;;:::o;25671:::-;25837:4;25875:2;25864:9;25860:18;25852:26;;25924:9;25918:4;25914:20;25910:1;25899:9;25895:17;25888:47;25952:131;26078:4;25952:131;:::i;:::-;25944:139;;25671:419;;;:::o;26096:::-;26262:4;26300:2;26289:9;26285:18;26277:26;;26349:9;26343:4;26339:20;26335:1;26324:9;26320:17;26313:47;26377:131;26503:4;26377:131;:::i;:::-;26369:139;;26096:419;;;:::o;26521:::-;26687:4;26725:2;26714:9;26710:18;26702:26;;26774:9;26768:4;26764:20;26760:1;26749:9;26745:17;26738:47;26802:131;26928:4;26802:131;:::i;:::-;26794:139;;26521:419;;;:::o;26946:::-;27112:4;27150:2;27139:9;27135:18;27127:26;;27199:9;27193:4;27189:20;27185:1;27174:9;27170:17;27163:47;27227:131;27353:4;27227:131;:::i;:::-;27219:139;;26946:419;;;:::o;27371:::-;27537:4;27575:2;27564:9;27560:18;27552:26;;27624:9;27618:4;27614:20;27610:1;27599:9;27595:17;27588:47;27652:131;27778:4;27652:131;:::i;:::-;27644:139;;27371:419;;;:::o;27796:::-;27962:4;28000:2;27989:9;27985:18;27977:26;;28049:9;28043:4;28039:20;28035:1;28024:9;28020:17;28013:47;28077:131;28203:4;28077:131;:::i;:::-;28069:139;;27796:419;;;:::o;28221:::-;28387:4;28425:2;28414:9;28410:18;28402:26;;28474:9;28468:4;28464:20;28460:1;28449:9;28445:17;28438:47;28502:131;28628:4;28502:131;:::i;:::-;28494:139;;28221:419;;;:::o;28646:::-;28812:4;28850:2;28839:9;28835:18;28827:26;;28899:9;28893:4;28889:20;28885:1;28874:9;28870:17;28863:47;28927:131;29053:4;28927:131;:::i;:::-;28919:139;;28646:419;;;:::o;29071:::-;29237:4;29275:2;29264:9;29260:18;29252:26;;29324:9;29318:4;29314:20;29310:1;29299:9;29295:17;29288:47;29352:131;29478:4;29352:131;:::i;:::-;29344:139;;29071:419;;;:::o;29496:::-;29662:4;29700:2;29689:9;29685:18;29677:26;;29749:9;29743:4;29739:20;29735:1;29724:9;29720:17;29713:47;29777:131;29903:4;29777:131;:::i;:::-;29769:139;;29496:419;;;:::o;29921:::-;30087:4;30125:2;30114:9;30110:18;30102:26;;30174:9;30168:4;30164:20;30160:1;30149:9;30145:17;30138:47;30202:131;30328:4;30202:131;:::i;:::-;30194:139;;29921:419;;;:::o;30346:::-;30512:4;30550:2;30539:9;30535:18;30527:26;;30599:9;30593:4;30589:20;30585:1;30574:9;30570:17;30563:47;30627:131;30753:4;30627:131;:::i;:::-;30619:139;;30346:419;;;:::o;30771:::-;30937:4;30975:2;30964:9;30960:18;30952:26;;31024:9;31018:4;31014:20;31010:1;30999:9;30995:17;30988:47;31052:131;31178:4;31052:131;:::i;:::-;31044:139;;30771:419;;;:::o;31196:::-;31362:4;31400:2;31389:9;31385:18;31377:26;;31449:9;31443:4;31439:20;31435:1;31424:9;31420:17;31413:47;31477:131;31603:4;31477:131;:::i;:::-;31469:139;;31196:419;;;:::o;31621:::-;31787:4;31825:2;31814:9;31810:18;31802:26;;31874:9;31868:4;31864:20;31860:1;31849:9;31845:17;31838:47;31902:131;32028:4;31902:131;:::i;:::-;31894:139;;31621:419;;;:::o;32046:::-;32212:4;32250:2;32239:9;32235:18;32227:26;;32299:9;32293:4;32289:20;32285:1;32274:9;32270:17;32263:47;32327:131;32453:4;32327:131;:::i;:::-;32319:139;;32046:419;;;:::o;32471:::-;32637:4;32675:2;32664:9;32660:18;32652:26;;32724:9;32718:4;32714:20;32710:1;32699:9;32695:17;32688:47;32752:131;32878:4;32752:131;:::i;:::-;32744:139;;32471:419;;;:::o;32896:222::-;32989:4;33027:2;33016:9;33012:18;33004:26;;33040:71;33108:1;33097:9;33093:17;33084:6;33040:71;:::i;:::-;32896:222;;;;:::o;33124:129::-;33158:6;33185:20;;:::i;:::-;33175:30;;33214:33;33242:4;33234:6;33214:33;:::i;:::-;33124:129;;;:::o;33259:75::-;33292:6;33325:2;33319:9;33309:19;;33259:75;:::o;33340:307::-;33401:4;33491:18;33483:6;33480:30;33477:56;;;33513:18;;:::i;:::-;33477:56;33551:29;33573:6;33551:29;:::i;:::-;33543:37;;33635:4;33629;33625:15;33617:23;;33340:307;;;:::o;33653:308::-;33715:4;33805:18;33797:6;33794:30;33791:56;;;33827:18;;:::i;:::-;33791:56;33865:29;33887:6;33865:29;:::i;:::-;33857:37;;33949:4;33943;33939:15;33931:23;;33653:308;;;:::o;33967:98::-;34018:6;34052:5;34046:12;34036:22;;33967:98;;;:::o;34071:99::-;34123:6;34157:5;34151:12;34141:22;;34071:99;;;:::o;34176:168::-;34259:11;34293:6;34288:3;34281:19;34333:4;34328:3;34324:14;34309:29;;34176:168;;;;:::o;34350:169::-;34434:11;34468:6;34463:3;34456:19;34508:4;34503:3;34499:14;34484:29;;34350:169;;;;:::o;34525:273::-;34565:3;34584:20;34602:1;34584:20;:::i;:::-;34579:25;;34618:20;34636:1;34618:20;:::i;:::-;34613:25;;34740:1;34704:34;34700:42;34697:1;34694:49;34691:75;;;34746:18;;:::i;:::-;34691:75;34790:1;34787;34783:9;34776:16;;34525:273;;;;:::o;34804:305::-;34844:3;34863:20;34881:1;34863:20;:::i;:::-;34858:25;;34897:20;34915:1;34897:20;:::i;:::-;34892:25;;35051:1;34983:66;34979:74;34976:1;34973:81;34970:107;;;35057:18;;:::i;:::-;34970:107;35101:1;35098;35094:9;35087:16;;34804:305;;;;:::o;35115:185::-;35155:1;35172:20;35190:1;35172:20;:::i;:::-;35167:25;;35206:20;35224:1;35206:20;:::i;:::-;35201:25;;35245:1;35235:35;;35250:18;;:::i;:::-;35235:35;35292:1;35289;35285:9;35280:14;;35115:185;;;;:::o;35306:348::-;35346:7;35369:20;35387:1;35369:20;:::i;:::-;35364:25;;35403:20;35421:1;35403:20;:::i;:::-;35398:25;;35591:1;35523:66;35519:74;35516:1;35513:81;35508:1;35501:9;35494:17;35490:105;35487:131;;;35598:18;;:::i;:::-;35487:131;35646:1;35643;35639:9;35628:20;;35306:348;;;;:::o;35660:191::-;35700:4;35720:20;35738:1;35720:20;:::i;:::-;35715:25;;35754:20;35772:1;35754:20;:::i;:::-;35749:25;;35793:1;35790;35787:8;35784:34;;;35798:18;;:::i;:::-;35784:34;35843:1;35840;35836:9;35828:17;;35660:191;;;;:::o;35857:::-;35897:4;35917:20;35935:1;35917:20;:::i;:::-;35912:25;;35951:20;35969:1;35951:20;:::i;:::-;35946:25;;35990:1;35987;35984:8;35981:34;;;35995:18;;:::i;:::-;35981:34;36040:1;36037;36033:9;36025:17;;35857:191;;;;:::o;36054:96::-;36091:7;36120:24;36138:5;36120:24;:::i;:::-;36109:35;;36054:96;;;:::o;36156:90::-;36190:7;36233:5;36226:13;36219:21;36208:32;;36156:90;;;:::o;36252:149::-;36288:7;36328:66;36321:5;36317:78;36306:89;;36252:149;;;:::o;36407:110::-;36458:7;36487:24;36505:5;36487:24;:::i;:::-;36476:35;;36407:110;;;:::o;36523:125::-;36589:7;36618:24;36636:5;36618:24;:::i;:::-;36607:35;;36523:125;;;:::o;36654:118::-;36691:7;36731:34;36724:5;36720:46;36709:57;;36654:118;;;:::o;36778:126::-;36815:7;36855:42;36848:5;36844:54;36833:65;;36778:126;;;:::o;36910:77::-;36947:7;36976:5;36965:16;;36910:77;;;:::o;36993:154::-;37077:6;37072:3;37067;37054:30;37139:1;37130:6;37125:3;37121:16;37114:27;36993:154;;;:::o;37153:307::-;37221:1;37231:113;37245:6;37242:1;37239:13;37231:113;;;37330:1;37325:3;37321:11;37315:18;37311:1;37306:3;37302:11;37295:39;37267:2;37264:1;37260:10;37255:15;;37231:113;;;37362:6;37359:1;37356:13;37353:101;;;37442:1;37433:6;37428:3;37424:16;37417:27;37353:101;37202:258;37153:307;;;:::o;37466:171::-;37505:3;37528:24;37546:5;37528:24;:::i;:::-;37519:33;;37574:4;37567:5;37564:15;37561:41;;;37582:18;;:::i;:::-;37561:41;37629:1;37622:5;37618:13;37611:20;;37466:171;;;:::o;37643:320::-;37687:6;37724:1;37718:4;37714:12;37704:22;;37771:1;37765:4;37761:12;37792:18;37782:81;;37848:4;37840:6;37836:17;37826:27;;37782:81;37910:2;37902:6;37899:14;37879:18;37876:38;37873:84;;;37929:18;;:::i;:::-;37873:84;37694:269;37643:320;;;:::o;37969:281::-;38052:27;38074:4;38052:27;:::i;:::-;38044:6;38040:40;38182:6;38170:10;38167:22;38146:18;38134:10;38131:34;38128:62;38125:88;;;38193:18;;:::i;:::-;38125:88;38233:10;38229:2;38222:22;38012:238;37969:281;;:::o;38256:233::-;38295:3;38318:24;38336:5;38318:24;:::i;:::-;38309:33;;38364:66;38357:5;38354:77;38351:103;;;38434:18;;:::i;:::-;38351:103;38481:1;38474:5;38470:13;38463:20;;38256:233;;;:::o;38495:180::-;38543:77;38540:1;38533:88;38640:4;38637:1;38630:15;38664:4;38661:1;38654:15;38681:180;38729:77;38726:1;38719:88;38826:4;38823:1;38816:15;38850:4;38847:1;38840:15;38867:180;38915:77;38912:1;38905:88;39012:4;39009:1;39002:15;39036:4;39033:1;39026:15;39053:180;39101:77;39098:1;39091:88;39198:4;39195:1;39188:15;39222:4;39219:1;39212:15;39239:117;39348:1;39345;39338:12;39362:117;39471:1;39468;39461:12;39485:117;39594:1;39591;39584:12;39608:117;39717:1;39714;39707:12;39731:102;39772:6;39823:2;39819:7;39814:2;39807:5;39803:14;39799:28;39789:38;;39731:102;;;:::o;39839:221::-;39979:34;39975:1;39967:6;39963:14;39956:58;40048:4;40043:2;40035:6;40031:15;40024:29;39839:221;:::o;40066:225::-;40206:34;40202:1;40194:6;40190:14;40183:58;40275:8;40270:2;40262:6;40258:15;40251:33;40066:225;:::o;40297:229::-;40437:34;40433:1;40425:6;40421:14;40414:58;40506:12;40501:2;40493:6;40489:15;40482:37;40297:229;:::o;40532:222::-;40672:34;40668:1;40660:6;40656:14;40649:58;40741:5;40736:2;40728:6;40724:15;40717:30;40532:222;:::o;40760:221::-;40900:34;40896:1;40888:6;40884:14;40877:58;40969:4;40964:2;40956:6;40952:15;40945:29;40760:221;:::o;40987:224::-;41127:34;41123:1;41115:6;41111:14;41104:58;41196:7;41191:2;41183:6;41179:15;41172:32;40987:224;:::o;41217:221::-;41357:34;41353:1;41345:6;41341:14;41334:58;41426:4;41421:2;41413:6;41409:15;41402:29;41217:221;:::o;41444:167::-;41584:19;41580:1;41572:6;41568:14;41561:43;41444:167;:::o;41617:244::-;41757:34;41753:1;41745:6;41741:14;41734:58;41826:27;41821:2;41813:6;41809:15;41802:52;41617:244;:::o;41867:230::-;42007:34;42003:1;41995:6;41991:14;41984:58;42076:13;42071:2;42063:6;42059:15;42052:38;41867:230;:::o;42103:225::-;42243:34;42239:1;42231:6;42227:14;42220:58;42312:8;42307:2;42299:6;42295:15;42288:33;42103:225;:::o;42334:182::-;42474:34;42470:1;42462:6;42458:14;42451:58;42334:182;:::o;42522:176::-;42662:28;42658:1;42650:6;42646:14;42639:52;42522:176;:::o;42704:237::-;42844:34;42840:1;42832:6;42828:14;42821:58;42913:20;42908:2;42900:6;42896:15;42889:45;42704:237;:::o;42947:221::-;43087:34;43083:1;43075:6;43071:14;43064:58;43156:4;43151:2;43143:6;43139:15;43132:29;42947:221;:::o;43174:238::-;43314:34;43310:1;43302:6;43298:14;43291:58;43383:21;43378:2;43370:6;43366:15;43359:46;43174:238;:::o;43418:179::-;43558:31;43554:1;43546:6;43542:14;43535:55;43418:179;:::o;43603:220::-;43743:34;43739:1;43731:6;43727:14;43720:58;43812:3;43807:2;43799:6;43795:15;43788:28;43603:220;:::o;43829:174::-;43969:26;43965:1;43957:6;43953:14;43946:50;43829:174;:::o;44009:233::-;44149:34;44145:1;44137:6;44133:14;44126:58;44218:16;44213:2;44205:6;44201:15;44194:41;44009:233;:::o;44248:181::-;44388:33;44384:1;44376:6;44372:14;44365:57;44248:181;:::o;44435:234::-;44575:34;44571:1;44563:6;44559:14;44552:58;44644:17;44639:2;44631:6;44627:15;44620:42;44435:234;:::o;44675:173::-;44815:25;44811:1;44803:6;44799:14;44792:49;44675:173;:::o;44854:232::-;44994:34;44990:1;44982:6;44978:14;44971:58;45063:15;45058:2;45050:6;45046:15;45039:40;44854:232;:::o;45092:221::-;45232:34;45228:1;45220:6;45216:14;45209:58;45301:4;45296:2;45288:6;45284:15;45277:29;45092:221;:::o;45319:122::-;45392:24;45410:5;45392:24;:::i;:::-;45385:5;45382:35;45372:63;;45431:1;45428;45421:12;45372:63;45319:122;:::o;45447:116::-;45517:21;45532:5;45517:21;:::i;:::-;45510:5;45507:32;45497:60;;45553:1;45550;45543:12;45497:60;45447:116;:::o;45569:120::-;45641:23;45658:5;45641:23;:::i;:::-;45634:5;45631:34;45621:62;;45679:1;45676;45669:12;45621:62;45569:120;:::o;45695:150::-;45782:38;45814:5;45782:38;:::i;:::-;45775:5;45772:49;45762:77;;45835:1;45832;45825:12;45762:77;45695:150;:::o;45851:180::-;45953:53;46000:5;45953:53;:::i;:::-;45946:5;45943:64;45933:92;;46021:1;46018;46011:12;45933:92;45851:180;:::o;46037:122::-;46110:24;46128:5;46110:24;:::i;:::-;46103:5;46100:35;46090:63;;46149:1;46146;46139:12;46090:63;46037:122;:::o
Swarm Source
ipfs://8aab46e428476ab12fb9981a8cc95b0886b1f8a779008b890239134f28fb344d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.