Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- KuOrks
- Optimization enabled
- false
- Compiler version
- v0.8.7+commit.e28d00a7
- EVM Version
- default
- Verified at
- 2022-10-10T05:28:44.009482Z
Constructor Arguments
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000037800000000000000000000000000000000000000000000000000000000000000064b754f726b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b554f524b530000000000000000000000000000000000000000000000000000
Arg [0] (string) : KuOrks
Arg [1] (string) : KUORKS
Arg [2] (uint256) : 888
Contract source code
// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/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/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);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private 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/ERC20/utils/SafeERC20.sol
pragma solidity ^0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/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/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/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/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/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/ERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/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/ERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
pragma solidity ^0.8.0;
pragma abicoder v2;
/**
* @title KuOrks
* @notice KuOrks NFT collection
*/
contract KuOrks is ERC721Enumerable, Ownable {
using SafeERC20 for IERC20;
using Strings for uint256;
uint256 public maxSupply;
bool public isLocked;
string public baseURI;
address public minter ;
event Lock();
event NonFungibleTokenRecovery(address indexed token, uint256 tokenId);
event TokenRecovery(address indexed token, uint256 amount);
/**
* @notice Constructor
* @param _name: NFT name
* @param _symbol: NFT symbol
* @param _maxSupply: NFT max totalSupply
*/
constructor(
string memory _name,
string memory _symbol,
uint256 _maxSupply
) ERC721(_name, _symbol) {
require((_maxSupply <= 888), "Operations: Wrong max supply");
maxSupply = _maxSupply;
}
/**
* @notice Allows the owner to lock the contract
* @dev Callable by owner
*/
function lock() external onlyOwner {
require(!isLocked, "Operations: Contract is locked");
isLocked = true;
emit Lock();
}
modifier onlyMinter(){
require( minter == msg.sender, "You are not minter");
_;
}
/**
* @notice Allows the owner to mint a token to a specific address
* @param _to: address to receive the token
* @param _tokenId: tokenId
* @dev Callable by owner
*/
function mint(address _to, uint256 _tokenId) external onlyMinter {
require(totalSupply() < maxSupply, "NFT: Total supply reached");
_mint(_to, _tokenId);
}
/**
* @notice Allows the owner to recover non-fungible tokens sent to the contract by mistake
* @param _token: NFT token address
* @param _tokenId: tokenId
* @dev Callable by owner
*/
function recoverNonFungibleToken(address _token, uint256 _tokenId) external onlyOwner {
IERC721(_token).transferFrom(address(this), address(msg.sender), _tokenId);
emit NonFungibleTokenRecovery(_token, _tokenId);
}
/**
* @notice Allows the owner to recover tokens sent to the contract by mistake
* @param _token: token address
* @dev Callable by owner
*/
function recoverToken(address _token) external onlyOwner {
uint256 balance = IERC20(_token).balanceOf(address(this));
require(balance != 0, "Operations: Cannot recover zero balance");
IERC20(_token).safeTransfer(address(msg.sender), balance);
emit TokenRecovery(_token, balance);
}
/**
* @notice Allows the owner to set the base URI to be used for all token IDs
* @param _uri: base URI
* @dev Callable by owner
*/
function setBaseURI(string memory _uri) external onlyOwner {
require(!isLocked, "Operations: Contract is locked");
baseURI = _uri;
}
/**
* @notice Returns a list of token IDs owned by `user` given a `cursor` and `size` of its token list
* @param user: address
* @param cursor: cursor
* @param size: size
*/
function tokensOfOwnerBySize(
address user,
uint256 cursor,
uint256 size
) external view returns (uint256[] memory, uint256) {
uint256 length = size;
if (length > balanceOf(user) - cursor) {
length = balanceOf(user) - cursor;
}
uint256[] memory values = new uint256[](length);
for (uint256 i = 0; i < length; i++) {
values[i] = tokenOfOwnerByIndex(user, cursor + i);
}
return (values, cursor + length);
}
/**
* @notice Returns the Uniform Resource Identifier (URI) for a token ID
* @param tokenId: token ID
*/
function tokenURI(uint256 tokenId) public view override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
}
function changeMinter(address _newMinter) external onlyOwner{
minter = _newMinter;
}
}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"},{"type":"uint256","name":"_maxSupply","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"Lock","inputs":[],"anonymous":false},{"type":"event","name":"NonFungibleTokenRecovery","inputs":[{"type":"address","name":"token","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"TokenRecovery","inputs":[{"type":"address","name":"token","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseURI","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"changeMinter","inputs":[{"type":"address","name":"_newMinter","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isLocked","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"lock","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"minter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"recoverNonFungibleToken","inputs":[{"type":"address","name":"_token","internalType":"address"},{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"recoverToken","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"_uri","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"},{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokensOfOwnerBySize","inputs":[{"type":"address","name":"user","internalType":"address"},{"type":"uint256","name":"cursor","internalType":"uint256"},{"type":"uint256","name":"size","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b5060405162004d5038038062004d508339818101604052810190620000379190620002f8565b8282816000908051906020019062000051929190620001b3565b5080600190805190602001906200006a929190620001b3565b5050506200008d62000081620000e560201b60201c565b620000ed60201b60201c565b610378811115620000d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000cc90620003b9565b60405180910390fd5b80600b81905550505050620005bd565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c1906200048b565b90600052602060002090601f016020900481019282620001e5576000855562000231565b82601f106200020057805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023057825182559160200191906001019062000213565b5b50905062000240919062000244565b5090565b5b808211156200025f57600081600090555060010162000245565b5090565b60006200027a620002748462000404565b620003db565b9050828152602081018484840111156200029957620002986200055a565b5b620002a684828562000455565b509392505050565b600082601f830112620002c657620002c562000555565b5b8151620002d884826020860162000263565b91505092915050565b600081519050620002f281620005a3565b92915050565b60008060006060848603121562000314576200031362000564565b5b600084015167ffffffffffffffff8111156200033557620003346200055f565b5b6200034386828701620002ae565b935050602084015167ffffffffffffffff8111156200036757620003666200055f565b5b6200037586828701620002ae565b92505060406200038886828701620002e1565b9150509250925092565b6000620003a1601c836200043a565b9150620003ae826200057a565b602082019050919050565b60006020820190508181036000830152620003d48162000392565b9050919050565b6000620003e7620003fa565b9050620003f58282620004c1565b919050565b6000604051905090565b600067ffffffffffffffff82111562000422576200042162000526565b5b6200042d8262000569565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200047557808201518184015260208101905062000458565b8381111562000485576000848401525b50505050565b60006002820490506001821680620004a457607f821691505b60208210811415620004bb57620004ba620004f7565b5b50919050565b620004cc8262000569565b810181811067ffffffffffffffff82111715620004ee57620004ed62000526565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f7065726174696f6e733a2057726f6e67206d617820737570706c7900000000600082015250565b620005ae816200044b565b8114620005ba57600080fd5b50565b61478380620005cd6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a4e2d634116100a2578063d5abeb0111610071578063d5abeb0114610554578063e985e9c514610572578063f2fde38b146105a2578063f83d08ba146105be576101da565b8063a4e2d634146104ce578063b88d4fde146104ec578063bb0fd14714610508578063c87b56dd14610524576101da565b80638da5cb5b116100de5780638da5cb5b1461045a57806395d89b41146104785780639be65a6014610496578063a22cb465146104b2576101da565b806370a08231146103ef578063715018a61461041f578063854ec1af14610429576101da565b80632c4d4d181161017c5780634f6ccce71161014b5780634f6ccce71461035557806355f804b3146103855780636352211e146103a15780636c0360eb146103d1576101da565b80632c4d4d18146102d15780632f745c59146102ed57806340c10f191461031d57806342842e0e14610339576101da565b8063081812fc116101b8578063081812fc1461024b578063095ea7b31461027b57806318160ddd1461029757806323b872dd146102b5576101da565b806301ffc9a7146101df57806306fdde031461020f578063075461721461022d575b600080fd5b6101f960048036038101906101f4919061304c565b6105c8565b6040516102069190613819565b60405180910390f35b610217610642565b6040516102249190613834565b60405180910390f35b6102356106d4565b6040516102429190613722565b60405180910390f35b610265600480360381019061026091906130ef565b6106fa565b6040516102729190613722565b60405180910390f35b61029560048036038101906102909190612f8c565b61077f565b005b61029f610897565b6040516102ac9190613b76565b60405180910390f35b6102cf60048036038101906102ca9190612e76565b6108a4565b005b6102eb60048036038101906102e69190612e09565b610904565b005b61030760048036038101906103029190612f8c565b6109c4565b6040516103149190613b76565b60405180910390f35b61033760048036038101906103329190612f8c565b610a69565b005b610353600480360381019061034e9190612e76565b610b52565b005b61036f600480360381019061036a91906130ef565b610b72565b60405161037c9190613b76565b60405180910390f35b61039f600480360381019061039a91906130a6565b610be3565b005b6103bb60048036038101906103b691906130ef565b610cc9565b6040516103c89190613722565b60405180910390f35b6103d9610d7b565b6040516103e69190613834565b60405180910390f35b61040960048036038101906104049190612e09565b610e09565b6040516104169190613b76565b60405180910390f35b610427610ec1565b005b610443600480360381019061043e9190612fcc565b610f49565b6040516104519291906137e9565b60405180910390f35b61046261103e565b60405161046f9190613722565b60405180910390f35b610480611068565b60405161048d9190613834565b60405180910390f35b6104b060048036038101906104ab9190612e09565b6110fa565b005b6104cc60048036038101906104c79190612f4c565b6112c4565b005b6104d6611445565b6040516104e39190613819565b60405180910390f35b61050660048036038101906105019190612ec9565b611458565b005b610522600480360381019061051d9190612f8c565b6114ba565b005b61053e600480360381019061053991906130ef565b6115f7565b60405161054b9190613834565b60405180910390f35b61055c61169f565b6040516105699190613b76565b60405180910390f35b61058c60048036038101906105879190612e36565b6116a5565b6040516105999190613819565b60405180910390f35b6105bc60048036038101906105b79190612e09565b611739565b005b6105c6611831565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063b575061063a82611946565b5b9050919050565b60606000805461065190613e25565b80601f016020809104026020016040519081016040528092919081815260200182805461067d90613e25565b80156106ca5780601f1061069f576101008083540402835291602001916106ca565b820191906000526020600020905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061070582611a28565b610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90613a16565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078a82610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290613ab6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661081a611a94565b73ffffffffffffffffffffffffffffffffffffffff161480610849575061084881610843611a94565b6116a5565b5b610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90613976565b60405180910390fd5b6108928383611a9c565b505050565b6000600880549050905090565b6108b56108af611a94565b82611b55565b6108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90613ad6565b60405180910390fd5b6108ff838383611c33565b505050565b61090c611a94565b73ffffffffffffffffffffffffffffffffffffffff1661092a61103e565b73ffffffffffffffffffffffffffffffffffffffff1614610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790613a36565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006109cf83610e09565b8210610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790613876565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613a96565b60405180910390fd5b600b54610b04610897565b10610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613b56565b60405180910390fd5b610b4e8282611e8f565b5050565b610b6d83838360405180602001604052806000815250611458565b505050565b6000610b7c610897565b8210610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613b16565b60405180910390fd5b60088281548110610bd157610bd0613fbe565b5b90600052602060002001549050919050565b610beb611a94565b73ffffffffffffffffffffffffffffffffffffffff16610c0961103e565b73ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613a36565b60405180910390fd5b600c60009054906101000a900460ff1615610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613996565b60405180910390fd5b80600d9080519060200190610cc5929190612bf3565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d69906139d6565b60405180910390fd5b80915050919050565b600d8054610d8890613e25565b80601f0160208091040260200160405190810160405280929190818152602001828054610db490613e25565b8015610e015780601f10610dd657610100808354040283529160200191610e01565b820191906000526020600020905b815481529060010190602001808311610de457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906139b6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec9611a94565b73ffffffffffffffffffffffffffffffffffffffff16610ee761103e565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490613a36565b60405180910390fd5b610f47600061205d565b565b606060008083905084610f5b87610e09565b610f659190613d3b565b811115610f835784610f7687610e09565b610f809190613d3b565b90505b60008167ffffffffffffffff811115610f9f57610f9e613fed565b5b604051908082528060200260200182016040528015610fcd5781602001602082028036833780820191505090505b50905060005b8281101561102257610ff0888289610feb9190613cb4565b6109c4565b82828151811061100357611002613fbe565b5b602002602001018181525050808061101a90613e88565b915050610fd3565b508082876110309190613cb4565b935093505050935093915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461107790613e25565b80601f01602080910402602001604051908101604052809291908181526020018280546110a390613e25565b80156110f05780601f106110c5576101008083540402835291602001916110f0565b820191906000526020600020905b8154815290600101906020018083116110d357829003601f168201915b5050505050905090565b611102611a94565b73ffffffffffffffffffffffffffffffffffffffff1661112061103e565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613a36565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111b19190613722565b60206040518083038186803b1580156111c957600080fd5b505afa1580156111dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611201919061311c565b90506000811415611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613856565b60405180910390fd5b61127233828473ffffffffffffffffffffffffffffffffffffffff166121239092919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f14f11966a996e0629572e51064726d2057a80fbd34efc066682c06a71dbb6e98826040516112b89190613b76565b60405180910390a25050565b6112cc611a94565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613916565b60405180910390fd5b8060056000611347611a94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f4611a94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114399190613819565b60405180910390a35050565b600c60009054906101000a900460ff1681565b611469611463611a94565b83611b55565b6114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613ad6565b60405180910390fd5b6114b4848484846121a9565b50505050565b6114c2611a94565b73ffffffffffffffffffffffffffffffffffffffff166114e061103e565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613a36565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b81526004016115739392919061373d565b600060405180830381600087803b15801561158d57600080fd5b505af11580156115a1573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff167f861c3ea25dbda3af0bf5d258ba8582c0276c9446b1479e817be3f1b4a89acf91826040516115eb9190613b76565b60405180910390a25050565b606061160282611a28565b611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613a76565b60405180910390fd5b6000600d805461165090613e25565b90501161166c5760405180602001604052806000815250611698565b600d61167783612205565b6040516020016116889291906136f3565b6040516020818303038152906040525b9050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611741611a94565b73ffffffffffffffffffffffffffffffffffffffff1661175f61103e565b73ffffffffffffffffffffffffffffffffffffffff16146117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613a36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906138b6565b60405180910390fd5b61182e8161205d565b50565b611839611a94565b73ffffffffffffffffffffffffffffffffffffffff1661185761103e565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613a36565b60405180910390fd5b600c60009054906101000a900460ff16156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613996565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f46620e39f4e119bf05f13544f8ef38338fc06c17f6b731c7f95bee356572db9660405160405180910390a1565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a215750611a2082612366565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b0f83610cc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6082611a28565b611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690613956565b60405180910390fd5b6000611baa83610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1957508373ffffffffffffffffffffffffffffffffffffffff16611c01846106fa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2a5750611c2981856116a5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5382610cc9565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d10906138f6565b60405180910390fd5b611d248383836123d0565b611d2f600082611a9c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d7f9190613d3b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd69190613cb4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906139f6565b60405180910390fd5b611f0881611a28565b15611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f906138d6565b60405180910390fd5b611f54600083836123d0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa49190613cb4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121a48363a9059cbb60e01b84846040516024016121429291906137c0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124e4565b505050565b6121b4848484611c33565b6121c0848484846125ab565b6121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690613896565b60405180910390fd5b50505050565b6060600082141561224d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612361565b600082905060005b6000821461227f57808061226890613e88565b915050600a826122789190613d0a565b9150612255565b60008167ffffffffffffffff81111561229b5761229a613fed565b5b6040519080825280601f01601f1916602001820160405280156122cd5781602001600182028036833780820191505090505b5090505b6000851461235a576001826122e69190613d3b565b9150600a856122f59190613ed1565b60306123019190613cb4565b60f81b81838151811061231757612316613fbe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123539190613d0a565b94506122d1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123db838383612742565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561241e5761241981612747565b61245d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245c5761245b8382612790565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a05761249b816128fd565b6124df565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124de576124dd82826129ce565b5b5b505050565b6000612546826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612a4d9092919063ffffffff16565b90506000815111156125a65780806020019051810190612566919061301f565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613b36565b60405180910390fd5b5b505050565b60006125cc8473ffffffffffffffffffffffffffffffffffffffff16612a65565b15612735578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125f5611a94565b8786866040518563ffffffff1660e01b81526004016126179493929190613774565b602060405180830381600087803b15801561263157600080fd5b505af192505050801561266257506040513d601f19601f8201168201806040525081019061265f9190613079565b60015b6126e5573d8060008114612692576040519150601f19603f3d011682016040523d82523d6000602084013e612697565b606091505b506000815114156126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490613896565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061273a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161279d84610e09565b6127a79190613d3b565b905060006007600084815260200190815260200160002054905081811461288c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129119190613d3b565b905060006009600084815260200190815260200160002054905060006008838154811061294157612940613fbe565b5b90600052602060002001549050806008838154811061296357612962613fbe565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129b2576129b1613f8f565b5b6001900381819060005260206000200160009055905550505050565b60006129d983610e09565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6060612a5c8484600085612a78565b90509392505050565b600080823b905060008111915050919050565b606082471015612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab490613936565b60405180910390fd5b612ac685612a65565b612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc90613af6565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612b2e91906136dc565b60006040518083038185875af1925050503d8060008114612b6b576040519150601f19603f3d011682016040523d82523d6000602084013e612b70565b606091505b5091509150612b80828286612b8c565b92505050949350505050565b60608315612b9c57829050612bec565b600083511115612baf5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be39190613834565b60405180910390fd5b9392505050565b828054612bff90613e25565b90600052602060002090601f016020900481019282612c215760008555612c68565b82601f10612c3a57805160ff1916838001178555612c68565b82800160010185558215612c68579182015b82811115612c67578251825591602001919060010190612c4c565b5b509050612c759190612c79565b5090565b5b80821115612c92576000816000905550600101612c7a565b5090565b6000612ca9612ca484613bb6565b613b91565b905082815260208101848484011115612cc557612cc4614021565b5b612cd0848285613de3565b509392505050565b6000612ceb612ce684613be7565b613b91565b905082815260208101848484011115612d0757612d06614021565b5b612d12848285613de3565b509392505050565b600081359050612d29816146f1565b92915050565b600081359050612d3e81614708565b92915050565b600081519050612d5381614708565b92915050565b600081359050612d688161471f565b92915050565b600081519050612d7d8161471f565b92915050565b600082601f830112612d9857612d9761401c565b5b8135612da8848260208601612c96565b91505092915050565b600082601f830112612dc657612dc561401c565b5b8135612dd6848260208601612cd8565b91505092915050565b600081359050612dee81614736565b92915050565b600081519050612e0381614736565b92915050565b600060208284031215612e1f57612e1e61402b565b5b6000612e2d84828501612d1a565b91505092915050565b60008060408385031215612e4d57612e4c61402b565b5b6000612e5b85828601612d1a565b9250506020612e6c85828601612d1a565b9150509250929050565b600080600060608486031215612e8f57612e8e61402b565b5b6000612e9d86828701612d1a565b9350506020612eae86828701612d1a565b9250506040612ebf86828701612ddf565b9150509250925092565b60008060008060808587031215612ee357612ee261402b565b5b6000612ef187828801612d1a565b9450506020612f0287828801612d1a565b9350506040612f1387828801612ddf565b925050606085013567ffffffffffffffff811115612f3457612f33614026565b5b612f4087828801612d83565b91505092959194509250565b60008060408385031215612f6357612f6261402b565b5b6000612f7185828601612d1a565b9250506020612f8285828601612d2f565b9150509250929050565b60008060408385031215612fa357612fa261402b565b5b6000612fb185828601612d1a565b9250506020612fc285828601612ddf565b9150509250929050565b600080600060608486031215612fe557612fe461402b565b5b6000612ff386828701612d1a565b935050602061300486828701612ddf565b925050604061301586828701612ddf565b9150509250925092565b6000602082840312156130355761303461402b565b5b600061304384828501612d44565b91505092915050565b6000602082840312156130625761306161402b565b5b600061307084828501612d59565b91505092915050565b60006020828403121561308f5761308e61402b565b5b600061309d84828501612d6e565b91505092915050565b6000602082840312156130bc576130bb61402b565b5b600082013567ffffffffffffffff8111156130da576130d9614026565b5b6130e684828501612db1565b91505092915050565b6000602082840312156131055761310461402b565b5b600061311384828501612ddf565b91505092915050565b6000602082840312156131325761313161402b565b5b600061314084828501612df4565b91505092915050565b600061315583836136be565b60208301905092915050565b61316a81613d6f565b82525050565b600061317b82613c3d565b6131858185613c6b565b935061319083613c18565b8060005b838110156131c15781516131a88882613149565b97506131b383613c5e565b925050600181019050613194565b5085935050505092915050565b6131d781613d81565b82525050565b60006131e882613c48565b6131f28185613c7c565b9350613202818560208601613df2565b61320b81614030565b840191505092915050565b600061322182613c48565b61322b8185613c8d565b935061323b818560208601613df2565b80840191505092915050565b600061325282613c53565b61325c8185613c98565b935061326c818560208601613df2565b61327581614030565b840191505092915050565b600061328b82613c53565b6132958185613ca9565b93506132a5818560208601613df2565b80840191505092915050565b600081546132be81613e25565b6132c88186613ca9565b945060018216600081146132e357600181146132f457613327565b60ff19831686528186019350613327565b6132fd85613c28565b60005b8381101561331f57815481890152600182019150602081019050613300565b838801955050505b50505092915050565b600061333d602783613c98565b915061334882614041565b604082019050919050565b6000613360602b83613c98565b915061336b82614090565b604082019050919050565b6000613383603283613c98565b915061338e826140df565b604082019050919050565b60006133a6602683613c98565b91506133b18261412e565b604082019050919050565b60006133c9601c83613c98565b91506133d48261417d565b602082019050919050565b60006133ec602483613c98565b91506133f7826141a6565b604082019050919050565b600061340f601983613c98565b915061341a826141f5565b602082019050919050565b6000613432602683613c98565b915061343d8261421e565b604082019050919050565b6000613455602c83613c98565b91506134608261426d565b604082019050919050565b6000613478603883613c98565b9150613483826142bc565b604082019050919050565b600061349b601e83613c98565b91506134a68261430b565b602082019050919050565b60006134be602a83613c98565b91506134c982614334565b604082019050919050565b60006134e1602983613c98565b91506134ec82614383565b604082019050919050565b6000613504602083613c98565b915061350f826143d2565b602082019050919050565b6000613527602c83613c98565b9150613532826143fb565b604082019050919050565b600061354a600583613ca9565b91506135558261444a565b600582019050919050565b600061356d602083613c98565b915061357882614473565b602082019050919050565b6000613590602983613c98565b915061359b8261449c565b604082019050919050565b60006135b3602f83613c98565b91506135be826144eb565b604082019050919050565b60006135d6601283613c98565b91506135e18261453a565b602082019050919050565b60006135f9602183613c98565b915061360482614563565b604082019050919050565b600061361c603183613c98565b9150613627826145b2565b604082019050919050565b600061363f601d83613c98565b915061364a82614601565b602082019050919050565b6000613662602c83613c98565b915061366d8261462a565b604082019050919050565b6000613685602a83613c98565b915061369082614679565b604082019050919050565b60006136a8601983613c98565b91506136b3826146c8565b602082019050919050565b6136c781613dd9565b82525050565b6136d681613dd9565b82525050565b60006136e88284613216565b915081905092915050565b60006136ff82856132b1565b915061370b8284613280565b91506137168261353d565b91508190509392505050565b60006020820190506137376000830184613161565b92915050565b60006060820190506137526000830186613161565b61375f6020830185613161565b61376c60408301846136cd565b949350505050565b60006080820190506137896000830187613161565b6137966020830186613161565b6137a360408301856136cd565b81810360608301526137b581846131dd565b905095945050505050565b60006040820190506137d56000830185613161565b6137e260208301846136cd565b9392505050565b600060408201905081810360008301526138038185613170565b905061381260208301846136cd565b9392505050565b600060208201905061382e60008301846131ce565b92915050565b6000602082019050818103600083015261384e8184613247565b905092915050565b6000602082019050818103600083015261386f81613330565b9050919050565b6000602082019050818103600083015261388f81613353565b9050919050565b600060208201905081810360008301526138af81613376565b9050919050565b600060208201905081810360008301526138cf81613399565b9050919050565b600060208201905081810360008301526138ef816133bc565b9050919050565b6000602082019050818103600083015261390f816133df565b9050919050565b6000602082019050818103600083015261392f81613402565b9050919050565b6000602082019050818103600083015261394f81613425565b9050919050565b6000602082019050818103600083015261396f81613448565b9050919050565b6000602082019050818103600083015261398f8161346b565b9050919050565b600060208201905081810360008301526139af8161348e565b9050919050565b600060208201905081810360008301526139cf816134b1565b9050919050565b600060208201905081810360008301526139ef816134d4565b9050919050565b60006020820190508181036000830152613a0f816134f7565b9050919050565b60006020820190508181036000830152613a2f8161351a565b9050919050565b60006020820190508181036000830152613a4f81613560565b9050919050565b60006020820190508181036000830152613a6f81613583565b9050919050565b60006020820190508181036000830152613a8f816135a6565b9050919050565b60006020820190508181036000830152613aaf816135c9565b9050919050565b60006020820190508181036000830152613acf816135ec565b9050919050565b60006020820190508181036000830152613aef8161360f565b9050919050565b60006020820190508181036000830152613b0f81613632565b9050919050565b60006020820190508181036000830152613b2f81613655565b9050919050565b60006020820190508181036000830152613b4f81613678565b9050919050565b60006020820190508181036000830152613b6f8161369b565b9050919050565b6000602082019050613b8b60008301846136cd565b92915050565b6000613b9b613bac565b9050613ba78282613e57565b919050565b6000604051905090565b600067ffffffffffffffff821115613bd157613bd0613fed565b5b613bda82614030565b9050602081019050919050565b600067ffffffffffffffff821115613c0257613c01613fed565b5b613c0b82614030565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cbf82613dd9565b9150613cca83613dd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cff57613cfe613f02565b5b828201905092915050565b6000613d1582613dd9565b9150613d2083613dd9565b925082613d3057613d2f613f31565b5b828204905092915050565b6000613d4682613dd9565b9150613d5183613dd9565b925082821015613d6457613d63613f02565b5b828203905092915050565b6000613d7a82613db9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e10578082015181840152602081019050613df5565b83811115613e1f576000848401525b50505050565b60006002820490506001821680613e3d57607f821691505b60208210811415613e5157613e50613f60565b5b50919050565b613e6082614030565b810181811067ffffffffffffffff82111715613e7f57613e7e613fed565b5b80604052505050565b6000613e9382613dd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ec657613ec5613f02565b5b600182019050919050565b6000613edc82613dd9565b9150613ee783613dd9565b925082613ef757613ef6613f31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f7065726174696f6e733a2043616e6e6f74207265636f766572207a65726f2060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f7065726174696f6e733a20436f6e7472616374206973206c6f636b65640000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74206d696e7465720000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4e46543a20546f74616c20737570706c79207265616368656400000000000000600082015250565b6146fa81613d6f565b811461470557600080fd5b50565b61471181613d81565b811461471c57600080fd5b50565b61472881613d8d565b811461473357600080fd5b50565b61473f81613dd9565b811461474a57600080fd5b5056fea2646970667358221220030ff0c41e8d8bc63607badc79a2df36095614b14bc9cd2350c9df043b1126a164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000037800000000000000000000000000000000000000000000000000000000000000064b754f726b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b554f524b530000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a4e2d634116100a2578063d5abeb0111610071578063d5abeb0114610554578063e985e9c514610572578063f2fde38b146105a2578063f83d08ba146105be576101da565b8063a4e2d634146104ce578063b88d4fde146104ec578063bb0fd14714610508578063c87b56dd14610524576101da565b80638da5cb5b116100de5780638da5cb5b1461045a57806395d89b41146104785780639be65a6014610496578063a22cb465146104b2576101da565b806370a08231146103ef578063715018a61461041f578063854ec1af14610429576101da565b80632c4d4d181161017c5780634f6ccce71161014b5780634f6ccce71461035557806355f804b3146103855780636352211e146103a15780636c0360eb146103d1576101da565b80632c4d4d18146102d15780632f745c59146102ed57806340c10f191461031d57806342842e0e14610339576101da565b8063081812fc116101b8578063081812fc1461024b578063095ea7b31461027b57806318160ddd1461029757806323b872dd146102b5576101da565b806301ffc9a7146101df57806306fdde031461020f578063075461721461022d575b600080fd5b6101f960048036038101906101f4919061304c565b6105c8565b6040516102069190613819565b60405180910390f35b610217610642565b6040516102249190613834565b60405180910390f35b6102356106d4565b6040516102429190613722565b60405180910390f35b610265600480360381019061026091906130ef565b6106fa565b6040516102729190613722565b60405180910390f35b61029560048036038101906102909190612f8c565b61077f565b005b61029f610897565b6040516102ac9190613b76565b60405180910390f35b6102cf60048036038101906102ca9190612e76565b6108a4565b005b6102eb60048036038101906102e69190612e09565b610904565b005b61030760048036038101906103029190612f8c565b6109c4565b6040516103149190613b76565b60405180910390f35b61033760048036038101906103329190612f8c565b610a69565b005b610353600480360381019061034e9190612e76565b610b52565b005b61036f600480360381019061036a91906130ef565b610b72565b60405161037c9190613b76565b60405180910390f35b61039f600480360381019061039a91906130a6565b610be3565b005b6103bb60048036038101906103b691906130ef565b610cc9565b6040516103c89190613722565b60405180910390f35b6103d9610d7b565b6040516103e69190613834565b60405180910390f35b61040960048036038101906104049190612e09565b610e09565b6040516104169190613b76565b60405180910390f35b610427610ec1565b005b610443600480360381019061043e9190612fcc565b610f49565b6040516104519291906137e9565b60405180910390f35b61046261103e565b60405161046f9190613722565b60405180910390f35b610480611068565b60405161048d9190613834565b60405180910390f35b6104b060048036038101906104ab9190612e09565b6110fa565b005b6104cc60048036038101906104c79190612f4c565b6112c4565b005b6104d6611445565b6040516104e39190613819565b60405180910390f35b61050660048036038101906105019190612ec9565b611458565b005b610522600480360381019061051d9190612f8c565b6114ba565b005b61053e600480360381019061053991906130ef565b6115f7565b60405161054b9190613834565b60405180910390f35b61055c61169f565b6040516105699190613b76565b60405180910390f35b61058c60048036038101906105879190612e36565b6116a5565b6040516105999190613819565b60405180910390f35b6105bc60048036038101906105b79190612e09565b611739565b005b6105c6611831565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063b575061063a82611946565b5b9050919050565b60606000805461065190613e25565b80601f016020809104026020016040519081016040528092919081815260200182805461067d90613e25565b80156106ca5780601f1061069f576101008083540402835291602001916106ca565b820191906000526020600020905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061070582611a28565b610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90613a16565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078a82610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290613ab6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661081a611a94565b73ffffffffffffffffffffffffffffffffffffffff161480610849575061084881610843611a94565b6116a5565b5b610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90613976565b60405180910390fd5b6108928383611a9c565b505050565b6000600880549050905090565b6108b56108af611a94565b82611b55565b6108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90613ad6565b60405180910390fd5b6108ff838383611c33565b505050565b61090c611a94565b73ffffffffffffffffffffffffffffffffffffffff1661092a61103e565b73ffffffffffffffffffffffffffffffffffffffff1614610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790613a36565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006109cf83610e09565b8210610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790613876565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613a96565b60405180910390fd5b600b54610b04610897565b10610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613b56565b60405180910390fd5b610b4e8282611e8f565b5050565b610b6d83838360405180602001604052806000815250611458565b505050565b6000610b7c610897565b8210610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613b16565b60405180910390fd5b60088281548110610bd157610bd0613fbe565b5b90600052602060002001549050919050565b610beb611a94565b73ffffffffffffffffffffffffffffffffffffffff16610c0961103e565b73ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613a36565b60405180910390fd5b600c60009054906101000a900460ff1615610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613996565b60405180910390fd5b80600d9080519060200190610cc5929190612bf3565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d69906139d6565b60405180910390fd5b80915050919050565b600d8054610d8890613e25565b80601f0160208091040260200160405190810160405280929190818152602001828054610db490613e25565b8015610e015780601f10610dd657610100808354040283529160200191610e01565b820191906000526020600020905b815481529060010190602001808311610de457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906139b6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec9611a94565b73ffffffffffffffffffffffffffffffffffffffff16610ee761103e565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490613a36565b60405180910390fd5b610f47600061205d565b565b606060008083905084610f5b87610e09565b610f659190613d3b565b811115610f835784610f7687610e09565b610f809190613d3b565b90505b60008167ffffffffffffffff811115610f9f57610f9e613fed565b5b604051908082528060200260200182016040528015610fcd5781602001602082028036833780820191505090505b50905060005b8281101561102257610ff0888289610feb9190613cb4565b6109c4565b82828151811061100357611002613fbe565b5b602002602001018181525050808061101a90613e88565b915050610fd3565b508082876110309190613cb4565b935093505050935093915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461107790613e25565b80601f01602080910402602001604051908101604052809291908181526020018280546110a390613e25565b80156110f05780601f106110c5576101008083540402835291602001916110f0565b820191906000526020600020905b8154815290600101906020018083116110d357829003601f168201915b5050505050905090565b611102611a94565b73ffffffffffffffffffffffffffffffffffffffff1661112061103e565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613a36565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111b19190613722565b60206040518083038186803b1580156111c957600080fd5b505afa1580156111dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611201919061311c565b90506000811415611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613856565b60405180910390fd5b61127233828473ffffffffffffffffffffffffffffffffffffffff166121239092919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f14f11966a996e0629572e51064726d2057a80fbd34efc066682c06a71dbb6e98826040516112b89190613b76565b60405180910390a25050565b6112cc611a94565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613916565b60405180910390fd5b8060056000611347611a94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f4611a94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114399190613819565b60405180910390a35050565b600c60009054906101000a900460ff1681565b611469611463611a94565b83611b55565b6114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613ad6565b60405180910390fd5b6114b4848484846121a9565b50505050565b6114c2611a94565b73ffffffffffffffffffffffffffffffffffffffff166114e061103e565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613a36565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b81526004016115739392919061373d565b600060405180830381600087803b15801561158d57600080fd5b505af11580156115a1573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff167f861c3ea25dbda3af0bf5d258ba8582c0276c9446b1479e817be3f1b4a89acf91826040516115eb9190613b76565b60405180910390a25050565b606061160282611a28565b611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613a76565b60405180910390fd5b6000600d805461165090613e25565b90501161166c5760405180602001604052806000815250611698565b600d61167783612205565b6040516020016116889291906136f3565b6040516020818303038152906040525b9050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611741611a94565b73ffffffffffffffffffffffffffffffffffffffff1661175f61103e565b73ffffffffffffffffffffffffffffffffffffffff16146117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613a36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906138b6565b60405180910390fd5b61182e8161205d565b50565b611839611a94565b73ffffffffffffffffffffffffffffffffffffffff1661185761103e565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613a36565b60405180910390fd5b600c60009054906101000a900460ff16156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613996565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f46620e39f4e119bf05f13544f8ef38338fc06c17f6b731c7f95bee356572db9660405160405180910390a1565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a215750611a2082612366565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b0f83610cc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6082611a28565b611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690613956565b60405180910390fd5b6000611baa83610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1957508373ffffffffffffffffffffffffffffffffffffffff16611c01846106fa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2a5750611c2981856116a5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5382610cc9565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d10906138f6565b60405180910390fd5b611d248383836123d0565b611d2f600082611a9c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d7f9190613d3b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd69190613cb4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906139f6565b60405180910390fd5b611f0881611a28565b15611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f906138d6565b60405180910390fd5b611f54600083836123d0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa49190613cb4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121a48363a9059cbb60e01b84846040516024016121429291906137c0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124e4565b505050565b6121b4848484611c33565b6121c0848484846125ab565b6121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690613896565b60405180910390fd5b50505050565b6060600082141561224d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612361565b600082905060005b6000821461227f57808061226890613e88565b915050600a826122789190613d0a565b9150612255565b60008167ffffffffffffffff81111561229b5761229a613fed565b5b6040519080825280601f01601f1916602001820160405280156122cd5781602001600182028036833780820191505090505b5090505b6000851461235a576001826122e69190613d3b565b9150600a856122f59190613ed1565b60306123019190613cb4565b60f81b81838151811061231757612316613fbe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123539190613d0a565b94506122d1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123db838383612742565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561241e5761241981612747565b61245d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245c5761245b8382612790565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a05761249b816128fd565b6124df565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124de576124dd82826129ce565b5b5b505050565b6000612546826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612a4d9092919063ffffffff16565b90506000815111156125a65780806020019051810190612566919061301f565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613b36565b60405180910390fd5b5b505050565b60006125cc8473ffffffffffffffffffffffffffffffffffffffff16612a65565b15612735578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125f5611a94565b8786866040518563ffffffff1660e01b81526004016126179493929190613774565b602060405180830381600087803b15801561263157600080fd5b505af192505050801561266257506040513d601f19601f8201168201806040525081019061265f9190613079565b60015b6126e5573d8060008114612692576040519150601f19603f3d011682016040523d82523d6000602084013e612697565b606091505b506000815114156126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490613896565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061273a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161279d84610e09565b6127a79190613d3b565b905060006007600084815260200190815260200160002054905081811461288c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129119190613d3b565b905060006009600084815260200190815260200160002054905060006008838154811061294157612940613fbe565b5b90600052602060002001549050806008838154811061296357612962613fbe565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129b2576129b1613f8f565b5b6001900381819060005260206000200160009055905550505050565b60006129d983610e09565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6060612a5c8484600085612a78565b90509392505050565b600080823b905060008111915050919050565b606082471015612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab490613936565b60405180910390fd5b612ac685612a65565b612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc90613af6565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612b2e91906136dc565b60006040518083038185875af1925050503d8060008114612b6b576040519150601f19603f3d011682016040523d82523d6000602084013e612b70565b606091505b5091509150612b80828286612b8c565b92505050949350505050565b60608315612b9c57829050612bec565b600083511115612baf5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be39190613834565b60405180910390fd5b9392505050565b828054612bff90613e25565b90600052602060002090601f016020900481019282612c215760008555612c68565b82601f10612c3a57805160ff1916838001178555612c68565b82800160010185558215612c68579182015b82811115612c67578251825591602001919060010190612c4c565b5b509050612c759190612c79565b5090565b5b80821115612c92576000816000905550600101612c7a565b5090565b6000612ca9612ca484613bb6565b613b91565b905082815260208101848484011115612cc557612cc4614021565b5b612cd0848285613de3565b509392505050565b6000612ceb612ce684613be7565b613b91565b905082815260208101848484011115612d0757612d06614021565b5b612d12848285613de3565b509392505050565b600081359050612d29816146f1565b92915050565b600081359050612d3e81614708565b92915050565b600081519050612d5381614708565b92915050565b600081359050612d688161471f565b92915050565b600081519050612d7d8161471f565b92915050565b600082601f830112612d9857612d9761401c565b5b8135612da8848260208601612c96565b91505092915050565b600082601f830112612dc657612dc561401c565b5b8135612dd6848260208601612cd8565b91505092915050565b600081359050612dee81614736565b92915050565b600081519050612e0381614736565b92915050565b600060208284031215612e1f57612e1e61402b565b5b6000612e2d84828501612d1a565b91505092915050565b60008060408385031215612e4d57612e4c61402b565b5b6000612e5b85828601612d1a565b9250506020612e6c85828601612d1a565b9150509250929050565b600080600060608486031215612e8f57612e8e61402b565b5b6000612e9d86828701612d1a565b9350506020612eae86828701612d1a565b9250506040612ebf86828701612ddf565b9150509250925092565b60008060008060808587031215612ee357612ee261402b565b5b6000612ef187828801612d1a565b9450506020612f0287828801612d1a565b9350506040612f1387828801612ddf565b925050606085013567ffffffffffffffff811115612f3457612f33614026565b5b612f4087828801612d83565b91505092959194509250565b60008060408385031215612f6357612f6261402b565b5b6000612f7185828601612d1a565b9250506020612f8285828601612d2f565b9150509250929050565b60008060408385031215612fa357612fa261402b565b5b6000612fb185828601612d1a565b9250506020612fc285828601612ddf565b9150509250929050565b600080600060608486031215612fe557612fe461402b565b5b6000612ff386828701612d1a565b935050602061300486828701612ddf565b925050604061301586828701612ddf565b9150509250925092565b6000602082840312156130355761303461402b565b5b600061304384828501612d44565b91505092915050565b6000602082840312156130625761306161402b565b5b600061307084828501612d59565b91505092915050565b60006020828403121561308f5761308e61402b565b5b600061309d84828501612d6e565b91505092915050565b6000602082840312156130bc576130bb61402b565b5b600082013567ffffffffffffffff8111156130da576130d9614026565b5b6130e684828501612db1565b91505092915050565b6000602082840312156131055761310461402b565b5b600061311384828501612ddf565b91505092915050565b6000602082840312156131325761313161402b565b5b600061314084828501612df4565b91505092915050565b600061315583836136be565b60208301905092915050565b61316a81613d6f565b82525050565b600061317b82613c3d565b6131858185613c6b565b935061319083613c18565b8060005b838110156131c15781516131a88882613149565b97506131b383613c5e565b925050600181019050613194565b5085935050505092915050565b6131d781613d81565b82525050565b60006131e882613c48565b6131f28185613c7c565b9350613202818560208601613df2565b61320b81614030565b840191505092915050565b600061322182613c48565b61322b8185613c8d565b935061323b818560208601613df2565b80840191505092915050565b600061325282613c53565b61325c8185613c98565b935061326c818560208601613df2565b61327581614030565b840191505092915050565b600061328b82613c53565b6132958185613ca9565b93506132a5818560208601613df2565b80840191505092915050565b600081546132be81613e25565b6132c88186613ca9565b945060018216600081146132e357600181146132f457613327565b60ff19831686528186019350613327565b6132fd85613c28565b60005b8381101561331f57815481890152600182019150602081019050613300565b838801955050505b50505092915050565b600061333d602783613c98565b915061334882614041565b604082019050919050565b6000613360602b83613c98565b915061336b82614090565b604082019050919050565b6000613383603283613c98565b915061338e826140df565b604082019050919050565b60006133a6602683613c98565b91506133b18261412e565b604082019050919050565b60006133c9601c83613c98565b91506133d48261417d565b602082019050919050565b60006133ec602483613c98565b91506133f7826141a6565b604082019050919050565b600061340f601983613c98565b915061341a826141f5565b602082019050919050565b6000613432602683613c98565b915061343d8261421e565b604082019050919050565b6000613455602c83613c98565b91506134608261426d565b604082019050919050565b6000613478603883613c98565b9150613483826142bc565b604082019050919050565b600061349b601e83613c98565b91506134a68261430b565b602082019050919050565b60006134be602a83613c98565b91506134c982614334565b604082019050919050565b60006134e1602983613c98565b91506134ec82614383565b604082019050919050565b6000613504602083613c98565b915061350f826143d2565b602082019050919050565b6000613527602c83613c98565b9150613532826143fb565b604082019050919050565b600061354a600583613ca9565b91506135558261444a565b600582019050919050565b600061356d602083613c98565b915061357882614473565b602082019050919050565b6000613590602983613c98565b915061359b8261449c565b604082019050919050565b60006135b3602f83613c98565b91506135be826144eb565b604082019050919050565b60006135d6601283613c98565b91506135e18261453a565b602082019050919050565b60006135f9602183613c98565b915061360482614563565b604082019050919050565b600061361c603183613c98565b9150613627826145b2565b604082019050919050565b600061363f601d83613c98565b915061364a82614601565b602082019050919050565b6000613662602c83613c98565b915061366d8261462a565b604082019050919050565b6000613685602a83613c98565b915061369082614679565b604082019050919050565b60006136a8601983613c98565b91506136b3826146c8565b602082019050919050565b6136c781613dd9565b82525050565b6136d681613dd9565b82525050565b60006136e88284613216565b915081905092915050565b60006136ff82856132b1565b915061370b8284613280565b91506137168261353d565b91508190509392505050565b60006020820190506137376000830184613161565b92915050565b60006060820190506137526000830186613161565b61375f6020830185613161565b61376c60408301846136cd565b949350505050565b60006080820190506137896000830187613161565b6137966020830186613161565b6137a360408301856136cd565b81810360608301526137b581846131dd565b905095945050505050565b60006040820190506137d56000830185613161565b6137e260208301846136cd565b9392505050565b600060408201905081810360008301526138038185613170565b905061381260208301846136cd565b9392505050565b600060208201905061382e60008301846131ce565b92915050565b6000602082019050818103600083015261384e8184613247565b905092915050565b6000602082019050818103600083015261386f81613330565b9050919050565b6000602082019050818103600083015261388f81613353565b9050919050565b600060208201905081810360008301526138af81613376565b9050919050565b600060208201905081810360008301526138cf81613399565b9050919050565b600060208201905081810360008301526138ef816133bc565b9050919050565b6000602082019050818103600083015261390f816133df565b9050919050565b6000602082019050818103600083015261392f81613402565b9050919050565b6000602082019050818103600083015261394f81613425565b9050919050565b6000602082019050818103600083015261396f81613448565b9050919050565b6000602082019050818103600083015261398f8161346b565b9050919050565b600060208201905081810360008301526139af8161348e565b9050919050565b600060208201905081810360008301526139cf816134b1565b9050919050565b600060208201905081810360008301526139ef816134d4565b9050919050565b60006020820190508181036000830152613a0f816134f7565b9050919050565b60006020820190508181036000830152613a2f8161351a565b9050919050565b60006020820190508181036000830152613a4f81613560565b9050919050565b60006020820190508181036000830152613a6f81613583565b9050919050565b60006020820190508181036000830152613a8f816135a6565b9050919050565b60006020820190508181036000830152613aaf816135c9565b9050919050565b60006020820190508181036000830152613acf816135ec565b9050919050565b60006020820190508181036000830152613aef8161360f565b9050919050565b60006020820190508181036000830152613b0f81613632565b9050919050565b60006020820190508181036000830152613b2f81613655565b9050919050565b60006020820190508181036000830152613b4f81613678565b9050919050565b60006020820190508181036000830152613b6f8161369b565b9050919050565b6000602082019050613b8b60008301846136cd565b92915050565b6000613b9b613bac565b9050613ba78282613e57565b919050565b6000604051905090565b600067ffffffffffffffff821115613bd157613bd0613fed565b5b613bda82614030565b9050602081019050919050565b600067ffffffffffffffff821115613c0257613c01613fed565b5b613c0b82614030565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cbf82613dd9565b9150613cca83613dd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cff57613cfe613f02565b5b828201905092915050565b6000613d1582613dd9565b9150613d2083613dd9565b925082613d3057613d2f613f31565b5b828204905092915050565b6000613d4682613dd9565b9150613d5183613dd9565b925082821015613d6457613d63613f02565b5b828203905092915050565b6000613d7a82613db9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e10578082015181840152602081019050613df5565b83811115613e1f576000848401525b50505050565b60006002820490506001821680613e3d57607f821691505b60208210811415613e5157613e50613f60565b5b50919050565b613e6082614030565b810181811067ffffffffffffffff82111715613e7f57613e7e613fed565b5b80604052505050565b6000613e9382613dd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ec657613ec5613f02565b5b600182019050919050565b6000613edc82613dd9565b9150613ee783613dd9565b925082613ef757613ef6613f31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f7065726174696f6e733a2043616e6e6f74207265636f766572207a65726f2060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f7065726174696f6e733a20436f6e7472616374206973206c6f636b65640000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74206d696e7465720000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4e46543a20546f74616c20737570706c79207265616368656400000000000000600082015250565b6146fa81613d6f565b811461470557600080fd5b50565b61471181613d81565b811461471c57600080fd5b50565b61472881613d8d565b811461473357600080fd5b50565b61473f81613dd9565b811461474a57600080fd5b5056fea2646970667358221220030ff0c41e8d8bc63607badc79a2df36095614b14bc9cd2350c9df043b1126a164736f6c63430008070033